hotspot/src/share/vm/oops/klass.cpp
author stefank
Fri, 13 Feb 2015 14:37:35 +0100
changeset 29081 c61eb4914428
parent 28731 f7339cba0a6a
child 29702 9ed339a5e096
permissions -rw-r--r--
8072911: Remove includes of oop.inline.hpp from .hpp files Reviewed-by: brutisso, coleenp, jwilhelm, simonis, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
28731
f7339cba0a6a 8067480: Crash in klassItable::initialize_itable_for_interface when running vm.runtime.defmeth.StaticMethodsTest.
lfoltan
parents: 27680
diff changeset
     2
 * Copyright (c) 1997, 2015, 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"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
    26
#include "classfile/javaClasses.hpp"
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
    27
#include "classfile/dictionary.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    28
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    29
#include "classfile/vmSymbols.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
    30
#include "gc_implementation/shared/markSweep.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    31
#include "gc_interface/collectedHeap.inline.hpp"
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14588
diff changeset
    32
#include "memory/heapInspection.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
    33
#include "memory/metadataFactory.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    34
#include "memory/oopFactory.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    35
#include "memory/resourceArea.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    36
#include "oops/instanceKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    37
#include "oops/klass.inline.hpp"
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 28731
diff changeset
    38
#include "oops/oop.inline.hpp"
24351
61b33cc6d3cf 8042195: Introduce umbrella header orderAccess.inline.hpp.
goetz
parents: 24330
diff changeset
    39
#include "runtime/atomic.inline.hpp"
61b33cc6d3cf 8042195: Introduce umbrella header orderAccess.inline.hpp.
goetz
parents: 24330
diff changeset
    40
#include "runtime/orderAccess.inline.hpp"
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17858
diff changeset
    41
#include "trace/traceMacros.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
    42
#include "utilities/stack.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 14588
diff changeset
    43
#include "utilities/macros.hpp"
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 14588
diff changeset
    44
#if INCLUDE_ALL_GCS
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
    45
#include "gc_implementation/g1/g1SATBCardTableModRefBS.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
    46
#include "gc_implementation/parallelScavenge/psParallelCompact.hpp"
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
    47
#include "gc_implementation/parallelScavenge/psPromotionManager.hpp"
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
    48
#include "gc_implementation/parallelScavenge/psScavenge.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 14588
diff changeset
    49
#endif // INCLUDE_ALL_GCS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    51
void Klass::set_name(Symbol* n) {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    52
  _name = n;
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    53
  if (_name != NULL) _name->increment_refcount();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    54
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
17370
59a0620561fa 8003557: NPG: Klass* const k should be const Klass* k.
minqi
parents: 16352
diff changeset
    56
bool Klass::is_subclass_of(const Klass* k) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  // Run up the super chain and check
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
    58
  if (this == k) return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
    60
  Klass* t = const_cast<Klass*>(this)->super();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  while (t != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    if (t == k) return true;
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14078
diff changeset
    64
    t = t->super();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
    69
bool Klass::search_secondary_supers(Klass* k) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  // Put some extra logic here out-of-line, before the search proper.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  // This cuts down the size of the inline method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  // 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
    74
  if (this == k)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  // Scan the array-of-objects for a match
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  int cnt = secondary_supers()->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  for (int i = 0; i < cnt; i++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
    79
    if (secondary_supers()->at(i) == k) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
      ((Klass*)this)->set_secondary_super_cache(k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
// Return self, except for abstract classes with exactly 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
// implementor.  Then return the 1 concrete implementation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
Klass *Klass::up_cast_abstract() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  Klass *r = this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  while( r->is_abstract() ) {   // Receiver is abstract?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    Klass *s = r->subklass();   // Check for exactly 1 subklass
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    if( !s || s->next_sibling() ) // Oops; wrong count; give up
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
      return this;              // Return 'this' as a no-progress flag
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    r = s;                    // Loop till find concrete class
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  return r;                   // Return the 1 concrete class
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 1550
diff changeset
   100
// Find LCA in class hierarchy
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
Klass *Klass::LCA( Klass *k2 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  Klass *k1 = this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  while( 1 ) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   104
    if( k1->is_subtype_of(k2) ) return k2;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   105
    if( k2->is_subtype_of(k1) ) return k1;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   106
    k1 = k1->super();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   107
    k2 = k2->super();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
void Klass::check_valid_for_instantiation(bool throwError, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  THROW_MSG(throwError ? vmSymbols::java_lang_InstantiationError()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
            : vmSymbols::java_lang_InstantiationException(), external_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
void Klass::copy_array(arrayOop s, int src_pos, arrayOop d, int dst_pos, int length, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  THROW(vmSymbols::java_lang_ArrayStoreException());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
void Klass::initialize(TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   128
bool Klass::compute_is_subtype_of(Klass* k) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  assert(k->is_klass(), "argument must be a class");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  return is_subclass_of(k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
27020
a7c8010446c2 8036805: Correct linker method lookup.
lfoltan
parents: 26135
diff changeset
   133
Klass* Klass::find_field(Symbol* name, Symbol* sig, fieldDescriptor* fd) const {
a7c8010446c2 8036805: Correct linker method lookup.
lfoltan
parents: 26135
diff changeset
   134
#ifdef ASSERT
a7c8010446c2 8036805: Correct linker method lookup.
lfoltan
parents: 26135
diff changeset
   135
  tty->print_cr("Error: find_field called on a klass oop."
a7c8010446c2 8036805: Correct linker method lookup.
lfoltan
parents: 26135
diff changeset
   136
                " Likely error: reflection method does not correctly"
a7c8010446c2 8036805: Correct linker method lookup.
lfoltan
parents: 26135
diff changeset
   137
                " wrap return value in a mirror object.");
a7c8010446c2 8036805: Correct linker method lookup.
lfoltan
parents: 26135
diff changeset
   138
#endif
a7c8010446c2 8036805: Correct linker method lookup.
lfoltan
parents: 26135
diff changeset
   139
  ShouldNotReachHere();
a7c8010446c2 8036805: Correct linker method lookup.
lfoltan
parents: 26135
diff changeset
   140
  return NULL;
a7c8010446c2 8036805: Correct linker method lookup.
lfoltan
parents: 26135
diff changeset
   141
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
28731
f7339cba0a6a 8067480: Crash in klassItable::initialize_itable_for_interface when running vm.runtime.defmeth.StaticMethodsTest.
lfoltan
parents: 27680
diff changeset
   143
Method* Klass::uncached_lookup_method(Symbol* name, Symbol* signature, OverpassLookupMode overpass_mode) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  tty->print_cr("Error: uncached_lookup_method called on a klass oop."
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
                " Likely error: reflection method does not correctly"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
                " wrap return value in a mirror object.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
19696
bd5a0131bde1 8021954: VM SIGSEGV during classloading on MacOS; hs_err_pid file produced
coleenp
parents: 18687
diff changeset
   153
void* Klass::operator new(size_t size, ClassLoaderData* loader_data, size_t word_size, TRAPS) throw() {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   154
  return Metaspace::allocate(loader_data, word_size, /*read_only*/false,
27680
8ecc0871c18e 8064811: Use THREAD instead of CHECK_NULL in return statements
stefank
parents: 27020
diff changeset
   155
                             MetaspaceObj::ClassType, THREAD);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   156
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   157
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   158
Klass::Klass() {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   159
  Klass* k = this;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
15928
f9d5c6e4107f 8003553: NPG: metaspace objects should be zeroed in constructors
coleenp
parents: 15484
diff changeset
   161
  // Preinitialize supertype information.
f9d5c6e4107f 8003553: NPG: metaspace objects should be zeroed in constructors
coleenp
parents: 15484
diff changeset
   162
  // A later call to initialize_supers() may update these settings:
f9d5c6e4107f 8003553: NPG: metaspace objects should be zeroed in constructors
coleenp
parents: 15484
diff changeset
   163
  set_super(NULL);
f9d5c6e4107f 8003553: NPG: metaspace objects should be zeroed in constructors
coleenp
parents: 15484
diff changeset
   164
  for (juint i = 0; i < Klass::primary_super_limit(); i++) {
f9d5c6e4107f 8003553: NPG: metaspace objects should be zeroed in constructors
coleenp
parents: 15484
diff changeset
   165
    _primary_supers[i] = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  }
15928
f9d5c6e4107f 8003553: NPG: metaspace objects should be zeroed in constructors
coleenp
parents: 15484
diff changeset
   167
  set_secondary_supers(NULL);
f9d5c6e4107f 8003553: NPG: metaspace objects should be zeroed in constructors
coleenp
parents: 15484
diff changeset
   168
  set_secondary_super_cache(NULL);
f9d5c6e4107f 8003553: NPG: metaspace objects should be zeroed in constructors
coleenp
parents: 15484
diff changeset
   169
  _primary_supers[0] = k;
f9d5c6e4107f 8003553: NPG: metaspace objects should be zeroed in constructors
coleenp
parents: 15484
diff changeset
   170
  set_super_check_offset(in_bytes(primary_supers_offset()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   172
  // The constructor is used from init_self_patching_vtbl_list,
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   173
  // which doesn't zero out the memory before calling the constructor.
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   174
  // Need to set the field explicitly to not hit an assert that the field
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   175
  // should be NULL before setting it.
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   176
  _java_mirror = NULL;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   177
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   178
  set_modifier_flags(0);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   179
  set_layout_helper(Klass::_lh_neutral_value);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   180
  set_name(NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  AccessFlags af;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  af.set_flags(0);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   183
  set_access_flags(af);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   184
  set_subklass(NULL);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   185
  set_next_sibling(NULL);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   186
  set_next_link(NULL);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17858
diff changeset
   187
  TRACE_INIT_ID(this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   189
  set_prototype_header(markOopDesc::prototype());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   190
  set_biased_lock_revocation_count(0);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   191
  set_last_biased_lock_bulk_revocation_time(0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   193
  // The klass doesn't have any references at this point.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   194
  clear_modified_oops();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   195
  clear_accumulated_modified_oops();
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25492
diff changeset
   196
  _shared_class_path_index = -1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
jint Klass::array_layout_helper(BasicType etype) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  assert(etype >= T_BOOLEAN && etype <= T_OBJECT, "valid etype");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  // Note that T_ARRAY is not allowed here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  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
   203
  int  esize = type2aelembytes(etype);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  bool isobj = (etype == T_OBJECT);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  int  tag   =  isobj ? _lh_array_tag_obj_value : _lh_array_tag_type_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  int lh = array_layout_helper(tag, hsize, etype, exact_log2(esize));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  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
   209
  assert(layout_helper_is_array(lh), "correct kind");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  assert(layout_helper_is_objArray(lh) == isobj, "correct kind");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  assert(layout_helper_is_typeArray(lh) == !isobj, "correct kind");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  assert(layout_helper_header_size(lh) == hsize, "correct decode");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  assert(layout_helper_element_type(lh) == etype, "correct decode");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  assert(1 << layout_helper_log2_element_size(lh) == esize, "correct decode");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  return lh;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
bool Klass::can_be_primary_super_slow() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  if (super() == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    return true;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   222
  else if (super()->super_depth() >= primary_super_limit()-1)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   228
void Klass::initialize_supers(Klass* k, TRAPS) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  if (FastSuperclassLimit == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    // None of the other machinery matters.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    set_super(k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  if (k == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    set_super(NULL);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   236
    _primary_supers[0] = this;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    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
   238
  } else if (k != super() || k == SystemDictionary::Object_klass()) {
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4094
diff changeset
   239
    assert(super() == NULL || super() == SystemDictionary::Object_klass(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
           "initialize this only once to a non-trivial value");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
    set_super(k);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   242
    Klass* sup = k;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    int sup_depth = sup->super_depth();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    juint my_depth  = MIN2(sup_depth + 1, (int)primary_super_limit());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
    if (!can_be_primary_super_slow())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
      my_depth = primary_super_limit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
    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
   248
      _primary_supers[i] = sup->_primary_supers[i];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
    }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   250
    Klass* *super_check_cell;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
    if (my_depth < primary_super_limit()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   252
      _primary_supers[my_depth] = this;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
      super_check_cell = &_primary_supers[my_depth];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
      // Overflow of the primary_supers array forces me to be secondary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
      super_check_cell = &_secondary_super_cache;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
    }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   258
    set_super_check_offset((address)super_check_cell - (address) this);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
      juint j = super_depth();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
      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
   264
      Klass* t = this;
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14078
diff changeset
   265
      while (!t->can_be_primary_super()) {
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14078
diff changeset
   266
        t = t->super();
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14078
diff changeset
   267
        j = t->super_depth();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
      for (juint j1 = j+1; j1 < primary_super_limit(); j1++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
        assert(primary_super_of_depth(j1) == NULL, "super list padding");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
      while (t != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
        assert(primary_super_of_depth(j) == t, "super list initialization");
14488
ab48109f7d1b 8001471: Klass::cast() does nothing
hseigel
parents: 14078
diff changeset
   274
        t = t->super();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
        --j;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
      assert(j == (juint)-1, "correct depth count");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  if (secondary_supers() == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
    KlassHandle this_kh (THREAD, this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
    // Now compute the list of secondary supertypes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
    // Secondaries can occasionally be on the super chain,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
    // if the inline "_primary_supers" array overflows.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
    int extras = 0;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   289
    Klass* p;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   290
    for (p = super(); !(p == NULL || p->can_be_primary_super()); p = p->super()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
      ++extras;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   294
    ResourceMark rm(THREAD);  // need to reclaim GrowableArrays allocated below
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   296
    // Compute the "real" non-extra secondaries.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   297
    GrowableArray<Klass*>* secondaries = compute_secondary_supers(extras);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   298
    if (secondaries == NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   299
      // secondary_supers set by compute_secondary_supers
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   300
      return;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   301
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   302
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   303
    GrowableArray<Klass*>* primaries = new GrowableArray<Klass*>(extras);
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
    for (p = this_kh->super(); !(p == NULL || p->can_be_primary_super()); p = p->super()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
      int i;                    // Scan for overflow primaries being duplicates of 2nd'arys
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
      // This happens frequently for very deeply nested arrays: the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
      // primary superclass chain overflows into the secondary.  The
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
      // secondary list contains the element_klass's secondaries with
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
      // an extra array dimension added.  If the element_klass's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
      // secondary list already contains some primary overflows, they
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
      // (with the extra level of array-ness) will collide with the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
      // normal primary superclass overflows.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   315
      for( i = 0; i < secondaries->length(); i++ ) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   316
        if( secondaries->at(i) == p )
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
          break;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   318
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
      if( i < secondaries->length() )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
        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
   321
      primaries->push(p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
    }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   323
    // 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
   324
    // 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
   325
    int new_length = primaries->length() + secondaries->length();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   326
    Array<Klass*>* s2 = MetadataFactory::new_array<Klass*>(
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   327
                                       class_loader_data(), new_length, CHECK);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   328
    int fill_p = primaries->length();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   329
    for (int j = 0; j < fill_p; j++) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   330
      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
   331
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   332
    for( int j = 0; j < secondaries->length(); j++ ) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   333
      s2->at_put(j+fill_p, secondaries->at(j));  // add secondaries on the end.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  #ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
      // 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
   338
    for (int j = 0; j < s2->length(); j++) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   339
      assert(s2->at(j) != NULL, "correct bootstrapping order");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   343
    this_kh->set_secondary_supers(s2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   347
GrowableArray<Klass*>* Klass::compute_secondary_supers(int num_extra_slots) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  assert(num_extra_slots == 0, "override for complex klasses");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   349
  set_secondary_supers(Universe::the_empty_klass_array());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   350
  return NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   354
InstanceKlass* Klass::superklass() const {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   355
  assert(super() == NULL || super()->oop_is_instance(), "must be instance klass");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   356
  return _super == NULL ? NULL : InstanceKlass::cast(_super);
1
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
void Klass::set_subklass(Klass* s) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   360
  assert(s != this, "sanity check");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   361
  _subklass = s;
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_next_sibling(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
  _next_sibling = s;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
void Klass::append_to_sibling_list() {
14078
2b2b8833c422 7199068: NPG: SharedSkipVerify is meaningless
coleenp
parents: 13952
diff changeset
   370
  debug_only(verify();)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  // add ourselves to superklass' subklass list
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   372
  InstanceKlass* super = superklass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  if (super == NULL) return;        // special case: class Object
14078
2b2b8833c422 7199068: NPG: SharedSkipVerify is meaningless
coleenp
parents: 13952
diff changeset
   374
  assert((!super->is_interface()    // interfaces cannot be supers
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
          && (super->superklass() == NULL || !is_interface())),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
         "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
   377
  Klass* prev_first_subklass = super->subklass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  if (prev_first_subklass != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
    // set our sibling to be the superklass' previous first subklass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
    set_next_sibling(prev_first_subklass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  // make ourselves the superklass' first subklass
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   383
  super->set_subklass(this);
14078
2b2b8833c422 7199068: NPG: SharedSkipVerify is meaningless
coleenp
parents: 13952
diff changeset
   384
  debug_only(verify();)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   387
bool Klass::is_loader_alive(BoolObjectClosure* is_alive) {
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 14488
diff changeset
   388
#ifdef ASSERT
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   389
  // The class is alive iff the class loader is alive.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   390
  oop loader = class_loader();
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 14488
diff changeset
   391
  bool loader_alive = (loader == NULL) || is_alive->do_object_b(loader);
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 14488
diff changeset
   392
#endif // ASSERT
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 14488
diff changeset
   393
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 14488
diff changeset
   394
  // The class is alive if it's mirror is alive (which should be marked if the
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 14488
diff changeset
   395
  // loader is alive) unless it's an anoymous class.
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 14488
diff changeset
   396
  bool mirror_alive = is_alive->do_object_b(java_mirror());
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 14488
diff changeset
   397
  assert(!mirror_alive || loader_alive, "loader must be alive if the mirror is"
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 14488
diff changeset
   398
                        " but not the other way around with anonymous classes");
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 14488
diff changeset
   399
  return mirror_alive;
13728
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
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   402
void Klass::clean_weak_klass_links(BoolObjectClosure* is_alive, bool clean_alive_klasses) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   403
  if (!ClassUnloading) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   404
    return;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   405
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   406
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   407
  Klass* root = SystemDictionary::Object_klass();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   408
  Stack<Klass*, mtGC> stack;
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
  stack.push(root);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   411
  while (!stack.is_empty()) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   412
    Klass* current = stack.pop();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   413
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   414
    assert(current->is_loader_alive(is_alive), "just checking, this should be live");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   415
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   416
    // 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
   417
    Klass* sub = current->subklass();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   418
    while (sub != NULL && !sub->is_loader_alive(is_alive)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
#ifndef PRODUCT
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 14488
diff changeset
   420
      if (TraceClassUnloading && WizardMode) {
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 14488
diff changeset
   421
        ResourceMark rm;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   422
        tty->print_cr("[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
   423
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
#endif
23515
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 22908
diff changeset
   425
      sub = sub->next_sibling();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
    }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   427
    current->set_subklass(sub);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   428
    if (sub != NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   429
      stack.push(sub);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   430
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   431
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   432
    // 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
   433
    Klass* sibling = current->next_sibling();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   434
    while (sibling != NULL && !sibling->is_loader_alive(is_alive)) {
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 14488
diff changeset
   435
      if (TraceClassUnloading && WizardMode) {
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 14488
diff changeset
   436
        ResourceMark rm;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   437
        tty->print_cr("[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
   438
      }
23515
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 22908
diff changeset
   439
      sibling = sibling->next_sibling();
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 14488
diff changeset
   440
    }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   441
    current->set_next_sibling(sibling);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   442
    if (sibling != NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   443
      stack.push(sibling);
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 14488
diff changeset
   444
    }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   445
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   446
    // Clean the implementors list and method data.
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   447
    if (clean_alive_klasses && current->oop_is_instance()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   448
      InstanceKlass* ik = InstanceKlass::cast(current);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   449
      ik->clean_implementors_list(is_alive);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   450
      ik->clean_method_data(is_alive);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   455
void Klass::klass_update_barrier_set(oop v) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   456
  record_modified_oops();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   457
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   458
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   459
// This barrier is used by G1 to remember the old oop values, so
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   460
// that we don't forget any objects that were live at the snapshot at
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   461
// the beginning. This function is only used when we write oops into Klasses.
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   462
void Klass::klass_update_barrier_set_pre(oop* p, oop v) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   463
#if INCLUDE_ALL_GCS
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   464
  if (UseG1GC) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   465
    oop obj = *p;
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   466
    if (obj != NULL) {
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   467
      G1SATBCardTableModRefBS::enqueue(obj);
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   468
    }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   469
  }
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   470
#endif
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   471
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   472
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   473
void Klass::klass_oop_store(oop* p, oop v) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   474
  assert(!Universe::heap()->is_in_reserved((void*)p), "Should store pointer into metadata");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   475
  assert(v == NULL || Universe::heap()->is_in_reserved((void*)v), "Should store pointer to an object");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   476
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   477
  // do the store
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   478
  if (always_do_update_barrier) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   479
    klass_oop_store((volatile oop*)p, v);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   480
  } else {
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   481
    klass_update_barrier_set_pre(p, v);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   482
    *p = v;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   483
    klass_update_barrier_set(v);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   484
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   485
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   486
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   487
void Klass::klass_oop_store(volatile oop* p, oop v) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   488
  assert(!Universe::heap()->is_in_reserved((void*)p), "Should store pointer into metadata");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   489
  assert(v == NULL || Universe::heap()->is_in_reserved((void*)v), "Should store pointer to an object");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   490
25492
d27050bdfb04 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 25491
diff changeset
   491
  klass_update_barrier_set_pre((oop*)p, v); // Cast away volatile.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   492
  OrderAccess::release_store_ptr(p, v);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   493
  klass_update_barrier_set(v);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   494
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   495
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   496
void Klass::oops_do(OopClosure* cl) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   497
  cl->do_oop(&_java_mirror);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   498
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
void Klass::remove_unshareable_info() {
23872
536c66fc43d3 8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents: 23515
diff changeset
   501
  assert (DumpSharedSpaces, "only called for DumpSharedSpaces");
536c66fc43d3 8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents: 23515
diff changeset
   502
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  set_subklass(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  set_next_sibling(NULL);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   505
  // Clear the java mirror
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   506
  set_java_mirror(NULL);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   507
  set_next_link(NULL);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   508
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   509
  // 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
   510
  set_class_loader_data(NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25492
diff changeset
   513
void Klass::restore_unshareable_info(ClassLoaderData* loader_data, Handle protection_domain, TRAPS) {
24240
1b9b92b51f60 8041723: Event Based tracing ids to be reassigned for CDS klasses
mgronlun
parents: 23999
diff changeset
   514
  TRACE_INIT_ID(this);
23872
536c66fc43d3 8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents: 23515
diff changeset
   515
  // 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
   516
  // 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
   517
  // modify the CLD list outside a safepoint.
536c66fc43d3 8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents: 23515
diff changeset
   518
  if (class_loader_data() == NULL) {
536c66fc43d3 8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents: 23515
diff changeset
   519
    // 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
   520
    set_class_loader_data(loader_data);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
23872
536c66fc43d3 8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents: 23515
diff changeset
   522
    // 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
   523
    // (same order as class file parsing)
536c66fc43d3 8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents: 23515
diff changeset
   524
    loader_data->add_class(this);
536c66fc43d3 8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents: 23515
diff changeset
   525
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   526
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25492
diff changeset
   527
  // Recreate the class mirror.
23872
536c66fc43d3 8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents: 23515
diff changeset
   528
  // 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
   529
  // 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
   530
  if (java_mirror() == NULL) {
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25492
diff changeset
   531
    Handle loader = loader_data->class_loader();
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25492
diff changeset
   532
    java_lang_Class::create_mirror(this, loader, protection_domain, CHECK);
23872
536c66fc43d3 8028497: SIGSEGV at ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool)
coleenp
parents: 23515
diff changeset
   533
  }
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   534
}
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   535
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   536
Klass* Klass::array_klass_or_null(int rank) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
  EXCEPTION_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  // No exception can be thrown by array_klass_impl when called with or_null == true.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  // (In anycase, the execption mark will fail if it do so)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  return array_klass_impl(true, rank, THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   544
Klass* Klass::array_klass_or_null() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  EXCEPTION_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  // No exception can be thrown by array_klass_impl when called with or_null == true.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
  // (In anycase, the execption mark will fail if it do so)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
  return array_klass_impl(true, THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   552
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
   553
  fatal("array_klass should be dispatched to InstanceKlass, ObjArrayKlass or TypeArrayKlass");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   558
Klass* Klass::array_klass_impl(bool or_null, TRAPS) {
13952
e3cf184080bc 8000213: NPG: Should have renamed arrayKlass and typeArrayKlass
coleenp
parents: 13728
diff changeset
   559
  fatal("array_klass should be dispatched to InstanceKlass, ObjArrayKlass or TypeArrayKlass");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   563
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
   564
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
const char* Klass::external_name() const {
1550
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   566
  if (oop_is_instance()) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   567
    InstanceKlass* ik = (InstanceKlass*) this;
1550
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   568
    if (ik->is_anonymous()) {
14588
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 14488
diff changeset
   569
      intptr_t hash = 0;
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 14488
diff changeset
   570
      if (ik->java_mirror() != NULL) {
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 14488
diff changeset
   571
        // java_mirror might not be created yet, return 0 as hash.
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 14488
diff changeset
   572
        hash = ik->java_mirror()->identity_hash();
8ec26d2d9339 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 14488
diff changeset
   573
      }
1550
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   574
      char     hash_buf[40];
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   575
      sprintf(hash_buf, "/" UINTX_FORMAT, (uintx)hash);
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   576
      size_t   hash_len = strlen(hash_buf);
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   577
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   578
      size_t result_len = name()->utf8_length();
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   579
      char*  result     = NEW_RESOURCE_ARRAY(char, result_len + hash_len + 1);
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   580
      name()->as_klass_external_name(result, (int) result_len + 1);
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   581
      assert(strlen(result) == result_len, "");
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   582
      strcpy(result + result_len, hash_buf);
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   583
      assert(strlen(result) == result_len + hash_len, "");
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   584
      return result;
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   585
    }
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   586
  }
4094
1f424b2b2171 6815692: method handle code needs some cleanup (post-6655638)
jrose
parents: 2131
diff changeset
   587
  if (name() == NULL)  return "<unknown>";
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
  return name()->as_klass_external_name();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
4094
1f424b2b2171 6815692: method handle code needs some cleanup (post-6655638)
jrose
parents: 2131
diff changeset
   592
const char* Klass::signature_name() const {
1f424b2b2171 6815692: method handle code needs some cleanup (post-6655638)
jrose
parents: 2131
diff changeset
   593
  if (name() == NULL)  return "<unknown>";
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  return name()->as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
// Unless overridden, modifier_flags is 0.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
jint Klass::compute_modifier_flags(TRAPS) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
int Klass::atomic_incr_biased_lock_revocation_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
  return (int) Atomic::add(1, &_biased_lock_revocation_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
// Unless overridden, jvmti_class_status has no flags set.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
jint Klass::jvmti_class_status() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   611
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
// Printing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   614
void Klass::print_on(outputStream* st) const {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   615
  ResourceMark rm;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   616
  // print title
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   617
  st->print("%s", internal_name());
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   618
  print_address_on(st);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   619
  st->cr();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   620
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   621
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
void Klass::oop_print_on(oop obj, outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
  // print title
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
  st->print_cr("%s ", internal_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
  obj->print_address_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
  if (WizardMode) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
     // print header
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
     obj->mark()->print_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
  // print class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
  st->print(" - klass: ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
  obj->klass()->print_value_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
  st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
void Klass::oop_print_value_on(oop obj, outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
  // print title
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
  ResourceMark rm;              // Cannot print in debug mode without this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
  st->print("%s", internal_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
  obj->print_address_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
15437
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14588
diff changeset
   646
#if INCLUDE_SERVICES
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14588
diff changeset
   647
// Size Statistics
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14588
diff changeset
   648
void Klass::collect_statistics(KlassSizeStats *sz) const {
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14588
diff changeset
   649
  sz->_klass_bytes = sz->count(this);
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14588
diff changeset
   650
  sz->_mirror_bytes = sz->count(java_mirror());
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14588
diff changeset
   651
  sz->_secondary_supers_bytes = sz->count_array(secondary_supers());
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14588
diff changeset
   652
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14588
diff changeset
   653
  sz->_ro_bytes += sz->_secondary_supers_bytes;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14588
diff changeset
   654
  sz->_rw_bytes += sz->_klass_bytes + sz->_mirror_bytes;
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14588
diff changeset
   655
}
eabd4555d072 6479360: PrintClassHistogram improvements
acorn
parents: 14588
diff changeset
   656
#endif // INCLUDE_SERVICES
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
// Verification
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
22794
f1c014ad3754 8027146: Class loading verification failure if GC occurs in Universe::flush_dependents_on
coleenp
parents: 22201
diff changeset
   660
void Klass::verify_on(outputStream* st) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   661
18439
725ce18186b3 8016325: JVM hangs verifying system dictionary
coleenp
parents: 18025
diff changeset
   662
  // 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
   663
  // 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
   664
  assert(Metaspace::contains((address)this), "Should be");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   665
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   666
  guarantee(this->is_klass(),"should be klass");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   667
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   668
  if (super() != NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   669
    guarantee(super()->is_klass(), "should be klass");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   670
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   671
  if (secondary_super_cache() != NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   672
    Klass* ko = secondary_super_cache();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   673
    guarantee(ko->is_klass(), "should be klass");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   674
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   675
  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
   676
    Klass* ko = _primary_supers[i];
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   677
    if (ko != NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   678
      guarantee(ko->is_klass(), "should be klass");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   679
    }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   680
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   681
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   682
  if (java_mirror() != NULL) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   683
    guarantee(java_mirror()->is_oop(), "should be instance");
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   684
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   685
}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   686
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
void Klass::oop_verify_on(oop obj, outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
  guarantee(obj->is_oop(),  "should be oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
  guarantee(obj->klass()->is_klass(), "klass field is not a klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 19696
diff changeset
   694
bool Klass::verify_vtable_index(int i) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  if (oop_is_instance()) {
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 19696
diff changeset
   696
    int limit = ((InstanceKlass*)this)->vtable_length()/vtableEntry::size();
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 19696
diff changeset
   697
    assert(i >= 0 && i < limit, err_msg("index %d out of bounds %d", i, limit));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  } else {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   699
    assert(oop_is_array(), "Must be");
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 19696
diff changeset
   700
    int limit = ((ArrayKlass*)this)->vtable_length()/vtableEntry::size();
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 19696
diff changeset
   701
    assert(i >= 0 && i < limit, err_msg("index %d out of bounds %d", i, limit));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
  }
20017
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 19696
diff changeset
   703
  return true;
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 19696
diff changeset
   704
}
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 19696
diff changeset
   705
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 19696
diff changeset
   706
bool Klass::verify_itable_index(int i) {
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 19696
diff changeset
   707
  assert(oop_is_instance(), "");
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 19696
diff changeset
   708
  int method_count = klassItable::method_count_for_interface(this);
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 19696
diff changeset
   709
  assert(i >= 0 && i < method_count, "index out of bounds");
81eba62e9048 8014013: CallInfo structure no longer accurately reports the result of a LinkResolver operation
drchase
parents: 19696
diff changeset
   710
  return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
#endif
22908
8c4f06f6ea15 8035746: Add missing Klass::oop_is_instanceClassLoader() function
stefank
parents: 22794
diff changeset
   714
8c4f06f6ea15 8035746: Add missing Klass::oop_is_instanceClassLoader() function
stefank
parents: 22794
diff changeset
   715
/////////////// Unit tests ///////////////
8c4f06f6ea15 8035746: Add missing Klass::oop_is_instanceClassLoader() function
stefank
parents: 22794
diff changeset
   716
8c4f06f6ea15 8035746: Add missing Klass::oop_is_instanceClassLoader() function
stefank
parents: 22794
diff changeset
   717
#ifndef PRODUCT
8c4f06f6ea15 8035746: Add missing Klass::oop_is_instanceClassLoader() function
stefank
parents: 22794
diff changeset
   718
8c4f06f6ea15 8035746: Add missing Klass::oop_is_instanceClassLoader() function
stefank
parents: 22794
diff changeset
   719
class TestKlass {
8c4f06f6ea15 8035746: Add missing Klass::oop_is_instanceClassLoader() function
stefank
parents: 22794
diff changeset
   720
 public:
8c4f06f6ea15 8035746: Add missing Klass::oop_is_instanceClassLoader() function
stefank
parents: 22794
diff changeset
   721
  static void test_oop_is_instanceClassLoader() {
8c4f06f6ea15 8035746: Add missing Klass::oop_is_instanceClassLoader() function
stefank
parents: 22794
diff changeset
   722
    assert(SystemDictionary::ClassLoader_klass()->oop_is_instanceClassLoader(), "assert");
8c4f06f6ea15 8035746: Add missing Klass::oop_is_instanceClassLoader() function
stefank
parents: 22794
diff changeset
   723
    assert(!SystemDictionary::String_klass()->oop_is_instanceClassLoader(), "assert");
8c4f06f6ea15 8035746: Add missing Klass::oop_is_instanceClassLoader() function
stefank
parents: 22794
diff changeset
   724
  }
8c4f06f6ea15 8035746: Add missing Klass::oop_is_instanceClassLoader() function
stefank
parents: 22794
diff changeset
   725
};
8c4f06f6ea15 8035746: Add missing Klass::oop_is_instanceClassLoader() function
stefank
parents: 22794
diff changeset
   726
8c4f06f6ea15 8035746: Add missing Klass::oop_is_instanceClassLoader() function
stefank
parents: 22794
diff changeset
   727
void TestKlass_test() {
8c4f06f6ea15 8035746: Add missing Klass::oop_is_instanceClassLoader() function
stefank
parents: 22794
diff changeset
   728
  TestKlass::test_oop_is_instanceClassLoader();
8c4f06f6ea15 8035746: Add missing Klass::oop_is_instanceClassLoader() function
stefank
parents: 22794
diff changeset
   729
}
8c4f06f6ea15 8035746: Add missing Klass::oop_is_instanceClassLoader() function
stefank
parents: 22794
diff changeset
   730
8c4f06f6ea15 8035746: Add missing Klass::oop_is_instanceClassLoader() function
stefank
parents: 22794
diff changeset
   731
#endif