hotspot/src/share/vm/oops/klass.cpp
author trims
Thu, 27 May 2010 19:08:38 -0700
changeset 5547 f4b087cbb361
parent 4584 e2a449e8cc6f
child 6176 4d9030fe341f
permissions -rw-r--r--
6941466: Oracle rebranding changes for Hotspot repositories Summary: Change all the Sun copyrights to Oracle copyright Reviewed-by: ohair
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4584
diff changeset
     2
 * Copyright (c) 1997, 2008, 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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
# include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
# include "incls/_klass.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
bool Klass::is_subclass_of(klassOop k) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
  // Run up the super chain and check
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  klassOop t = as_klassOop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  if (t == k) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  t = Klass::cast(t)->super();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  while (t != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
    if (t == k) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
    t = Klass::cast(t)->super();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
bool Klass::search_secondary_supers(klassOop k) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  // Put some extra logic here out-of-line, before the search proper.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  // This cuts down the size of the inline method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  // This is necessary, since I am never in my own secondary_super list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  if (this->as_klassOop() == k)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  // Scan the array-of-objects for a match
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  int cnt = secondary_supers()->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  for (int i = 0; i < cnt; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    if (secondary_supers()->obj_at(i) == k) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
      ((Klass*)this)->set_secondary_super_cache(k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
// Return self, except for abstract classes with exactly 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
// implementor.  Then return the 1 concrete implementation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
Klass *Klass::up_cast_abstract() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  Klass *r = this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  while( r->is_abstract() ) {   // Receiver is abstract?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    Klass *s = r->subklass();   // Check for exactly 1 subklass
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    if( !s || s->next_sibling() ) // Oops; wrong count; give up
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
      return this;              // Return 'this' as a no-progress flag
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    r = s;                    // Loop till find concrete class
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  return r;                   // Return the 1 concrete class
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
2131
98f9cef66a34 6810672: Comment typos
twisti
parents: 1550
diff changeset
    74
// Find LCA in class hierarchy
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
Klass *Klass::LCA( Klass *k2 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  Klass *k1 = this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  while( 1 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    if( k1->is_subtype_of(k2->as_klassOop()) ) return k2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    if( k2->is_subtype_of(k1->as_klassOop()) ) return k1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    k1 = k1->super()->klass_part();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    k2 = k2->super()->klass_part();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
void Klass::check_valid_for_instantiation(bool throwError, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  THROW_MSG(throwError ? vmSymbols::java_lang_InstantiationError()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
            : vmSymbols::java_lang_InstantiationException(), external_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
void Klass::copy_array(arrayOop s, int src_pos, arrayOop d, int dst_pos, int length, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  THROW(vmSymbols::java_lang_ArrayStoreException());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
void Klass::initialize(TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
bool Klass::compute_is_subtype_of(klassOop k) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  assert(k->is_klass(), "argument must be a class");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  return is_subclass_of(k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
methodOop Klass::uncached_lookup_method(symbolOop name, symbolOop signature) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  tty->print_cr("Error: uncached_lookup_method called on a klass oop."
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
                " Likely error: reflection method does not correctly"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
                " wrap return value in a mirror object.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
klassOop Klass::base_create_klass_oop(KlassHandle& klass, int size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
                                      const Klass_vtbl& vtbl, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  size = align_object_size(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  // allocate and initialize vtable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  Klass*   kl = (Klass*) vtbl.allocate_permanent(klass, size, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  klassOop k  = kl->as_klassOop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  { // Preinitialize supertype information.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    // A later call to initialize_supers() may update these settings:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    kl->set_super(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    for (juint i = 0; i < Klass::primary_super_limit(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
      kl->_primary_supers[i] = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    kl->set_secondary_supers(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    oop_store_without_check((oop*) &kl->_primary_supers[0], k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    kl->set_super_check_offset(primary_supers_offset_in_bytes() + sizeof(oopDesc));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  kl->set_java_mirror(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  kl->set_modifier_flags(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  kl->set_layout_helper(Klass::_lh_neutral_value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  kl->set_name(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  AccessFlags af;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  af.set_flags(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  kl->set_access_flags(af);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  kl->set_subklass(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  kl->set_next_sibling(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  kl->set_alloc_count(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  kl->set_alloc_size(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  kl->set_prototype_header(markOopDesc::prototype());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  kl->set_biased_lock_revocation_count(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  kl->set_last_biased_lock_bulk_revocation_time(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  return k;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
KlassHandle Klass::base_create_klass(KlassHandle& klass, int size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
                                     const Klass_vtbl& vtbl, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  klassOop ek = base_create_klass_oop(klass, size, vtbl, THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  return KlassHandle(THREAD, ek);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
void Klass_vtbl::post_new_init_klass(KlassHandle& klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
                                     klassOop new_klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
                                     int size) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  assert(!new_klass->klass_part()->null_vtbl(), "Not a complete klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  CollectedHeap::post_allocation_install_obj_klass(klass, new_klass, size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
void* Klass_vtbl::operator new(size_t ignored, KlassHandle& klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
                               int size, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  // The vtable pointer is installed during the execution of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  // constructors in the call to permanent_obj_allocate().  Delay
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  // the installation of the klass pointer into the new klass "k"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  // until after the vtable pointer has been installed (i.e., until
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  // after the return of permanent_obj_allocate().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  klassOop k =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    (klassOop) CollectedHeap::permanent_obj_allocate_no_klass_install(klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
      size, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  return k->klass_part();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
jint Klass::array_layout_helper(BasicType etype) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  assert(etype >= T_BOOLEAN && etype <= T_OBJECT, "valid etype");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  // Note that T_ARRAY is not allowed here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  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
   185
  int  esize = type2aelembytes(etype);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  bool isobj = (etype == T_OBJECT);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  int  tag   =  isobj ? _lh_array_tag_obj_value : _lh_array_tag_type_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  int lh = array_layout_helper(tag, hsize, etype, exact_log2(esize));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  assert(lh < (int)_lh_neutral_value, "must look like an array layout");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  assert(layout_helper_is_javaArray(lh), "correct kind");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  assert(layout_helper_is_objArray(lh) == isobj, "correct kind");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  assert(layout_helper_is_typeArray(lh) == !isobj, "correct kind");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  assert(layout_helper_header_size(lh) == hsize, "correct decode");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  assert(layout_helper_element_type(lh) == etype, "correct decode");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  assert(1 << layout_helper_log2_element_size(lh) == esize, "correct decode");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  return lh;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
bool Klass::can_be_primary_super_slow() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  if (super() == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  else if (super()->klass_part()->super_depth() >= primary_super_limit()-1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
void Klass::initialize_supers(klassOop k, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  if (FastSuperclassLimit == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
    // None of the other machinery matters.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    set_super(k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  if (k == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    set_super(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
    oop_store_without_check((oop*) &_primary_supers[0], (oop) this->as_klassOop());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
    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
   220
  } else if (k != super() || k == SystemDictionary::Object_klass()) {
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4094
diff changeset
   221
    assert(super() == NULL || super() == SystemDictionary::Object_klass(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
           "initialize this only once to a non-trivial value");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
    set_super(k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
    Klass* sup = k->klass_part();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    int sup_depth = sup->super_depth();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    juint my_depth  = MIN2(sup_depth + 1, (int)primary_super_limit());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
    if (!can_be_primary_super_slow())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
      my_depth = primary_super_limit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
    for (juint i = 0; i < my_depth; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
      oop_store_without_check((oop*) &_primary_supers[i], (oop) sup->_primary_supers[i]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
    klassOop *super_check_cell;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
    if (my_depth < primary_super_limit()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
      oop_store_without_check((oop*) &_primary_supers[my_depth], (oop) this->as_klassOop());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
      super_check_cell = &_primary_supers[my_depth];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
      // Overflow of the primary_supers array forces me to be secondary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
      super_check_cell = &_secondary_super_cache;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
    set_super_check_offset((address)super_check_cell - (address) this->as_klassOop());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
      juint j = super_depth();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
      assert(j == my_depth, "computed accessor gets right answer");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
      klassOop t = as_klassOop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
      while (!Klass::cast(t)->can_be_primary_super()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
        t = Klass::cast(t)->super();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
        j = Klass::cast(t)->super_depth();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
      for (juint j1 = j+1; j1 < primary_super_limit(); j1++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
        assert(primary_super_of_depth(j1) == NULL, "super list padding");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
      while (t != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
        assert(primary_super_of_depth(j) == t, "super list initialization");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
        t = Klass::cast(t)->super();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
        --j;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
      assert(j == (juint)-1, "correct depth count");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  if (secondary_supers() == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
    KlassHandle this_kh (THREAD, this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
    // Now compute the list of secondary supertypes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
    // Secondaries can occasionally be on the super chain,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
    // if the inline "_primary_supers" array overflows.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
    int extras = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
    klassOop p;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
    for (p = super(); !(p == NULL || p->klass_part()->can_be_primary_super()); p = p->klass_part()->super()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
      ++extras;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
    // Compute the "real" non-extra secondaries.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
    objArrayOop secondary_oops = compute_secondary_supers(extras, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
    objArrayHandle secondaries (THREAD, secondary_oops);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
    // Store the extra secondaries in the first array positions:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
    int fillp = extras;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
    for (p = this_kh->super(); !(p == NULL || p->klass_part()->can_be_primary_super()); p = p->klass_part()->super()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
      int i;                    // Scan for overflow primaries being duplicates of 2nd'arys
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
      // This happens frequently for very deeply nested arrays: the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
      // primary superclass chain overflows into the secondary.  The
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
      // secondary list contains the element_klass's secondaries with
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
      // an extra array dimension added.  If the element_klass's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
      // secondary list already contains some primary overflows, they
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
      // (with the extra level of array-ness) will collide with the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
      // normal primary superclass overflows.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
      for( i = extras; i < secondaries->length(); i++ )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
        if( secondaries->obj_at(i) == p )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
          break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
      if( i < secondaries->length() )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
        continue;               // It's a dup, don't put it in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
      secondaries->obj_at_put(--fillp, p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
    // See if we had some dup's, so the array has holes in it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
    if( fillp > 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
      // Pack the array.  Drop the old secondaries array on the floor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
      // and let GC reclaim it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
      objArrayOop s2 = oopFactory::new_system_objArray(secondaries->length() - fillp, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
      for( int i = 0; i < s2->length(); i++ )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
        s2->obj_at_put( i, secondaries->obj_at(i+fillp) );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
      secondaries = objArrayHandle(THREAD, s2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  #ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
    if (secondaries() != Universe::the_array_interfaces_array()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
      // We must not copy any NULL placeholders left over from bootstrap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
      for (int j = 0; j < secondaries->length(); j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
        assert(secondaries->obj_at(j) != NULL, "correct bootstrapping order");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
    this_kh->set_secondary_supers(secondaries());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
objArrayOop Klass::compute_secondary_supers(int num_extra_slots, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  assert(num_extra_slots == 0, "override for complex klasses");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  return Universe::the_empty_system_obj_array();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
Klass* Klass::subklass() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  return _subklass == NULL ? NULL : Klass::cast(_subklass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
instanceKlass* Klass::superklass() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  assert(super() == NULL || super()->klass_part()->oop_is_instance(), "must be instance klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  return _super == NULL ? NULL : instanceKlass::cast(_super);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
Klass* Klass::next_sibling() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  return _next_sibling == NULL ? NULL : Klass::cast(_next_sibling);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
void Klass::set_subklass(klassOop s) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  assert(s != as_klassOop(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  oop_store_without_check((oop*)&_subklass, s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
void Klass::set_next_sibling(klassOop s) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  assert(s != as_klassOop(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  oop_store_without_check((oop*)&_next_sibling, s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
void Klass::append_to_sibling_list() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  debug_only(if (!SharedSkipVerify) as_klassOop()->verify();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  // add ourselves to superklass' subklass list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  instanceKlass* super = superklass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  if (super == NULL) return;        // special case: class Object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  assert(SharedSkipVerify ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
         (!super->is_interface()    // interfaces cannot be supers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
          && (super->superklass() == NULL || !is_interface())),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
         "an interface can only be a subklass of Object");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  klassOop prev_first_subklass = super->subklass_oop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  if (prev_first_subklass != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
    // set our sibling to be the superklass' previous first subklass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
    set_next_sibling(prev_first_subklass);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  // make ourselves the superklass' first subklass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  super->set_subklass(as_klassOop());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  debug_only(if (!SharedSkipVerify) as_klassOop()->verify();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
void Klass::remove_from_sibling_list() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  // remove receiver from sibling list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  instanceKlass* super = superklass();
4571
80b553bddc26 6914300: ciEnv should export all well known classes
never
parents: 4094
diff changeset
   373
  assert(super != NULL || as_klassOop() == SystemDictionary::Object_klass(), "should have super");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  if (super == NULL) return;        // special case: class Object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  if (super->subklass() == this) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
    // first subklass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
    super->set_subklass(_next_sibling);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
    Klass* sib = super->subklass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
    while (sib->next_sibling() != this) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
      sib = sib->next_sibling();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
    };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
    sib->set_next_sibling(_next_sibling);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
void Klass::follow_weak_klass_links( BoolObjectClosure* is_alive, OopClosure* keep_alive) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  // This klass is alive but the subklass and siblings are not followed/updated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  // We update the subklass link and the subklass' sibling links here.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  // Our own sibling link will be updated by our superclass (which must be alive
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  // since we are).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  assert(is_alive->do_object_b(as_klassOop()), "just checking, this should be live");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  if (ClassUnloading) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
    klassOop sub = subklass_oop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
    if (sub != NULL && !is_alive->do_object_b(sub)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
      // first subklass not alive, find first one alive
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
      do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
        if (TraceClassUnloading && WizardMode) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
          ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
          tty->print_cr("[Unlinking class (subclass) %s]", sub->klass_part()->external_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
        sub = sub->klass_part()->next_sibling_oop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
      } while (sub != NULL && !is_alive->do_object_b(sub));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
      set_subklass(sub);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
    // now update the subklass' sibling list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
    while (sub != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
      klassOop next = sub->klass_part()->next_sibling_oop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
      if (next != NULL && !is_alive->do_object_b(next)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
        // first sibling not alive, find first one alive
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
        do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
          if (TraceClassUnloading && WizardMode) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
            ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
            tty->print_cr("[Unlinking class (sibling) %s]", next->klass_part()->external_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
          next = next->klass_part()->next_sibling_oop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
        } while (next != NULL && !is_alive->do_object_b(next));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
        sub->klass_part()->set_next_sibling(next);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
      sub = next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
    // Always follow subklass and sibling link. This will prevent any klasses from
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
    // being unloaded (all classes are transitively linked from java.lang.Object).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
    keep_alive->do_oop(adr_subklass());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
    keep_alive->do_oop(adr_next_sibling());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
void Klass::remove_unshareable_info() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  if (oop_is_instance()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
    instanceKlass* ik = (instanceKlass*)this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
    if (ik->is_linked()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
      ik->unlink_class();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  set_subklass(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  set_next_sibling(NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
klassOop Klass::array_klass_or_null(int rank) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  EXCEPTION_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  // No exception can be thrown by array_klass_impl when called with or_null == true.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  // (In anycase, the execption mark will fail if it do so)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  return array_klass_impl(true, rank, THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
klassOop Klass::array_klass_or_null() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  EXCEPTION_MARK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  // No exception can be thrown by array_klass_impl when called with or_null == true.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  // (In anycase, the execption mark will fail if it do so)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  return array_klass_impl(true, THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
klassOop Klass::array_klass_impl(bool or_null, int rank, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  fatal("array_klass should be dispatched to instanceKlass, objArrayKlass or typeArrayKlass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
klassOop Klass::array_klass_impl(bool or_null, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
  fatal("array_klass should be dispatched to instanceKlass, objArrayKlass or typeArrayKlass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
void Klass::with_array_klasses_do(void f(klassOop k)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  f(as_klassOop());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
const char* Klass::external_name() const {
1550
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   481
  if (oop_is_instance()) {
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   482
    instanceKlass* ik = (instanceKlass*) this;
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   483
    if (ik->is_anonymous()) {
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   484
      assert(AnonymousClasses, "");
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   485
      intptr_t hash = ik->java_mirror()->identity_hash();
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   486
      char     hash_buf[40];
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   487
      sprintf(hash_buf, "/" UINTX_FORMAT, (uintx)hash);
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   488
      size_t   hash_len = strlen(hash_buf);
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   489
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   490
      size_t result_len = name()->utf8_length();
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   491
      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
   492
      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
   493
      assert(strlen(result) == result_len, "");
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   494
      strcpy(result + result_len, hash_buf);
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   495
      assert(strlen(result) == result_len + hash_len, "");
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   496
      return result;
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   497
    }
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 670
diff changeset
   498
  }
4094
1f424b2b2171 6815692: method handle code needs some cleanup (post-6655638)
jrose
parents: 2131
diff changeset
   499
  if (name() == NULL)  return "<unknown>";
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  return name()->as_klass_external_name();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
4094
1f424b2b2171 6815692: method handle code needs some cleanup (post-6655638)
jrose
parents: 2131
diff changeset
   504
const char* Klass::signature_name() const {
1f424b2b2171 6815692: method handle code needs some cleanup (post-6655638)
jrose
parents: 2131
diff changeset
   505
  if (name() == NULL)  return "<unknown>";
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  return name()->as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
// Unless overridden, modifier_flags is 0.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
jint Klass::compute_modifier_flags(TRAPS) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
int Klass::atomic_incr_biased_lock_revocation_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  return (int) Atomic::add(1, &_biased_lock_revocation_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
// Unless overridden, jvmti_class_status has no flags set.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
jint Klass::jvmti_class_status() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
// Printing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
void Klass::oop_print_on(oop obj, outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  // print title
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  st->print_cr("%s ", internal_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  obj->print_address_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  if (WizardMode) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
     // print header
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
     obj->mark()->print_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  // print class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  st->print(" - klass: ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  obj->klass()->print_value_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
  st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
4584
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 4571
diff changeset
   544
#endif //PRODUCT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
void Klass::oop_print_value_on(oop obj, outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
  // print title
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
  ResourceMark rm;              // Cannot print in debug mode without this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  st->print("%s", internal_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
  obj->print_address_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
// Verification
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
void Klass::oop_verify_on(oop obj, outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
  guarantee(obj->is_oop(),  "should be oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
  guarantee(obj->klass()->is_perm(),  "should be in permspace");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
  guarantee(obj->klass()->is_klass(), "klass field is not a klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
void Klass::oop_verify_old_oop(oop obj, oop* p, bool allow_dirty) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
  /* $$$ I think this functionality should be handled by verification of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  RememberedSet::verify_old_oop(obj, p, allow_dirty, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  the card table. */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
}
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 202
diff changeset
   567
void Klass::oop_verify_old_oop(oop obj, narrowOop* p, bool allow_dirty) { }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
void Klass::verify_vtable_index(int i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  assert(oop_is_instance() || oop_is_array(), "only instanceKlass and arrayKlass have vtables");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  if (oop_is_instance()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
    assert(i>=0 && i<((instanceKlass*)this)->vtable_length()/vtableEntry::size(), "index out of bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
    assert(i>=0 && i<((arrayKlass*)this)->vtable_length()/vtableEntry::size(), "index out of bounds");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
#endif