src/hotspot/share/oops/klass.cpp
author lfoltan
Mon, 20 Aug 2018 08:25:57 -0400
changeset 51444 3e5d28e6de32
parent 51334 cc2c79d22508
child 51491 187c84a5efe1
permissions -rw-r--r--
8209301: JVM rename is_anonymous, host_klass to unsafe specific terminology ahead of Unsafe.defineAnonymousClass deprecation Summary: Clean up VM anonymous class terminology. Reviewed-by: coleenp, dholmes, mchung
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
49056
91ada5977172 8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents: 47580
diff changeset
     2
 * Copyright (c) 1997, 2018, 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: 4584
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4584
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: 4584
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: 6176
diff changeset
    25
#include "precompiled.hpp"
49824
e242740a92b8 8201556: Disallow reading oops in ClassLoaderData if unloading
coleenp
parents: 49821
diff changeset
    26
#include "classfile/classLoaderData.inline.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30150
diff changeset
    27
#include "classfile/dictionary.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
    28
#include "classfile/javaClasses.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    29
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    30
#include "classfile/vmSymbols.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30150
diff changeset
    31
#include "gc/shared/collectedHeap.inline.hpp"
35917
463d67f86eaa 8079408: Reimplement TraceClassLoading, TraceClassUnloading, and TraceClassLoaderData with Unified Logging.
mockner
parents: 35900
diff changeset
    32
#include "logging/log.hpp"
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14588
diff changeset
    33
#include "memory/heapInspection.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
    34
#include "memory/metadataFactory.hpp"
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46413
diff changeset
    35
#include "memory/metaspaceClosure.hpp"
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46413
diff changeset
    36
#include "memory/metaspaceShared.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    37
#include "memory/oopFactory.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    38
#include "memory/resourceArea.hpp"
49592
77fb0be7d19f 8199946: Move load/store and encode/decode out of oopDesc
stefank
parents: 49393
diff changeset
    39
#include "oops/compressedOops.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    40
#include "oops/instanceKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    41
#include "oops/klass.inline.hpp"
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 28731
diff changeset
    42
#include "oops/oop.inline.hpp"
49816
a3e79f97e86b 8200555: OopHandle should use Access API
coleenp
parents: 49786
diff changeset
    43
#include "oops/oopHandle.inline.hpp"
40655
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39400
diff changeset
    44
#include "runtime/atomic.hpp"
49393
93fe2fc5c093 8199472: Fix non-PCH build after JDK-8199319
simonis
parents: 49368
diff changeset
    45
#include "runtime/handles.inline.hpp"
50429
83aec1d357d4 8204301: Make OrderAccess functions available to hpp rather than inline.hpp files
coleenp
parents: 50113
diff changeset
    46
#include "runtime/orderAccess.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 14588
diff changeset
    47
#include "utilities/macros.hpp"
29702
9ed339a5e096 8075809: Add missing includes of stack.inline.hpp
stefank
parents: 29081
diff changeset
    48
#include "utilities/stack.inline.hpp"
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
    49
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
    50
void Klass::set_java_mirror(Handle m) {
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
    51
  assert(!m.is_null(), "New mirror should never be null.");
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
    52
  assert(_java_mirror.resolve() == NULL, "should only be used to initialize mirror");
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
    53
  _java_mirror = class_loader_data()->add_handle(m);
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
    54
}
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
    55
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
    56
oop Klass::java_mirror() const {
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
    57
  return _java_mirror.resolve();
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
    58
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
35544
c7ec868d0923 8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents: 34666
diff changeset
    60
bool Klass::is_cloneable() const {
c7ec868d0923 8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents: 34666
diff changeset
    61
  return _access_flags.is_cloneable_fast() ||
c7ec868d0923 8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents: 34666
diff changeset
    62
         is_subtype_of(SystemDictionary::Cloneable_klass());
c7ec868d0923 8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents: 34666
diff changeset
    63
}
c7ec868d0923 8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents: 34666
diff changeset
    64
c7ec868d0923 8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents: 34666
diff changeset
    65
void Klass::set_is_cloneable() {
49786
7444101401b2 8192025: Less referential references
kbarrett
parents: 49592
diff changeset
    66
  if (name() == vmSymbols::java_lang_invoke_MemberName()) {
35544
c7ec868d0923 8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents: 34666
diff changeset
    67
    assert(is_final(), "no subclasses allowed");
c7ec868d0923 8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents: 34666
diff changeset
    68
    // MemberName cloning should not be intrinsified and always happen in JVM_Clone.
49786
7444101401b2 8192025: Less referential references
kbarrett
parents: 49592
diff changeset
    69
  } else if (is_instance_klass() && InstanceKlass::cast(this)->reference_type() != REF_NONE) {
7444101401b2 8192025: Less referential references
kbarrett
parents: 49592
diff changeset
    70
    // Reference cloning should not be intrinsified and always happen in JVM_Clone.
7444101401b2 8192025: Less referential references
kbarrett
parents: 49592
diff changeset
    71
  } else {
7444101401b2 8192025: Less referential references
kbarrett
parents: 49592
diff changeset
    72
    _access_flags.set_is_cloneable_fast();
35544
c7ec868d0923 8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents: 34666
diff changeset
    73
  }
c7ec868d0923 8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents: 34666
diff changeset
    74
}
c7ec868d0923 8133612: new clone logic added in 8042235 is missing from compiler intrinsics
vlivanov
parents: 34666
diff changeset
    75
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    76
void Klass::set_name(Symbol* n) {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    77
  _name = n;
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    78
  if (_name != NULL) _name->increment_refcount();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    79
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
17370
59a0620561fa 8003557: NPG: Klass* const k should be const Klass* k.
minqi
parents: 16352
diff changeset
    81
bool Klass::is_subclass_of(const Klass* k) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // Run up the super chain and check
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
    83
  if (this == k) return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
    85
  Klass* t = const_cast<Klass*>(this)->super();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  while (t != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    if (t == k) return true;
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14078
diff changeset
    89
    t = t->super();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
    94
bool Klass::search_secondary_supers(Klass* k) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  // Put some extra logic here out-of-line, before the search proper.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  // This cuts down the size of the inline method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  // This is necessary, since I am never in my own secondary_super list.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
    99
  if (this == k)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  // Scan the array-of-objects for a match
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  int cnt = secondary_supers()->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  for (int i = 0; i < cnt; i++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   104
    if (secondary_supers()->at(i) == k) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
      ((Klass*)this)->set_secondary_super_cache(k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
// Return self, except for abstract classes with exactly 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
// implementor.  Then return the 1 concrete implementation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
Klass *Klass::up_cast_abstract() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  Klass *r = this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  while( r->is_abstract() ) {   // Receiver is abstract?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    Klass *s = r->subklass();   // Check for exactly 1 subklass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    if( !s || s->next_sibling() ) // Oops; wrong count; give up
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
      return this;              // Return 'this' as a no-progress flag
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    r = s;                    // Loop till find concrete class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  return r;                   // Return the 1 concrete class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 1550
diff changeset
   125
// Find LCA in class hierarchy
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
Klass *Klass::LCA( Klass *k2 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  Klass *k1 = this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  while( 1 ) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   129
    if( k1->is_subtype_of(k2) ) return k2;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   130
    if( k2->is_subtype_of(k1) ) return k1;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   131
    k1 = k1->super();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   132
    k2 = k2->super();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
void Klass::check_valid_for_instantiation(bool throwError, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  THROW_MSG(throwError ? vmSymbols::java_lang_InstantiationError()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
            : vmSymbols::java_lang_InstantiationException(), external_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
void Klass::copy_array(arrayOop s, int src_pos, arrayOop d, int dst_pos, int length, TRAPS) {
50601
3fbae7b9ddb5 8204943: Improve message of ArrayStoreException.
goetz
parents: 50569
diff changeset
   145
  ResourceMark rm(THREAD);
3fbae7b9ddb5 8204943: Improve message of ArrayStoreException.
goetz
parents: 50569
diff changeset
   146
  assert(s != NULL, "Throw NPE!");
3fbae7b9ddb5 8204943: Improve message of ArrayStoreException.
goetz
parents: 50569
diff changeset
   147
  THROW_MSG(vmSymbols::java_lang_ArrayStoreException(),
3fbae7b9ddb5 8204943: Improve message of ArrayStoreException.
goetz
parents: 50569
diff changeset
   148
            err_msg("arraycopy: source type %s is not an array", s->klass()->external_name()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
void Klass::initialize(TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   156
bool Klass::compute_is_subtype_of(Klass* k) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  assert(k->is_klass(), "argument must be a class");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  return is_subclass_of(k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
27020
a7c8010446c2 8036805: Correct linker method lookup.
lfoltan
parents: 26135
diff changeset
   161
Klass* Klass::find_field(Symbol* name, Symbol* sig, fieldDescriptor* fd) const {
a7c8010446c2 8036805: Correct linker method lookup.
lfoltan
parents: 26135
diff changeset
   162
#ifdef ASSERT
a7c8010446c2 8036805: Correct linker method lookup.
lfoltan
parents: 26135
diff changeset
   163
  tty->print_cr("Error: find_field called on a klass oop."
a7c8010446c2 8036805: Correct linker method lookup.
lfoltan
parents: 26135
diff changeset
   164
                " Likely error: reflection method does not correctly"
a7c8010446c2 8036805: Correct linker method lookup.
lfoltan
parents: 26135
diff changeset
   165
                " wrap return value in a mirror object.");
a7c8010446c2 8036805: Correct linker method lookup.
lfoltan
parents: 26135
diff changeset
   166
#endif
a7c8010446c2 8036805: Correct linker method lookup.
lfoltan
parents: 26135
diff changeset
   167
  ShouldNotReachHere();
a7c8010446c2 8036805: Correct linker method lookup.
lfoltan
parents: 26135
diff changeset
   168
  return NULL;
a7c8010446c2 8036805: Correct linker method lookup.
lfoltan
parents: 26135
diff changeset
   169
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
50735
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50601
diff changeset
   171
Method* Klass::uncached_lookup_method(const Symbol* name, const Symbol* signature,
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50601
diff changeset
   172
                                      OverpassLookupMode overpass_mode,
2f2af62dfac7 8010319: Implementation of JEP 181: Nest-Based Access Control
dholmes
parents: 50601
diff changeset
   173
                                      PrivateLookupMode private_mode) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  tty->print_cr("Error: uncached_lookup_method called on a klass oop."
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
                " Likely error: reflection method does not correctly"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
                " wrap return value in a mirror object.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
19696
bd5a0131bde1 8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents: 18687
diff changeset
   183
void* Klass::operator new(size_t size, ClassLoaderData* loader_data, size_t word_size, TRAPS) throw() {
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46413
diff changeset
   184
  return Metaspace::allocate(loader_data, word_size, MetaspaceObj::ClassType, THREAD);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   185
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   186
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 33611
diff changeset
   187
// "Normal" instantiation is preceeded by a MetaspaceObj allocation
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 33611
diff changeset
   188
// which zeros out memory - calloc equivalent.
46324
8764956ec928 8005165: Remove CPU-dependent code in self-patching vtables
iklam
parents: 46271
diff changeset
   189
// The constructor is also used from CppVtableCloner,
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 33611
diff changeset
   190
// which doesn't zero out the memory before calling the constructor.
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 33611
diff changeset
   191
// Need to set the _java_mirror field explicitly to not hit an assert that the field
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 33611
diff changeset
   192
// should be NULL before setting it.
50752
9d62da00bf15 8204540: Automatic oop closure devirtualization
stefank
parents: 50746
diff changeset
   193
Klass::Klass(KlassID id) : _id(id),
51334
cc2c79d22508 8208671: Runtime, JFR, Serviceability changes to allow enabling -Wreorder
tschatzl
parents: 51329
diff changeset
   194
                           _java_mirror(NULL),
50752
9d62da00bf15 8204540: Automatic oop closure devirtualization
stefank
parents: 50746
diff changeset
   195
                           _prototype_header(markOopDesc::prototype()),
51334
cc2c79d22508 8208671: Runtime, JFR, Serviceability changes to allow enabling -Wreorder
tschatzl
parents: 51329
diff changeset
   196
                           _shared_class_path_index(-1) {
49329
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   197
  CDS_ONLY(_shared_class_flags = 0;)
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   198
  CDS_JAVA_HEAP_ONLY(_archived_mirror = 0;)
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 33611
diff changeset
   199
  _primary_supers[0] = this;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 33611
diff changeset
   200
  set_super_check_offset(in_bytes(primary_supers_offset()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
jint Klass::array_layout_helper(BasicType etype) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  assert(etype >= T_BOOLEAN && etype <= T_OBJECT, "valid etype");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  // Note that T_ARRAY is not allowed here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  int  hsize = arrayOopDesc::base_offset_in_bytes(etype);
202
dc13bf0e5d5d 6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents: 1
diff changeset
   207
  int  esize = type2aelembytes(etype);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  bool isobj = (etype == T_OBJECT);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  int  tag   =  isobj ? _lh_array_tag_obj_value : _lh_array_tag_type_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  int lh = array_layout_helper(tag, hsize, etype, exact_log2(esize));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  assert(lh < (int)_lh_neutral_value, "must look like an array layout");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   213
  assert(layout_helper_is_array(lh), "correct kind");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  assert(layout_helper_is_objArray(lh) == isobj, "correct kind");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  assert(layout_helper_is_typeArray(lh) == !isobj, "correct kind");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  assert(layout_helper_header_size(lh) == hsize, "correct decode");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  assert(layout_helper_element_type(lh) == etype, "correct decode");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  assert(1 << layout_helper_log2_element_size(lh) == esize, "correct decode");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  return lh;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
bool Klass::can_be_primary_super_slow() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  if (super() == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    return true;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   226
  else if (super()->super_depth() >= primary_super_limit()-1)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
51329
9c68699bebe5 8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents: 50761
diff changeset
   232
void Klass::initialize_supers(Klass* k, Array<InstanceKlass*>* transitive_interfaces, TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  if (FastSuperclassLimit == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
    // None of the other machinery matters.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    set_super(k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  if (k == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
    set_super(NULL);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   240
    _primary_supers[0] = this;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
    assert(super_depth() == 0, "Object must already be initialized properly");
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4094
diff changeset
   242
  } else if (k != super() || k == SystemDictionary::Object_klass()) {
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4094
diff changeset
   243
    assert(super() == NULL || super() == SystemDictionary::Object_klass(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
           "initialize this only once to a non-trivial value");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
    set_super(k);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   246
    Klass* sup = k;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
    int sup_depth = sup->super_depth();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
    juint my_depth  = MIN2(sup_depth + 1, (int)primary_super_limit());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
    if (!can_be_primary_super_slow())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
      my_depth = primary_super_limit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
    for (juint i = 0; i < my_depth; i++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   252
      _primary_supers[i] = sup->_primary_supers[i];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
    }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   254
    Klass* *super_check_cell;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
    if (my_depth < primary_super_limit()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   256
      _primary_supers[my_depth] = this;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
      super_check_cell = &_primary_supers[my_depth];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
      // Overflow of the primary_supers array forces me to be secondary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
      super_check_cell = &_secondary_super_cache;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
    }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   262
    set_super_check_offset((address)super_check_cell - (address) this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
      juint j = super_depth();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
      assert(j == my_depth, "computed accessor gets right answer");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   268
      Klass* t = this;
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14078
diff changeset
   269
      while (!t->can_be_primary_super()) {
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14078
diff changeset
   270
        t = t->super();
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14078
diff changeset
   271
        j = t->super_depth();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
      for (juint j1 = j+1; j1 < primary_super_limit(); j1++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
        assert(primary_super_of_depth(j1) == NULL, "super list padding");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
      while (t != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
        assert(primary_super_of_depth(j) == t, "super list initialization");
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14078
diff changeset
   278
        t = t->super();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
        --j;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
      assert(j == (juint)-1, "correct depth count");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  if (secondary_supers() == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
    // Now compute the list of secondary supertypes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    // Secondaries can occasionally be on the super chain,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
    // if the inline "_primary_supers" array overflows.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
    int extras = 0;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   292
    Klass* p;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   293
    for (p = super(); !(p == NULL || p->can_be_primary_super()); p = p->super()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
      ++extras;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   297
    ResourceMark rm(THREAD);  // need to reclaim GrowableArrays allocated below
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   299
    // Compute the "real" non-extra secondaries.
49948
ff8dbb56740a 8200466: Revisit the setting of _transitive_interfaces in InstanceKlass
ccheung
parents: 49824
diff changeset
   300
    GrowableArray<Klass*>* secondaries = compute_secondary_supers(extras, transitive_interfaces);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   301
    if (secondaries == NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   302
      // secondary_supers set by compute_secondary_supers
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   303
      return;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   304
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   305
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   306
    GrowableArray<Klass*>* primaries = new GrowableArray<Klass*>(extras);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   307
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46324
diff changeset
   308
    for (p = super(); !(p == NULL || p->can_be_primary_super()); p = p->super()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
      int i;                    // Scan for overflow primaries being duplicates of 2nd'arys
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
      // This happens frequently for very deeply nested arrays: the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
      // primary superclass chain overflows into the secondary.  The
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
      // secondary list contains the element_klass's secondaries with
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
      // an extra array dimension added.  If the element_klass's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
      // secondary list already contains some primary overflows, they
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
      // (with the extra level of array-ness) will collide with the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
      // normal primary superclass overflows.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   318
      for( i = 0; i < secondaries->length(); i++ ) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   319
        if( secondaries->at(i) == p )
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
          break;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   321
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
      if( i < secondaries->length() )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
        continue;               // It's a dup, don't put it in
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   324
      primaries->push(p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
    }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   326
    // Combine the two arrays into a metadata object to pack the array.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   327
    // The primaries are added in the reverse order, then the secondaries.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   328
    int new_length = primaries->length() + secondaries->length();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   329
    Array<Klass*>* s2 = MetadataFactory::new_array<Klass*>(
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   330
                                       class_loader_data(), new_length, CHECK);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   331
    int fill_p = primaries->length();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   332
    for (int j = 0; j < fill_p; j++) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   333
      s2->at_put(j, primaries->pop());  // add primaries in reverse order.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   334
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   335
    for( int j = 0; j < secondaries->length(); j++ ) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   336
      s2->at_put(j+fill_p, secondaries->at(j));  // add secondaries on the end.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  #ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
      // We must not copy any NULL placeholders left over from bootstrap.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   341
    for (int j = 0; j < s2->length(); j++) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   342
      assert(s2->at(j) != NULL, "correct bootstrapping order");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46324
diff changeset
   346
    set_secondary_supers(s2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
49948
ff8dbb56740a 8200466: Revisit the setting of _transitive_interfaces in InstanceKlass
ccheung
parents: 49824
diff changeset
   350
GrowableArray<Klass*>* Klass::compute_secondary_supers(int num_extra_slots,
51329
9c68699bebe5 8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents: 50761
diff changeset
   351
                                                       Array<InstanceKlass*>* transitive_interfaces) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  assert(num_extra_slots == 0, "override for complex klasses");
49948
ff8dbb56740a 8200466: Revisit the setting of _transitive_interfaces in InstanceKlass
ccheung
parents: 49824
diff changeset
   353
  assert(transitive_interfaces == NULL, "sanity");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   354
  set_secondary_supers(Universe::the_empty_klass_array());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   355
  return NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   359
InstanceKlass* Klass::superklass() const {
33611
9abd65805e19 8139203: Consistent naming for klass type predicates
coleenp
parents: 33602
diff changeset
   360
  assert(super() == NULL || super()->is_instance_klass(), "must be instance klass");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   361
  return _super == NULL ? NULL : InstanceKlass::cast(_super);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   364
void Klass::set_subklass(Klass* s) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   365
  assert(s != this, "sanity check");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   366
  _subklass = s;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   369
void Klass::set_next_sibling(Klass* s) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   370
  assert(s != this, "sanity check");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   371
  _next_sibling = s;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
void Klass::append_to_sibling_list() {
14078
2b2b8833c422 7199068: NPG: SharedSkipVerify is meaningless
coleenp
parents: 13952
diff changeset
   375
  debug_only(verify();)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  // add ourselves to superklass' subklass list
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   377
  InstanceKlass* super = superklass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  if (super == NULL) return;        // special case: class Object
14078
2b2b8833c422 7199068: NPG: SharedSkipVerify is meaningless
coleenp
parents: 13952
diff changeset
   379
  assert((!super->is_interface()    // interfaces cannot be supers
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
          && (super->superklass() == NULL || !is_interface())),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
         "an interface can only be a subklass of Object");
23515
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 22908
diff changeset
   382
  Klass* prev_first_subklass = super->subklass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  if (prev_first_subklass != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
    // set our sibling to be the superklass' previous first subklass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
    set_next_sibling(prev_first_subklass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  // make ourselves the superklass' first subklass
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   388
  super->set_subklass(this);
14078
2b2b8833c422 7199068: NPG: SharedSkipVerify is meaningless
coleenp
parents: 13952
diff changeset
   389
  debug_only(verify();)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
50746
85789fb05154 8198909: [Graal] compiler/codecache/stress/UnexpectedDeoptimizationTest.java crashed with SIGSEGV
never
parents: 50735
diff changeset
   392
oop Klass::holder_phantom() const {
85789fb05154 8198909: [Graal] compiler/codecache/stress/UnexpectedDeoptimizationTest.java crashed with SIGSEGV
never
parents: 50735
diff changeset
   393
  return class_loader_data()->holder_phantom();
85789fb05154 8198909: [Graal] compiler/codecache/stress/UnexpectedDeoptimizationTest.java crashed with SIGSEGV
never
parents: 50735
diff changeset
   394
}
85789fb05154 8198909: [Graal] compiler/codecache/stress/UnexpectedDeoptimizationTest.java crashed with SIGSEGV
never
parents: 50735
diff changeset
   395
49969
8624981f1ffa 8202447: Fix unloading_occurred to mean unloading_occurred
coleenp
parents: 49948
diff changeset
   396
void Klass::clean_weak_klass_links(bool unloading_occurred, bool clean_alive_klasses) {
8624981f1ffa 8202447: Fix unloading_occurred to mean unloading_occurred
coleenp
parents: 49948
diff changeset
   397
  if (!ClassUnloading || !unloading_occurred) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   398
    return;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   399
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   400
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   401
  Klass* root = SystemDictionary::Object_klass();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   402
  Stack<Klass*, mtGC> stack;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   403
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   404
  stack.push(root);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   405
  while (!stack.is_empty()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   406
    Klass* current = stack.pop();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   407
49821
02c08e20d66c 8201537: Remove is_alive closure from Klass::is_loader_alive()
coleenp
parents: 49816
diff changeset
   408
    assert(current->is_loader_alive(), "just checking, this should be live");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   409
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   410
    // Find and set the first alive subklass
23515
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 22908
diff changeset
   411
    Klass* sub = current->subklass();
49821
02c08e20d66c 8201537: Remove is_alive closure from Klass::is_loader_alive()
coleenp
parents: 49816
diff changeset
   412
    while (sub != NULL && !sub->is_loader_alive()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
#ifndef PRODUCT
38151
fffedc5e5cf8 8154110: Update class* and safepoint* logging subsystems
mockner
parents: 36508
diff changeset
   414
      if (log_is_enabled(Trace, class, unload)) {
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 14488
diff changeset
   415
        ResourceMark rm;
38151
fffedc5e5cf8 8154110: Update class* and safepoint* logging subsystems
mockner
parents: 36508
diff changeset
   416
        log_trace(class, unload)("unlinking class (subclass): %s", sub->external_name());
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 14488
diff changeset
   417
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
#endif
23515
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 22908
diff changeset
   419
      sub = sub->next_sibling();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
    }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   421
    current->set_subklass(sub);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   422
    if (sub != NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   423
      stack.push(sub);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   424
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   425
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   426
    // Find and set the first alive sibling
23515
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 22908
diff changeset
   427
    Klass* sibling = current->next_sibling();
49821
02c08e20d66c 8201537: Remove is_alive closure from Klass::is_loader_alive()
coleenp
parents: 49816
diff changeset
   428
    while (sibling != NULL && !sibling->is_loader_alive()) {
38151
fffedc5e5cf8 8154110: Update class* and safepoint* logging subsystems
mockner
parents: 36508
diff changeset
   429
      if (log_is_enabled(Trace, class, unload)) {
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 14488
diff changeset
   430
        ResourceMark rm;
38151
fffedc5e5cf8 8154110: Update class* and safepoint* logging subsystems
mockner
parents: 36508
diff changeset
   431
        log_trace(class, unload)("[Unlinking class (sibling) %s]", sibling->external_name());
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 14488
diff changeset
   432
      }
23515
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 22908
diff changeset
   433
      sibling = sibling->next_sibling();
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 14488
diff changeset
   434
    }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   435
    current->set_next_sibling(sibling);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   436
    if (sibling != NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   437
      stack.push(sibling);
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 14488
diff changeset
   438
    }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   439
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   440
    // Clean the implementors list and method data.
33611
9abd65805e19 8139203: Consistent naming for klass type predicates
coleenp
parents: 33602
diff changeset
   441
    if (clean_alive_klasses && current->is_instance_klass()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   442
      InstanceKlass* ik = InstanceKlass::cast(current);
49821
02c08e20d66c 8201537: Remove is_alive closure from Klass::is_loader_alive()
coleenp
parents: 49816
diff changeset
   443
      ik->clean_weak_instanceklass_links();
41060
c72f3248ea0c 8156137: SIGSEGV in ReceiverTypeData::clean_weak_klass_links
dlong
parents: 40655
diff changeset
   444
c72f3248ea0c 8156137: SIGSEGV in ReceiverTypeData::clean_weak_klass_links
dlong
parents: 40655
diff changeset
   445
      // JVMTI RedefineClasses creates previous versions that are not in
c72f3248ea0c 8156137: SIGSEGV in ReceiverTypeData::clean_weak_klass_links
dlong
parents: 40655
diff changeset
   446
      // the class hierarchy, so process them here.
c72f3248ea0c 8156137: SIGSEGV in ReceiverTypeData::clean_weak_klass_links
dlong
parents: 40655
diff changeset
   447
      while ((ik = ik->previous_versions()) != NULL) {
49821
02c08e20d66c 8201537: Remove is_alive closure from Klass::is_loader_alive()
coleenp
parents: 49816
diff changeset
   448
        ik->clean_weak_instanceklass_links();
41060
c72f3248ea0c 8156137: SIGSEGV in ReceiverTypeData::clean_weak_klass_links
dlong
parents: 40655
diff changeset
   449
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46413
diff changeset
   454
void Klass::metaspace_pointers_do(MetaspaceClosure* it) {
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46413
diff changeset
   455
  if (log_is_enabled(Trace, cds)) {
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46413
diff changeset
   456
    ResourceMark rm;
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46413
diff changeset
   457
    log_trace(cds)("Iter(Klass): %p (%s)", this, external_name());
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46413
diff changeset
   458
  }
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46413
diff changeset
   459
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46413
diff changeset
   460
  it->push(&_name);
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46413
diff changeset
   461
  it->push(&_secondary_super_cache);
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46413
diff changeset
   462
  it->push(&_secondary_supers);
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46413
diff changeset
   463
  for (int i = 0; i < _primary_super_limit; i++) {
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46413
diff changeset
   464
    it->push(&_primary_supers[i]);
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46413
diff changeset
   465
  }
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46413
diff changeset
   466
  it->push(&_super);
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46413
diff changeset
   467
  it->push(&_subklass);
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46413
diff changeset
   468
  it->push(&_next_sibling);
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46413
diff changeset
   469
  it->push(&_next_link);
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46413
diff changeset
   470
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46413
diff changeset
   471
  vtableEntry* vt = start_of_vtable();
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46413
diff changeset
   472
  for (int i=0; i<vtable_length(); i++) {
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46413
diff changeset
   473
    it->push(vt[i].method_addr());
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46413
diff changeset
   474
  }
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46413
diff changeset
   475
}
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46413
diff changeset
   476
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
void Klass::remove_unshareable_info() {
23872
536c66fc43d3 8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents: 23515
diff changeset
   478
  assert (DumpSharedSpaces, "only called for DumpSharedSpaces");
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50056
diff changeset
   479
  JFR_ONLY(REMOVE_ID(this);)
47103
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 46968
diff changeset
   480
  if (log_is_enabled(Trace, cds, unshareable)) {
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 46968
diff changeset
   481
    ResourceMark rm;
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 46968
diff changeset
   482
    log_trace(cds, unshareable)("remove: %s", external_name());
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 46968
diff changeset
   483
  }
23872
536c66fc43d3 8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents: 23515
diff changeset
   484
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  set_subklass(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  set_next_sibling(NULL);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   487
  set_next_link(NULL);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   488
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   489
  // Null out class_loader_data because we don't share that yet.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   490
  set_class_loader_data(NULL);
46413
b0f67ec8f6be 8178543: Optimize Klass::is_shared()
iklam
parents: 46408
diff changeset
   491
  set_is_shared();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
47103
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 46968
diff changeset
   494
void Klass::remove_java_mirror() {
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 46968
diff changeset
   495
  assert (DumpSharedSpaces, "only called for DumpSharedSpaces");
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 46968
diff changeset
   496
  if (log_is_enabled(Trace, cds, unshareable)) {
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 46968
diff changeset
   497
    ResourceMark rm;
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 46968
diff changeset
   498
    log_trace(cds, unshareable)("remove java_mirror: %s", external_name());
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 46968
diff changeset
   499
  }
47580
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
   500
  // Just null out the mirror.  The class_loader_data() no longer exists.
96392e113a0a 8186777: Make Klass::_java_mirror an OopHandle
coleenp
parents: 47216
diff changeset
   501
  _java_mirror = NULL;
47103
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 46968
diff changeset
   502
}
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 46968
diff changeset
   503
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25492
diff changeset
   504
void Klass::restore_unshareable_info(ClassLoaderData* loader_data, Handle protection_domain, TRAPS) {
46324
8764956ec928 8005165: Remove CPU-dependent code in self-patching vtables
iklam
parents: 46271
diff changeset
   505
  assert(is_klass(), "ensure C++ vtable is restored");
46413
b0f67ec8f6be 8178543: Optimize Klass::is_shared()
iklam
parents: 46408
diff changeset
   506
  assert(is_shared(), "must be set");
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50056
diff changeset
   507
  JFR_ONLY(RESTORE_ID(this);)
47103
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 46968
diff changeset
   508
  if (log_is_enabled(Trace, cds, unshareable)) {
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 46968
diff changeset
   509
    ResourceMark rm;
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 46968
diff changeset
   510
    log_trace(cds, unshareable)("restore: %s", external_name());
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 46968
diff changeset
   511
  }
39400
daf3af35d6bf 8159666: Better CDS support for Event-based tracing
iklam
parents: 38151
diff changeset
   512
23872
536c66fc43d3 8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents: 23515
diff changeset
   513
  // If an exception happened during CDS restore, some of these fields may already be
536c66fc43d3 8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents: 23515
diff changeset
   514
  // set.  We leave the class on the CLD list, even if incomplete so that we don't
536c66fc43d3 8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents: 23515
diff changeset
   515
  // modify the CLD list outside a safepoint.
536c66fc43d3 8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents: 23515
diff changeset
   516
  if (class_loader_data() == NULL) {
536c66fc43d3 8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents: 23515
diff changeset
   517
    // Restore class_loader_data to the null class loader data
536c66fc43d3 8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents: 23515
diff changeset
   518
    set_class_loader_data(loader_data);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
23872
536c66fc43d3 8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents: 23515
diff changeset
   520
    // Add to null class loader list first before creating the mirror
536c66fc43d3 8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents: 23515
diff changeset
   521
    // (same order as class file parsing)
536c66fc43d3 8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents: 23515
diff changeset
   522
    loader_data->add_class(this);
536c66fc43d3 8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents: 23515
diff changeset
   523
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   524
49329
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   525
  Handle loader(THREAD, loader_data->class_loader());
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   526
  ModuleEntry* module_entry = NULL;
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   527
  Klass* k = this;
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   528
  if (k->is_objArray_klass()) {
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   529
    k = ObjArrayKlass::cast(k)->bottom_klass();
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   530
  }
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   531
  // Obtain klass' module.
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   532
  if (k->is_instance_klass()) {
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   533
    InstanceKlass* ik = (InstanceKlass*) k;
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   534
    module_entry = ik->module();
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   535
  } else {
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   536
    module_entry = ModuleEntryTable::javabase_moduleEntry();
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   537
  }
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   538
  // Obtain java.lang.Module, if available
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   539
  Handle module_handle(THREAD, ((module_entry != NULL) ? module_entry->module() : (oop)NULL));
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   540
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   541
  if (this->has_raw_archived_mirror()) {
50532
a18c60527166 8204585: Remove IN_ARCHIVE_ROOT from Access API
kbarrett
parents: 50429
diff changeset
   542
    ResourceMark rm;
49329
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   543
    log_debug(cds, mirror)("%s has raw archived mirror", external_name());
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   544
    if (MetaspaceShared::open_archive_heap_region_mapped()) {
50532
a18c60527166 8204585: Remove IN_ARCHIVE_ROOT from Access API
kbarrett
parents: 50429
diff changeset
   545
      bool present = java_lang_Class::restore_archived_mirror(this, loader, module_handle,
a18c60527166 8204585: Remove IN_ARCHIVE_ROOT from Access API
kbarrett
parents: 50429
diff changeset
   546
                                                              protection_domain,
a18c60527166 8204585: Remove IN_ARCHIVE_ROOT from Access API
kbarrett
parents: 50429
diff changeset
   547
                                                              CHECK);
a18c60527166 8204585: Remove IN_ARCHIVE_ROOT from Access API
kbarrett
parents: 50429
diff changeset
   548
      if (present) {
49329
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   549
        return;
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   550
      }
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   551
    }
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   552
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   553
    // No archived mirror data
50532
a18c60527166 8204585: Remove IN_ARCHIVE_ROOT from Access API
kbarrett
parents: 50429
diff changeset
   554
    log_debug(cds, mirror)("No archived mirror data for %s", external_name());
49329
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   555
    _java_mirror = NULL;
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   556
    this->clear_has_raw_archived_mirror();
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   557
  }
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   558
23872
536c66fc43d3 8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents: 23515
diff changeset
   559
  // Only recreate it if not present.  A previous attempt to restore may have
536c66fc43d3 8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents: 23515
diff changeset
   560
  // gotten an OOM later but keep the mirror if it was created.
536c66fc43d3 8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents: 23515
diff changeset
   561
  if (java_mirror() == NULL) {
49329
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   562
    log_trace(cds, mirror)("Recreate mirror for %s", external_name());
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36384
diff changeset
   563
    java_lang_Class::create_mirror(this, loader, module_handle, protection_domain, CHECK);
23872
536c66fc43d3 8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents: 23515
diff changeset
   564
  }
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   565
}
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   566
49329
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   567
#if INCLUDE_CDS_JAVA_HEAP
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   568
// Used at CDS dump time to access the archived mirror. No GC barrier.
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   569
oop Klass::archived_java_mirror_raw() {
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   570
  assert(has_raw_archived_mirror(), "must have raw archived mirror");
49592
77fb0be7d19f 8199946: Move load/store and encode/decode out of oopDesc
stefank
parents: 49393
diff changeset
   571
  return CompressedOops::decode(_archived_mirror);
49329
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   572
}
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   573
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   574
// No GC barrier
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   575
void Klass::set_archived_java_mirror_raw(oop m) {
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   576
  assert(DumpSharedSpaces, "called only during runtime");
49592
77fb0be7d19f 8199946: Move load/store and encode/decode out of oopDesc
stefank
parents: 49393
diff changeset
   577
  _archived_mirror = CompressedOops::encode(m);
49329
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   578
}
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   579
#endif // INCLUDE_CDS_JAVA_HEAP
04ed29f9ef33 8194759: Support caching class mirror objects.
jiangli
parents: 49066
diff changeset
   580
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   581
Klass* Klass::array_klass_or_null(int rank) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  EXCEPTION_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
  // No exception can be thrown by array_klass_impl when called with or_null == true.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  // (In anycase, the execption mark will fail if it do so)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  return array_klass_impl(true, rank, THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   589
Klass* Klass::array_klass_or_null() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  EXCEPTION_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  // No exception can be thrown by array_klass_impl when called with or_null == true.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  // (In anycase, the execption mark will fail if it do so)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
  return array_klass_impl(true, THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   597
Klass* Klass::array_klass_impl(bool or_null, int rank, TRAPS) {
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   598
  fatal("array_klass should be dispatched to InstanceKlass, ObjArrayKlass or TypeArrayKlass");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   603
Klass* Klass::array_klass_impl(bool or_null, TRAPS) {
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   604
  fatal("array_klass should be dispatched to InstanceKlass, ObjArrayKlass or TypeArrayKlass");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   608
oop Klass::class_loader() const { return class_loader_data()->class_loader(); }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   609
33602
16053580a684 8139163: InstanceKlass::cast passes through NULL
coleenp
parents: 33576
diff changeset
   610
// In product mode, this function doesn't have virtual function calls so
16053580a684 8139163: InstanceKlass::cast passes through NULL
coleenp
parents: 33576
diff changeset
   611
// there might be some performance advantage to handling InstanceKlass here.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
const char* Klass::external_name() const {
33611
9abd65805e19 8139203: Consistent naming for klass type predicates
coleenp
parents: 33602
diff changeset
   613
  if (is_instance_klass()) {
33602
16053580a684 8139163: InstanceKlass::cast passes through NULL
coleenp
parents: 33576
diff changeset
   614
    const InstanceKlass* ik = static_cast<const InstanceKlass*>(this);
51444
3e5d28e6de32 8209301: JVM rename is_anonymous, host_klass to unsafe specific terminology ahead of Unsafe.defineAnonymousClass deprecation
lfoltan
parents: 51334
diff changeset
   615
    if (ik->is_unsafe_anonymous()) {
49066
4aa67aba6c85 8197901: Crash during GC when logging level is debug
lmesnik
parents: 49056
diff changeset
   616
      char addr_buf[20];
4aa67aba6c85 8197901: Crash during GC when logging level is debug
lmesnik
parents: 49056
diff changeset
   617
      jio_snprintf(addr_buf, 20, "/" INTPTR_FORMAT, p2i(ik));
4aa67aba6c85 8197901: Crash during GC when logging level is debug
lmesnik
parents: 49056
diff changeset
   618
      size_t addr_len = strlen(addr_buf);
4aa67aba6c85 8197901: Crash during GC when logging level is debug
lmesnik
parents: 49056
diff changeset
   619
      size_t name_len = name()->utf8_length();
4aa67aba6c85 8197901: Crash during GC when logging level is debug
lmesnik
parents: 49056
diff changeset
   620
      char*  result   = NEW_RESOURCE_ARRAY(char, name_len + addr_len + 1);
4aa67aba6c85 8197901: Crash during GC when logging level is debug
lmesnik
parents: 49056
diff changeset
   621
      name()->as_klass_external_name(result, (int) name_len + 1);
4aa67aba6c85 8197901: Crash during GC when logging level is debug
lmesnik
parents: 49056
diff changeset
   622
      assert(strlen(result) == name_len, "");
4aa67aba6c85 8197901: Crash during GC when logging level is debug
lmesnik
parents: 49056
diff changeset
   623
      strcpy(result + name_len, addr_buf);
4aa67aba6c85 8197901: Crash during GC when logging level is debug
lmesnik
parents: 49056
diff changeset
   624
      assert(strlen(result) == name_len + addr_len, "");
1550
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   625
      return result;
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   626
    }
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   627
  }
4094
1f424b2b2171 6815692: method handle code needs some cleanup (post-6655638)
jrose
parents: 2131
diff changeset
   628
  if (name() == NULL)  return "<unknown>";
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
  return name()->as_klass_external_name();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
4094
1f424b2b2171 6815692: method handle code needs some cleanup (post-6655638)
jrose
parents: 2131
diff changeset
   632
const char* Klass::signature_name() const {
1f424b2b2171 6815692: method handle code needs some cleanup (post-6655638)
jrose
parents: 2131
diff changeset
   633
  if (name() == NULL)  return "<unknown>";
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
  return name()->as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
49368
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 49329
diff changeset
   637
const char* Klass::external_kind() const {
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 49329
diff changeset
   638
  if (is_interface()) return "interface";
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 49329
diff changeset
   639
  if (is_abstract()) return "abstract class";
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 49329
diff changeset
   640
  return "class";
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 49329
diff changeset
   641
}
2ed1c37df3a5 8197405: Improve messages of AbstractMethodErrors and IncompatibleClassChangeErrors.
goetz
parents: 49329
diff changeset
   642
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
// Unless overridden, modifier_flags is 0.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
jint Klass::compute_modifier_flags(TRAPS) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
int Klass::atomic_incr_biased_lock_revocation_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  return (int) Atomic::add(1, &_biased_lock_revocation_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
// Unless overridden, jvmti_class_status has no flags set.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
jint Klass::jvmti_class_status() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   657
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
// Printing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   660
void Klass::print_on(outputStream* st) const {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   661
  ResourceMark rm;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   662
  // print title
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   663
  st->print("%s", internal_name());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   664
  print_address_on(st);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   665
  st->cr();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   666
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   667
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
void Klass::oop_print_on(oop obj, outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
  // print title
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  st->print_cr("%s ", internal_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
  obj->print_address_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
  if (WizardMode) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
     // print header
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
     obj->mark()->print_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
  // print class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  st->print(" - klass: ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  obj->klass()->print_value_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
  st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
void Klass::oop_print_value_on(oop obj, outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  // print title
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
  ResourceMark rm;              // Cannot print in debug mode without this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
  st->print("%s", internal_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
  obj->print_address_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14588
diff changeset
   692
#if INCLUDE_SERVICES
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14588
diff changeset
   693
// Size Statistics
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14588
diff changeset
   694
void Klass::collect_statistics(KlassSizeStats *sz) const {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14588
diff changeset
   695
  sz->_klass_bytes = sz->count(this);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14588
diff changeset
   696
  sz->_mirror_bytes = sz->count(java_mirror());
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14588
diff changeset
   697
  sz->_secondary_supers_bytes = sz->count_array(secondary_supers());
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14588
diff changeset
   698
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14588
diff changeset
   699
  sz->_ro_bytes += sz->_secondary_supers_bytes;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14588
diff changeset
   700
  sz->_rw_bytes += sz->_klass_bytes + sz->_mirror_bytes;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14588
diff changeset
   701
}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14588
diff changeset
   702
#endif // INCLUDE_SERVICES
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   703
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
// Verification
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
22794
f1c014ad3754 8027146: Class loading verification failure if GC occurs in Universe::flush_dependents_on
coleenp
parents: 22201
diff changeset
   706
void Klass::verify_on(outputStream* st) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   707
18439
725ce18186b3 8016325: JVM hangs verifying system dictionary
coleenp
parents: 18025
diff changeset
   708
  // This can be expensive, but it is worth checking that this klass is actually
725ce18186b3 8016325: JVM hangs verifying system dictionary
coleenp
parents: 18025
diff changeset
   709
  // in the CLD graph but not in production.
24457
0e20b36df5c4 8038212: Method::is_valid_method() check has performance regression impact for stackwalking
coleenp
parents: 24351
diff changeset
   710
  assert(Metaspace::contains((address)this), "Should be");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   711
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   712
  guarantee(this->is_klass(),"should be klass");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   713
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   714
  if (super() != NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   715
    guarantee(super()->is_klass(), "should be klass");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   716
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   717
  if (secondary_super_cache() != NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   718
    Klass* ko = secondary_super_cache();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   719
    guarantee(ko->is_klass(), "should be klass");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   720
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   721
  for ( uint i = 0; i < primary_super_limit(); i++ ) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   722
    Klass* ko = _primary_supers[i];
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   723
    if (ko != NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   724
      guarantee(ko->is_klass(), "should be klass");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   725
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   726
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   727
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   728
  if (java_mirror() != NULL) {
46968
9119841280f4 8160399: is_oop_or_null involves undefined behavior
coleenp
parents: 46773
diff changeset
   729
    guarantee(oopDesc::is_oop(java_mirror()), "should be instance");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   730
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   731
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   732
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
void Klass::oop_verify_on(oop obj, outputStream* st) {
46968
9119841280f4 8160399: is_oop_or_null involves undefined behavior
coleenp
parents: 46773
diff changeset
   734
  guarantee(oopDesc::is_oop(obj),  "should be oop");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
  guarantee(obj->klass()->is_klass(), "klass field is not a klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
46408
70aab0c2ea8b 8178350: klassVtable and klassItable should be ValueObj
iklam
parents: 46388
diff changeset
   738
klassVtable Klass::vtable() const {
70aab0c2ea8b 8178350: klassVtable and klassItable should be ValueObj
iklam
parents: 46388
diff changeset
   739
  return klassVtable(const_cast<Klass*>(this), start_of_vtable(), vtable_length() / vtableEntry::size());
35900
d64cf9290fc4 8148481: Devirtualize Klass::vtable
mgerdin
parents: 35899
diff changeset
   740
}
d64cf9290fc4 8148481: Devirtualize Klass::vtable
mgerdin
parents: 35899
diff changeset
   741
d64cf9290fc4 8148481: Devirtualize Klass::vtable
mgerdin
parents: 35899
diff changeset
   742
vtableEntry* Klass::start_of_vtable() const {
d64cf9290fc4 8148481: Devirtualize Klass::vtable
mgerdin
parents: 35899
diff changeset
   743
  return (vtableEntry*) ((address)this + in_bytes(vtable_start_offset()));
d64cf9290fc4 8148481: Devirtualize Klass::vtable
mgerdin
parents: 35899
diff changeset
   744
}
d64cf9290fc4 8148481: Devirtualize Klass::vtable
mgerdin
parents: 35899
diff changeset
   745
d64cf9290fc4 8148481: Devirtualize Klass::vtable
mgerdin
parents: 35899
diff changeset
   746
Method* Klass::method_at_vtable(int index)  {
d64cf9290fc4 8148481: Devirtualize Klass::vtable
mgerdin
parents: 35899
diff changeset
   747
#ifndef PRODUCT
d64cf9290fc4 8148481: Devirtualize Klass::vtable
mgerdin
parents: 35899
diff changeset
   748
  assert(index >= 0, "valid vtable index");
d64cf9290fc4 8148481: Devirtualize Klass::vtable
mgerdin
parents: 35899
diff changeset
   749
  if (DebugVtables) {
d64cf9290fc4 8148481: Devirtualize Klass::vtable
mgerdin
parents: 35899
diff changeset
   750
    verify_vtable_index(index);
d64cf9290fc4 8148481: Devirtualize Klass::vtable
mgerdin
parents: 35899
diff changeset
   751
  }
d64cf9290fc4 8148481: Devirtualize Klass::vtable
mgerdin
parents: 35899
diff changeset
   752
#endif
d64cf9290fc4 8148481: Devirtualize Klass::vtable
mgerdin
parents: 35899
diff changeset
   753
  return start_of_vtable()[index].method();
d64cf9290fc4 8148481: Devirtualize Klass::vtable
mgerdin
parents: 35899
diff changeset
   754
}
d64cf9290fc4 8148481: Devirtualize Klass::vtable
mgerdin
parents: 35899
diff changeset
   755
35899
0dbc821628fc 8148047: Move the vtable length field to Klass
mgerdin
parents: 34666
diff changeset
   756
ByteSize Klass::vtable_start_offset() {
0dbc821628fc 8148047: Move the vtable length field to Klass
mgerdin
parents: 34666
diff changeset
   757
  return in_ByteSize(InstanceKlass::header_size() * wordSize);
0dbc821628fc 8148047: Move the vtable length field to Klass
mgerdin
parents: 34666
diff changeset
   758
}
0dbc821628fc 8148047: Move the vtable length field to Klass
mgerdin
parents: 34666
diff changeset
   759
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 19696
diff changeset
   762
bool Klass::verify_vtable_index(int i) {
33602
16053580a684 8139163: InstanceKlass::cast passes through NULL
coleenp
parents: 33576
diff changeset
   763
  int limit = vtable_length()/vtableEntry::size();
16053580a684 8139163: InstanceKlass::cast passes through NULL
coleenp
parents: 33576
diff changeset
   764
  assert(i >= 0 && i < limit, "index %d out of bounds %d", i, limit);
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 19696
diff changeset
   765
  return true;
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 19696
diff changeset
   766
}
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 19696
diff changeset
   767
49056
91ada5977172 8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents: 47580
diff changeset
   768
#endif // PRODUCT
91ada5977172 8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents: 47580
diff changeset
   769
50761
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   770
// Caller needs ResourceMark
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   771
// joint_in_module_of_loader provides an optimization if 2 classes are in
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   772
// the same module to succinctly print out relevant information about their
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   773
// module name and class loader's name_and_id for error messages.
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   774
// Format:
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   775
//   <fully-qualified-external-class-name1> and <fully-qualified-external-class-name2>
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   776
//                      are in module <module-name>[@<version>]
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   777
//                      of loader <loader-name_and_id>[, parent loader <parent-loader-name_and_id>]
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   778
const char* Klass::joint_in_module_of_loader(const Klass* class2, bool include_parent_loader) const {
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   779
  assert(module() == class2->module(), "classes do not have the same module");
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   780
  const char* class1_name = external_name();
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   781
  size_t len = strlen(class1_name) + 1;
49056
91ada5977172 8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents: 47580
diff changeset
   782
50761
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   783
  const char* class2_description = class2->class_in_module_of_loader(true, include_parent_loader);
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   784
  len += strlen(class2_description);
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   785
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   786
  len += strlen(" and ");
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   787
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   788
  char* joint_description = NEW_RESOURCE_ARRAY_RETURN_NULL(char, len);
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   789
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   790
  // Just return the FQN if error when allocating string
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   791
  if (joint_description == NULL) {
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   792
    return class1_name;
49056
91ada5977172 8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents: 47580
diff changeset
   793
  }
91ada5977172 8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents: 47580
diff changeset
   794
50761
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   795
  jio_snprintf(joint_description, len, "%s and %s",
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   796
               class1_name,
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   797
               class2_description);
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   798
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   799
  return joint_description;
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   800
}
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   801
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   802
// Caller needs ResourceMark
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   803
// class_in_module_of_loader provides a standard way to include
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   804
// relevant information about a class, such as its module name as
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   805
// well as its class loader's name_and_id, in error messages and logging.
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   806
// Format:
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   807
//   <fully-qualified-external-class-name> is in module <module-name>[@<version>]
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   808
//                                         of loader <loader-name_and_id>[, parent loader <parent-loader-name_and_id>]
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   809
const char* Klass::class_in_module_of_loader(bool use_are, bool include_parent_loader) const {
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   810
  // 1. fully qualified external name of class
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   811
  const char* klass_name = external_name();
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   812
  size_t len = strlen(klass_name) + 1;
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   813
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   814
  // 2. module name + @version
49056
91ada5977172 8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents: 47580
diff changeset
   815
  const char* module_name = "";
91ada5977172 8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents: 47580
diff changeset
   816
  const char* version = "";
50761
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   817
  bool has_version = false;
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   818
  bool module_is_named = false;
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   819
  const char* module_name_phrase = "";
49056
91ada5977172 8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents: 47580
diff changeset
   820
  const Klass* bottom_klass = is_objArray_klass() ?
50761
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   821
                                ObjArrayKlass::cast(this)->bottom_klass() : this;
49056
91ada5977172 8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents: 47580
diff changeset
   822
  if (bottom_klass->is_instance_klass()) {
91ada5977172 8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents: 47580
diff changeset
   823
    ModuleEntry* module = InstanceKlass::cast(bottom_klass)->module();
91ada5977172 8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents: 47580
diff changeset
   824
    if (module->is_named()) {
50761
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   825
      module_is_named = true;
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   826
      module_name_phrase = "module ";
49056
91ada5977172 8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents: 47580
diff changeset
   827
      module_name = module->name()->as_C_string();
50761
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   828
      len += strlen(module_name);
49056
91ada5977172 8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents: 47580
diff changeset
   829
      // Use version if exists and is not a jdk module
50569
60d66a249db6 8204620: ModuleEntry::is_non_jdk_module() determination for what is a jdk module is incorrect
hseigel
parents: 50532
diff changeset
   830
      if (module->should_show_version()) {
49056
91ada5977172 8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents: 47580
diff changeset
   831
        has_version = true;
91ada5977172 8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents: 47580
diff changeset
   832
        version = module->version()->as_C_string();
50761
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   833
        // Include stlen(version) + 1 for the "@"
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   834
        len += strlen(version) + 1;
49056
91ada5977172 8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents: 47580
diff changeset
   835
      }
50761
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   836
    } else {
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   837
      module_name = UNNAMED_MODULE;
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   838
      len += UNNAMED_MODULE_LEN;
49056
91ada5977172 8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents: 47580
diff changeset
   839
    }
91ada5977172 8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents: 47580
diff changeset
   840
  } else {
50761
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   841
    // klass is an array of primitives, module is java.base
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   842
    module_is_named = true;
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   843
    module_name_phrase = "module ";
49056
91ada5977172 8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents: 47580
diff changeset
   844
    module_name = JAVA_BASE_NAME;
50761
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   845
    len += JAVA_BASE_NAME_LEN;
49056
91ada5977172 8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents: 47580
diff changeset
   846
  }
91ada5977172 8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents: 47580
diff changeset
   847
50761
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   848
  // 3. class loader's name_and_id
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   849
  ClassLoaderData* cld = class_loader_data();
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   850
  assert(cld != NULL, "class_loader_data should not be null");
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   851
  const char* loader_name_and_id = cld->loader_name_and_id();
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   852
  len += strlen(loader_name_and_id);
49056
91ada5977172 8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents: 47580
diff changeset
   853
50761
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   854
  // 4. include parent loader information
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   855
  const char* parent_loader_phrase = "";
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   856
  const char* parent_loader_name_and_id = "";
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   857
  if (include_parent_loader &&
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   858
      !cld->is_builtin_class_loader_data()) {
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   859
    oop parent_loader = java_lang_ClassLoader::parent(class_loader());
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   860
    ClassLoaderData *parent_cld = ClassLoaderData::class_loader_data(parent_loader);
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   861
    assert(parent_cld != NULL, "parent's class loader data should not be null");
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   862
    parent_loader_name_and_id = parent_cld->loader_name_and_id();
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   863
    parent_loader_phrase = ", parent loader ";
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   864
    len += strlen(parent_loader_phrase) + strlen(parent_loader_name_and_id);
49056
91ada5977172 8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents: 47580
diff changeset
   865
  }
91ada5977172 8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents: 47580
diff changeset
   866
50761
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   867
  // Start to construct final full class description string
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   868
  len += ((use_are) ? strlen(" are in ") : strlen(" is in "));
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   869
  len += strlen(module_name_phrase) + strlen(" of loader ");
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   870
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   871
  char* class_description = NEW_RESOURCE_ARRAY_RETURN_NULL(char, len);
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   872
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   873
  // Just return the FQN if error when allocating string
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   874
  if (class_description == NULL) {
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   875
    return klass_name;
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   876
  }
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   877
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   878
  jio_snprintf(class_description, len, "%s %s in %s%s%s%s of loader %s%s%s",
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   879
               klass_name,
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   880
               (use_are) ? "are" : "is",
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   881
               module_name_phrase,
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   882
               module_name,
49056
91ada5977172 8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents: 47580
diff changeset
   883
               (has_version) ? "@" : "",
91ada5977172 8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents: 47580
diff changeset
   884
               (has_version) ? version : "",
50761
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   885
               loader_name_and_id,
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   886
               parent_loader_phrase,
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   887
               parent_loader_name_and_id);
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   888
cb07f4b539fc 8169559: Add class loader names to relevant VM messages
lfoltan
parents: 50752
diff changeset
   889
  return class_description;
49056
91ada5977172 8197780: Null pointer dereference in Klass::is_instance_klass of klass.hpp:532
coleenp
parents: 47580
diff changeset
   890
}