hotspot/src/share/vm/oops/klassVtable.cpp
author dcubed
Mon, 02 Mar 2009 14:03:03 -0700
changeset 2136 c55428da3cec
parent 670 ddf3e9583f2f
child 2332 5c7b6f4ce0a1
child 2264 55d0115a54fe
permissions -rw-r--r--
6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined Summary: Remove incorrect optimization in klassItable::adjust_method_entries(). Add RedefineClasses() tracing support for obsolete method entry. Reviewed-by: acorn, swamyv
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
670
ddf3e9583f2f 6719955: Update copyright year
xdono
parents: 360
diff changeset
     2
 * Copyright 1997-2008 Sun Microsystems, Inc.  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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
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/_klassVtable.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
inline instanceKlass* klassVtable::ik() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
  Klass* k = _klass()->klass_part();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
  assert(k->oop_is_instance(), "not an instanceKlass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  return (instanceKlass*)k;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// this function computes the vtable size (including the size needed for miranda
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// methods) and the number of miranda methods in this class
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// Note on Miranda methods: Let's say there is a class C that implements
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// interface I.  Let's say there is a method m in I that neither C nor any
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// of its super classes implement (i.e there is no method of any access, with
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// the same name and signature as m), then m is a Miranda method which is
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// entered as a public abstract method in C's vtable.  From then on it should
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// treated as any other public method in C for method over-ride purposes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
void klassVtable::compute_vtable_size_and_num_mirandas(int &vtable_length,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
                                                       int &num_miranda_methods,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
                                                       klassOop super,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
                                                       objArrayOop methods,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
                                                       AccessFlags class_flags,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
                                                       oop classloader,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
                                                       symbolOop classname,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
                                                       objArrayOop local_interfaces
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
                                                       ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  No_Safepoint_Verifier nsv;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  // set up default result values
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  vtable_length = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  num_miranda_methods = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  // start off with super's vtable length
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  instanceKlass* sk = (instanceKlass*)super->klass_part();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  vtable_length = super == NULL ? 0 : sk->vtable_length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  // go thru each method in the methods table to see if it needs a new entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  int len = methods->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  for (int i = 0; i < len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    assert(methods->obj_at(i)->is_method(), "must be a methodOop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    methodOop m = methodOop(methods->obj_at(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    if (needs_new_vtable_entry(m, super, classloader, classname, class_flags)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
      vtable_length += vtableEntry::size(); // we need a new entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  // compute the number of mirandas methods that must be added to the end
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  num_miranda_methods = get_num_mirandas(super, methods, local_interfaces);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  vtable_length += (num_miranda_methods * vtableEntry::size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  if (Universe::is_bootstrapping() && vtable_length == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    // array classes don't have their superclass set correctly during
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    // bootstrapping
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    vtable_length = Universe::base_vtable_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  if (super == NULL && !Universe::is_bootstrapping() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
      vtable_length != Universe::base_vtable_size()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    // Someone is attempting to redefine java.lang.Object incorrectly.  The
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    // only way this should happen is from
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    // SystemDictionary::resolve_from_stream(), which will detect this later
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    // and throw a security exception.  So don't assert here to let
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    // the exception occur.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    vtable_length = Universe::base_vtable_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  assert(super != NULL || vtable_length == Universe::base_vtable_size(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
         "bad vtable size for class Object");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  assert(vtable_length % vtableEntry::size() == 0, "bad vtable length");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  assert(vtable_length >= Universe::base_vtable_size(), "vtable too small");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
int klassVtable::index_of(methodOop m, int len) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  assert(m->vtable_index() >= 0, "do not ask this of non-vtable methods");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  return m->vtable_index();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
int klassVtable::initialize_from_super(KlassHandle super) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  if (super.is_null()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    // copy methods from superKlass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    // can't inherit from array class, so must be instanceKlass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    assert(super->oop_is_instance(), "must be instance klass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    instanceKlass* sk = (instanceKlass*)super()->klass_part();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    klassVtable* superVtable = sk->vtable();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    assert(superVtable->length() <= _length, "vtable too short");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    superVtable->verify(tty, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    superVtable->copy_vtable_to(table());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    if (PrintVtables && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
      tty->print_cr("copy vtable from %s to %s size %d", sk->internal_name(), klass()->internal_name(), _length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    return superVtable->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
// Revised lookup semantics   introduced 1.3 (Kestral beta)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
void klassVtable::initialize_vtable(bool checkconstraints, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  // Note:  Arrays can have intermediate array supers.  Use java_super to skip them.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  KlassHandle super (THREAD, klass()->java_super());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  int nofNewEntries = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  if (PrintVtables && !klass()->oop_is_array()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    tty->print_cr("Initializing: %s", _klass->name()->as_C_string());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  oop* end_of_obj = (oop*)_klass() + _klass()->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  oop* end_of_vtable = (oop*)&table()[_length];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  assert(end_of_vtable <= end_of_obj, "vtable extends beyond end");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  if (Universe::is_bootstrapping()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    // just clear everything
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    for (int i = 0; i < _length; i++) table()[i].clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  int super_vtable_len = initialize_from_super(super);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  if (klass()->oop_is_array()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
    assert(super_vtable_len == _length, "arrays shouldn't introduce new methods");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    assert(_klass->oop_is_instance(), "must be instanceKlass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    objArrayHandle methods(THREAD, ik()->methods());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    int len = methods()->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    int initialized = super_vtable_len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    // update_super_vtable can stop for gc - ensure using handles
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
    for (int i = 0; i < len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
      HandleMark hm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
      assert(methods()->obj_at(i)->is_method(), "must be a methodOop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
      methodHandle mh(THREAD, (methodOop)methods()->obj_at(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
      bool needs_new_entry = update_super_vtable(ik(), mh, super_vtable_len, checkconstraints, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
      if (needs_new_entry) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
        put_method_at(mh(), initialized);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
        mh()->set_vtable_index(initialized); // set primary vtable index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
        initialized++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
    // add miranda methods; it will also update the value of initialized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    fill_in_mirandas(initialized);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    // In class hierachieswhere the accesibility is not increasing (i.e., going from private ->
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    // package_private -> publicprotected), the vtable might actually be smaller than our initial
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    // calculation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    assert(initialized <= _length, "vtable initialization failed");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    for(;initialized < _length; initialized++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
      put_method_at(NULL, initialized);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
    NOT_PRODUCT(verify(tty, true));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
// Interates through the vtables to find the broadest access level. This
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
// will always be monotomic for valid Java programs - but not neccesarily
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
// for incompatible class files.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
klassVtable::AccessType klassVtable::vtable_accessibility_at(int i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  // This vtable is not implementing the specific method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  if (i >= length()) return acc_private;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  // Compute AccessType for current method. public or protected we are done.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  methodOop m = method_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  if (m->is_protected() || m->is_public()) return acc_publicprotected;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  AccessType acc = m->is_package_private() ? acc_package_private : acc_private;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  // Compute AccessType for method in super classes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  klassOop super = klass()->super();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  AccessType super_acc = (super != NULL) ? instanceKlass::cast(klass()->super())->vtable()->vtable_accessibility_at(i)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
                                         : acc_private;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  // Merge
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  return (AccessType)MAX2((int)acc, (int)super_acc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
// Update child's copy of super vtable for overrides
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
// OR return true if a new vtable entry is required
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
// Only called for instanceKlass's, i.e. not for arrays
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
// If that changed, could not use _klass as handle for klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
bool klassVtable::update_super_vtable(instanceKlass* klass, methodHandle target_method, int super_vtable_len, bool checkconstraints, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  bool allocate_new = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  assert(klass->oop_is_instance(), "must be instanceKlass");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  // Initialize the method's vtable index to "nonvirtual".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  // If we allocate a vtable entry, we will update it to a non-negative number.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  target_method()->set_vtable_index(methodOopDesc::nonvirtual_vtable_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  // Static and <init> methods are never in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  if (target_method()->is_static() || target_method()->name() ==  vmSymbols::object_initializer_name()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  if (klass->is_final() || target_method()->is_final()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
    // a final method never needs a new entry; final methods can be statically
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
    // resolved and they have to be present in the vtable only if they override
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    // a super's method, in which case they re-use its entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
    allocate_new = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  // we need a new entry if there is no superclass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  if (klass->super() == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
    return allocate_new;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  // private methods always have a new entry in the vtable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  if (target_method()->is_private()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
    return allocate_new;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  // search through the vtable and update overridden entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  // Since check_signature_loaders acquires SystemDictionary_lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  // which can block for gc, once we are in this loop, use handles, not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  // unhandled oops unless they are reinitialized for each loop
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  // handles for name, signature, klass, target_method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  // not for match_method, holder
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  symbolHandle name(THREAD,target_method()->name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  symbolHandle signature(THREAD,target_method()->signature());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  for(int i = 0; i < super_vtable_len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
    methodOop match_method = method_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
    // Check if method name matches
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
    if (match_method->name() == name() && match_method->signature() == signature()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
      instanceKlass* holder = (THREAD, instanceKlass::cast(match_method->method_holder()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
      // Check if the match_method is accessable from current class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
      bool same_package_init = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
      bool same_package_flag = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
      bool simple_match = match_method->is_public()  || match_method->is_protected();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
      if (!simple_match) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
        same_package_init = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
        same_package_flag = holder->is_same_class_package(_klass->class_loader(), _klass->name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
        simple_match = match_method->is_package_private() && same_package_flag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
      // match_method is the superclass' method. Note we can't override
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
      // and shouldn't access superclass' ACC_PRIVATE methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
      // (although they have been copied into our vtable)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
      // A simple form of this statement is:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
      // if ( (match_method->is_public()  || match_method->is_protected()) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
      //    (match_method->is_package_private() && holder->is_same_class_package(klass->class_loader(), klass->name()))) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
      //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
      // The complexity is introduced it avoid recomputing 'is_same_class_package' which is expensive.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
      if (simple_match) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
        // Check if target_method and match_method has same level of accessibility. The accesibility of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
        // match method is the "most-general" visibility of all entries at it's particular vtable index for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
        // all superclasses. This check must be done before we override the current entry in the vtable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
        AccessType at = vtable_accessibility_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
        bool same_access = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
        if (  (at == acc_publicprotected && (target_method()->is_public() || target_method()->is_protected())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
           || (at == acc_package_private && (target_method()->is_package_private() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
                                            (( same_package_init && same_package_flag) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
                                             (!same_package_init && holder->is_same_class_package(_klass->class_loader(), _klass->name()))))))) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
           same_access = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
        if (checkconstraints) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
        // Override vtable entry if passes loader constraint check
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
        // if loader constraint checking requested
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
        // No need to visit his super, since he and his super
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
        // have already made any needed loader constraints.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
        // Since loader constraints are transitive, it is enough
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
        // to link to the first super, and we get all the others.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
          symbolHandle signature(THREAD, target_method()->signature());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
          Handle this_loader(THREAD, _klass->class_loader());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
          instanceKlassHandle super_klass(THREAD, _klass->super());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
          Handle super_loader(THREAD, super_klass->class_loader());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
          if (this_loader() != super_loader()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
            ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
            char* failed_type_name =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
              SystemDictionary::check_signature_loaders(signature, this_loader,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
                                                        super_loader, true,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
                                                        CHECK_(false));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
            if (failed_type_name != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
              const char* msg = "loader constraint violation: when resolving "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
                "overridden method \"%s\" the class loader (instance"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
                " of %s) of the current class, %s, and its superclass loader "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
                "(instance of %s), have different Class objects for the type "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
                "%s used in the signature";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
              char* sig = target_method()->name_and_sig_as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
              const char* loader1 = SystemDictionary::loader_name(this_loader());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
              char* current = _klass->name()->as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
              const char* loader2 = SystemDictionary::loader_name(super_loader());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
              size_t buflen = strlen(msg) + strlen(sig) + strlen(loader1) +
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
                strlen(current) + strlen(loader2) + strlen(failed_type_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
              char* buf = NEW_RESOURCE_ARRAY_IN_THREAD(THREAD, char, buflen);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
              jio_snprintf(buf, buflen, msg, sig, loader1, current, loader2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
                           failed_type_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
              THROW_MSG_(vmSymbols::java_lang_LinkageError(), buf, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
        put_method_at(target_method(), i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
        if (same_access) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
          // target and match has same accessiblity - share entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
          allocate_new = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
          target_method()->set_vtable_index(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
          if (PrintVtables && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
            AccessType targetacc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
            if (target_method()->is_protected() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
                 target_method()->is_public()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
               targetacc =  acc_publicprotected;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
            } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
              targetacc = target_method()->is_package_private() ? acc_package_private : acc_private;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
            tty->print_cr("overriding with %s::%s index %d, original flags: %x overriders flags: %x",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
             _klass->internal_name(), (target_method() != NULL) ?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
             target_method()->name()->as_C_string() : "<NULL>", i,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
             at, targetacc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
#endif /*PRODUCT*/
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
        } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
          if (PrintVtables && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
            AccessType targetacc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
            if (target_method()->is_protected() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
                 target_method()->is_public()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
               targetacc =  acc_publicprotected;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
            } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
              targetacc = target_method()->is_package_private() ? acc_package_private : acc_private;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
            tty->print_cr("override %s %s::%s at index %d, original flags: %x overriders flags: %x",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
            allocate_new ? "+ new" : "only",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
            _klass->internal_name(), (target_method() != NULL) ?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
            target_method()->name()->as_C_string() : "<NULL>", i,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
            at, targetacc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
           }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
#endif /*PRODUCT*/
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  return allocate_new;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
void klassVtable::put_method_at(methodOop m, int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  assert(m->is_oop_or_null(), "Not an oop or null");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  if (PrintVtables && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
    tty->print_cr("adding %s::%s at index %d", _klass->internal_name(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
      (m != NULL) ? m->name()->as_C_string() : "<NULL>", index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  assert(unchecked_method_at(index)->is_oop_or_null(), "Not an oop or null");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  table()[index].set(m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
// Find out if a method "m" with superclass "super", loader "classloader" and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
// name "classname" needs a new vtable entry.  Let P be a class package defined
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
// by "classloader" and "classname".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
// NOTE: The logic used here is very similar to the one used for computing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
// the vtables indices for a method. We cannot directly use that function because,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
// when the Universe is boostrapping, a super's vtable might not be initialized.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
bool klassVtable::needs_new_vtable_entry(methodOop target_method,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
                                         klassOop super,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
                                         oop classloader,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
                                         symbolOop classname,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
                                         AccessFlags class_flags) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  if ((class_flags.is_final() || target_method->is_final()) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
      // a final method never needs a new entry; final methods can be statically
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
      // resolved and they have to be present in the vtable only if they override
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
      // a super's method, in which case they re-use its entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
      (target_method->is_static()) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
      // static methods don't need to be in vtable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
      (target_method->name() ==  vmSymbols::object_initializer_name())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
      // <init> is never called dynamically-bound
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
      ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  // we need a new entry if there is no superclass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  if (super == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  // private methods always have a new entry in the vtable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  if (target_method->is_private()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  // search through the super class hierarchy to see if we need
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  // a new entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  symbolOop name = target_method->name();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  symbolOop signature = target_method->signature();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  klassOop k = super;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  methodOop match_method = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  instanceKlass *holder = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  while (k != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
    // lookup through the hierarchy for a method with matching name and sign.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
    match_method = instanceKlass::cast(k)->lookup_method(name, signature);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
    if (match_method == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
      break; // we still have to search for a matching miranda method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
    // get the class holding the matching method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
    holder = instanceKlass::cast(match_method->method_holder());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
    if (!match_method->is_static()) { // we want only instance method matches
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
      if ((target_method->is_public() || target_method->is_protected()) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
          (match_method->is_public()  || match_method->is_protected())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
        // target and match are public/protected; we do not need a new entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
        return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
      if (target_method->is_package_private() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
          match_method->is_package_private() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
          holder->is_same_class_package(classloader, classname)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
        // target and match are P private; we do not need a new entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
        return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
    k = holder->super(); // haven't found a match yet; continue to look
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  // if the target method is public or protected it may have a matching
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  // miranda method in the super, whose entry it should re-use.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  if (target_method->is_public() || target_method->is_protected()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
    instanceKlass *sk = instanceKlass::cast(super);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
    if (sk->has_miranda_methods()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
      if (sk->lookup_method_in_all_interfaces(name, signature) != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
        return false;  // found a matching miranda; we do not need a new entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  return true; // found no match; we need a new entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
// Support for miranda methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
// get the vtable index of a miranda method with matching "name" and "signature"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
int klassVtable::index_of_miranda(symbolOop name, symbolOop signature) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  // search from the bottom, might be faster
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  for (int i = (length() - 1); i >= 0; i--) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
    methodOop m = table()[i].method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
    if (is_miranda_entry_at(i) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
        m->name() == name && m->signature() == signature) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
      return i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  return methodOopDesc::invalid_vtable_index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
// check if an entry is miranda
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
bool klassVtable::is_miranda_entry_at(int i) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  methodOop m = method_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  klassOop method_holder = m->method_holder();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  instanceKlass *mhk = instanceKlass::cast(method_holder);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  // miranda methods are interface methods in a class's vtable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  if (mhk->is_interface()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
    assert(m->is_public() && m->is_abstract(), "should be public and abstract");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
    assert(ik()->implements_interface(method_holder) , "this class should implement the interface");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
    assert(is_miranda(m, ik()->methods(), ik()->super()), "should be a miranda_method");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
// check if a method is a miranda method, given a class's methods table and it's super
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
// the caller must make sure that the method belongs to an interface implemented by the class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
bool klassVtable::is_miranda(methodOop m, objArrayOop class_methods, klassOop super) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  symbolOop name = m->name();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  symbolOop signature = m->signature();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  if (instanceKlass::find_method(class_methods, name, signature) == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
     // did not find it in the method table of the current class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
    if (super == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
      // super doesn't exist
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
      return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
      if (instanceKlass::cast(super)->lookup_method(name, signature) == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
        // super class hierarchy does not implement it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
        return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
void klassVtable::add_new_mirandas_to_list(GrowableArray<methodOop>* list_of_current_mirandas,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
                                           objArrayOop current_interface_methods,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
                                           objArrayOop class_methods,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
                                           klassOop super) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  // iterate thru the current interface's method to see if it a miranda
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  int num_methods = current_interface_methods->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  for (int i = 0; i < num_methods; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
    methodOop im = methodOop(current_interface_methods->obj_at(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
    bool is_duplicate = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
    int num_of_current_mirandas = list_of_current_mirandas->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
    // check for duplicate mirandas in different interfaces we implement
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
    for (int j = 0; j < num_of_current_mirandas; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
      methodOop miranda = list_of_current_mirandas->at(j);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
      if ((im->name() == miranda->name()) &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
          (im->signature() == miranda->signature())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
        is_duplicate = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
        break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
    if (!is_duplicate) { // we don't want duplicate miranda entries in the vtable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
      if (is_miranda(im, class_methods, super)) { // is it a miranda at all?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
        instanceKlass *sk = instanceKlass::cast(super);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
        // check if it is a duplicate of a super's miranda
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
        if (sk->lookup_method_in_all_interfaces(im->name(), im->signature()) == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
          list_of_current_mirandas->append(im);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
void klassVtable::get_mirandas(GrowableArray<methodOop>* mirandas,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
                               klassOop super, objArrayOop class_methods,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
                               objArrayOop local_interfaces) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  assert((mirandas->length() == 0) , "current mirandas must be 0");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  // iterate thru the local interfaces looking for a miranda
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  int num_local_ifs = local_interfaces->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  for (int i = 0; i < num_local_ifs; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
    instanceKlass *ik = instanceKlass::cast(klassOop(local_interfaces->obj_at(i)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
    add_new_mirandas_to_list(mirandas, ik->methods(), class_methods, super);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
    // iterate thru each local's super interfaces
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
    objArrayOop super_ifs = ik->transitive_interfaces();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
    int num_super_ifs = super_ifs->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
    for (int j = 0; j < num_super_ifs; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
      instanceKlass *sik = instanceKlass::cast(klassOop(super_ifs->obj_at(j)));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
      add_new_mirandas_to_list(mirandas, sik->methods(), class_methods, super);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
// get number of mirandas
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
int klassVtable::get_num_mirandas(klassOop super, objArrayOop class_methods, objArrayOop local_interfaces) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  GrowableArray<methodOop>* mirandas = new GrowableArray<methodOop>(20);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
  get_mirandas(mirandas, super, class_methods, local_interfaces);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  return mirandas->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
// fill in mirandas
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
void klassVtable::fill_in_mirandas(int& initialized) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  GrowableArray<methodOop>* mirandas = new GrowableArray<methodOop>(20);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  instanceKlass *this_ik = ik();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  get_mirandas(mirandas, this_ik->super(), this_ik->methods(), this_ik->local_interfaces());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
  int num_mirandas = mirandas->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  for (int i = 0; i < num_mirandas; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
    put_method_at(mirandas->at(i), initialized);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
    initialized++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
void klassVtable::copy_vtable_to(vtableEntry* start) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  Copy::disjoint_words((HeapWord*)table(), (HeapWord*)start, _length * vtableEntry::size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
void klassVtable::adjust_method_entries(methodOop* old_methods, methodOop* new_methods,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
                                        int methods_length, bool * trace_name_printed) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
  // search the vtable for uses of either obsolete or EMCP methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  for (int j = 0; j < methods_length; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
    methodOop old_method = old_methods[j];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
    methodOop new_method = new_methods[j];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
    // In the vast majority of cases we could get the vtable index
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
    // by using:  old_method->vtable_index()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
    // However, there are rare cases, eg. sun.awt.X11.XDecoratedPeer.getX()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
    // in sun.awt.X11.XFramePeer where methods occur more than once in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
    // vtable, so, alas, we must do an exhaustive search.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
    for (int index = 0; index < length(); index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
      if (unchecked_method_at(index) == old_method) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
        put_method_at(new_method, index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
        if (RC_TRACE_IN_RANGE(0x00100000, 0x00400000)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
          if (!(*trace_name_printed)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
            // RC_TRACE_MESG macro has an embedded ResourceMark
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
            RC_TRACE_MESG(("adjust: name=%s",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
                           Klass::cast(old_method->method_holder())->external_name()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
            *trace_name_printed = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
          // RC_TRACE macro has an embedded ResourceMark
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
          RC_TRACE(0x00100000, ("vtable method update: %s(%s)",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
                                new_method->name()->as_C_string(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
                                new_method->signature()->as_C_string()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
// Garbage collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
void klassVtable::oop_follow_contents() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
  int len = length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
  for (int i = 0; i < len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
    MarkSweep::mark_and_push(adr_method_at(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
#ifndef SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
void klassVtable::oop_follow_contents(ParCompactionManager* cm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
  int len = length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  for (int i = 0; i < len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
    PSParallelCompact::mark_and_push(cm, adr_method_at(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
#endif // SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
void klassVtable::oop_adjust_pointers() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
  int len = length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
  for (int i = 0; i < len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
    MarkSweep::adjust_pointer(adr_method_at(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
#ifndef SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
void klassVtable::oop_update_pointers(ParCompactionManager* cm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
  const int n = length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
  for (int i = 0; i < n; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
    PSParallelCompact::adjust_pointer(adr_method_at(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
void klassVtable::oop_update_pointers(ParCompactionManager* cm,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
                                      HeapWord* beg_addr, HeapWord* end_addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
  const int n = length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
  const int entry_size = vtableEntry::size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
  int beg_idx = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
  HeapWord* const method_0 = (HeapWord*)adr_method_at(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  if (beg_addr > method_0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
    // it's safe to use cast, as we have guarantees on vtable size to be sane
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
    beg_idx = int((pointer_delta(beg_addr, method_0) + entry_size - 1) / entry_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
  oop* const beg_oop = adr_method_at(beg_idx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
  oop* const end_oop = MIN2((oop*)end_addr, adr_method_at(n));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
  for (oop* cur_oop = beg_oop; cur_oop < end_oop; cur_oop += entry_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
    PSParallelCompact::adjust_pointer(cur_oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
#endif // SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
// Iterators
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
void klassVtable::oop_oop_iterate(OopClosure* blk) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
  int len = length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
  for (int i = 0; i < len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
    blk->do_oop(adr_method_at(i));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
void klassVtable::oop_oop_iterate_m(OopClosure* blk, MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
  int len = length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
  int i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
  for (i = 0; i < len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
    if ((HeapWord*)adr_method_at(i) >= mr.start()) break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
  for (; i < len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
    oop* adr = adr_method_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
    if ((HeapWord*)adr < mr.end()) blk->do_oop(adr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
//-----------------------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
// Itable code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
// Initialize a itableMethodEntry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
void itableMethodEntry::initialize(methodOop m) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
  if (m == NULL) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
  _method = m;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
klassItable::klassItable(instanceKlassHandle klass) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
  _klass = klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
  if (klass->itable_length() > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
    itableOffsetEntry* offset_entry = (itableOffsetEntry*)klass->start_of_itable();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
    if (offset_entry  != NULL && offset_entry->interface_klass() != NULL) { // Check that itable is initialized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
      // First offset entry points to the first method_entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
      intptr_t* method_entry  = (intptr_t *)(((address)klass->as_klassOop()) + offset_entry->offset());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
      intptr_t* end         = klass->end_of_itable();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
      _table_offset      = (intptr_t*)offset_entry - (intptr_t*)klass->as_klassOop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
      _size_offset_table = (method_entry - ((intptr_t*)offset_entry)) / itableOffsetEntry::size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
      _size_method_table = (end - method_entry)                  / itableMethodEntry::size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
      assert(_table_offset >= 0 && _size_offset_table >= 0 && _size_method_table >= 0, "wrong computation");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   738
  // The length of the itable was either zero, or it has not yet been initialized.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
  _table_offset      = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
  _size_offset_table = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
  _size_method_table = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
// Garbage Collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
void klassItable::oop_follow_contents() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
  // offset table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
  itableOffsetEntry* ioe = offset_entry(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
  for(int i = 0; i < _size_offset_table; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
    MarkSweep::mark_and_push((oop*)&ioe->_interface);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
    ioe++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
  // method table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
  itableMethodEntry* ime = method_entry(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
  for(int j = 0; j < _size_method_table; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
    MarkSweep::mark_and_push((oop*)&ime->_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
    ime++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
#ifndef SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
void klassItable::oop_follow_contents(ParCompactionManager* cm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
  // offset table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
  itableOffsetEntry* ioe = offset_entry(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
  for(int i = 0; i < _size_offset_table; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
    PSParallelCompact::mark_and_push(cm, (oop*)&ioe->_interface);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
    ioe++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
  // method table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
  itableMethodEntry* ime = method_entry(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
  for(int j = 0; j < _size_method_table; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
    PSParallelCompact::mark_and_push(cm, (oop*)&ime->_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
    ime++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
#endif // SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
void klassItable::oop_adjust_pointers() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
  // offset table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
  itableOffsetEntry* ioe = offset_entry(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
  for(int i = 0; i < _size_offset_table; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
    MarkSweep::adjust_pointer((oop*)&ioe->_interface);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
    ioe++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
  // method table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
  itableMethodEntry* ime = method_entry(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
  for(int j = 0; j < _size_method_table; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
    MarkSweep::adjust_pointer((oop*)&ime->_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
    ime++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
#ifndef SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
void klassItable::oop_update_pointers(ParCompactionManager* cm) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
  // offset table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
  itableOffsetEntry* ioe = offset_entry(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
  for(int i = 0; i < _size_offset_table; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
    PSParallelCompact::adjust_pointer((oop*)&ioe->_interface);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
    ioe++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
  // method table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
  itableMethodEntry* ime = method_entry(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
  for(int j = 0; j < _size_method_table; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
    PSParallelCompact::adjust_pointer((oop*)&ime->_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
    ime++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
void klassItable::oop_update_pointers(ParCompactionManager* cm,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
                                      HeapWord* beg_addr, HeapWord* end_addr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
  // offset table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
  itableOffsetEntry* ioe = offset_entry(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
  for(int i = 0; i < _size_offset_table; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
    oop* p = (oop*)&ioe->_interface;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
    PSParallelCompact::adjust_pointer(p, beg_addr, end_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
    ioe++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
  // method table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
  itableMethodEntry* ime = method_entry(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
  for(int j = 0; j < _size_method_table; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
    oop* p = (oop*)&ime->_method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
    PSParallelCompact::adjust_pointer(p, beg_addr, end_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
    ime++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
#endif // SERIALGC
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
// Iterators
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
void klassItable::oop_oop_iterate(OopClosure* blk) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
  // offset table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
  itableOffsetEntry* ioe = offset_entry(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
  for(int i = 0; i < _size_offset_table; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
    blk->do_oop((oop*)&ioe->_interface);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
    ioe++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
  // method table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
  itableMethodEntry* ime = method_entry(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
  for(int j = 0; j < _size_method_table; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
    blk->do_oop((oop*)&ime->_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
    ime++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
void klassItable::oop_oop_iterate_m(OopClosure* blk, MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
  // offset table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
  itableOffsetEntry* ioe = offset_entry(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
  for(int i = 0; i < _size_offset_table; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
    oop* adr = (oop*)&ioe->_interface;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
    if (mr.contains(adr)) blk->do_oop(adr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
    ioe++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
  // method table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
  itableMethodEntry* ime = method_entry(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
  for(int j = 0; j < _size_method_table; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
    oop* adr = (oop*)&ime->_method;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
    if (mr.contains(adr)) blk->do_oop(adr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
    ime++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
static int initialize_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
// Initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
void klassItable::initialize_itable(bool checkconstraints, TRAPS) {
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   873
  // Cannot be setup doing bootstrapping, interfaces don't have
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   874
  // itables, and klass with only ones entry have empty itables
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   875
  if (Universe::is_bootstrapping() ||
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   876
      _klass->is_interface() ||
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   877
      _klass->itable_length() == itableOffsetEntry::size()) return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   879
  // There's alway an extra itable entry so we can null-terminate it.
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   880
  guarantee(size_offset_table() >= 1, "too small");
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   881
  int num_interfaces = size_offset_table() - 1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
  if (num_interfaces > 0) {
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   883
    if (TraceItables) tty->print_cr("%3d: Initializing itables for %s", ++initialize_count,
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   884
                                    _klass->name()->as_C_string());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
    // Interate through all interfaces
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
    int i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
    for(i = 0; i < num_interfaces; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
      itableOffsetEntry* ioe = offset_entry(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
      KlassHandle interf_h (THREAD, ioe->interface_klass());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
      assert(interf_h() != NULL && ioe->offset() != 0, "bad offset entry in itable");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
      initialize_itable_for_interface(ioe->offset(), interf_h, checkconstraints, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
  }
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   897
  // Check that the last entry is empty
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   898
  itableOffsetEntry* ioe = offset_entry(size_offset_table() - 1);
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   899
  guarantee(ioe->interface_klass() == NULL && ioe->offset() == 0, "terminator entry missing");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
void klassItable::initialize_itable_for_interface(int method_table_offset, KlassHandle interf_h, bool checkconstraints, TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
  objArrayHandle methods(THREAD, instanceKlass::cast(interf_h())->methods());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
  int nof_methods = methods()->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
  HandleMark hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
  KlassHandle klass = _klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
  assert(nof_methods > 0, "at least one method must exist for interface to be in vtable")
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
  Handle interface_loader (THREAD, instanceKlass::cast(interf_h())->class_loader());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
  int ime_num = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
  // Skip first methodOop if it is a class initializer
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
  int i = ((methodOop)methods()->obj_at(0))->name() != vmSymbols::class_initializer_name() ? 0 : 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
  // m, method_name, method_signature, klass reset each loop so they
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
  // don't need preserving across check_signature_loaders call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
  // methods needs a handle in case of gc from check_signature_loaders
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
  for(; i < nof_methods; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
    methodOop m = (methodOop)methods()->obj_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
    symbolOop method_name = m->name();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
    symbolOop method_signature = m->signature();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
    // This is same code as in Linkresolver::lookup_instance_method_in_klasses
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
    methodOop target = klass->uncached_lookup_method(method_name, method_signature);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
    while (target != NULL && target->is_static()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
      // continue with recursive lookup through the superclass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
      klassOop super = Klass::cast(target->method_holder())->super();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
      target = (super == NULL) ? methodOop(NULL) : Klass::cast(super)->uncached_lookup_method(method_name, method_signature);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
    if (target == NULL || !target->is_public() || target->is_abstract()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
      // Entry do not resolve. Leave it empty
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
      // Entry did resolve, check loader constraints before initializing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
      // if checkconstraints requested
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
      methodHandle  target_h (THREAD, target); // preserve across gc
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
      if (checkconstraints) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
        Handle method_holder_loader (THREAD, instanceKlass::cast(target->method_holder())->class_loader());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
        if (method_holder_loader() != interface_loader()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
          ResourceMark rm(THREAD);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
          char* failed_type_name =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
            SystemDictionary::check_signature_loaders(method_signature,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
                                                      method_holder_loader,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
                                                      interface_loader,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
                                                      true, CHECK);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
          if (failed_type_name != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
            const char* msg = "loader constraint violation in interface "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
              "itable initialization: when resolving method \"%s\" the class"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
              " loader (instance of %s) of the current class, %s, "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
              "and the class loader (instance of %s) for interface "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
              "%s have different Class objects for the type %s "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
              "used in the signature";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
            char* sig = target_h()->name_and_sig_as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
            const char* loader1 = SystemDictionary::loader_name(method_holder_loader());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
            char* current = klass->name()->as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
            const char* loader2 = SystemDictionary::loader_name(interface_loader());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
            char* iface = instanceKlass::cast(interf_h())->name()->as_C_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
            size_t buflen = strlen(msg) + strlen(sig) + strlen(loader1) +
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
              strlen(current) + strlen(loader2) + strlen(iface) +
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
              strlen(failed_type_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
            char* buf = NEW_RESOURCE_ARRAY_IN_THREAD(THREAD, char, buflen);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
            jio_snprintf(buf, buflen, msg, sig, loader1, current, loader2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
                         iface, failed_type_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
            THROW_MSG(vmSymbols::java_lang_LinkageError(), buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
      // ime may have moved during GC so recalculate address
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
      itableOffsetEntry::method_entry(_klass(), method_table_offset)[ime_num].initialize(target_h());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
    // Progress to next entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
    ime_num++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
   976
// Update entry for specific methodOop
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
void klassItable::initialize_with_method(methodOop m) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
  itableMethodEntry* ime = method_entry(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
  for(int i = 0; i < _size_method_table; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
    if (ime->method() == m) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
      ime->initialize(m);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
    ime++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
void klassItable::adjust_method_entries(methodOop* old_methods, methodOop* new_methods,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
                                        int methods_length, bool * trace_name_printed) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
  // search the itable for uses of either obsolete or EMCP methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
  for (int j = 0; j < methods_length; j++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
    methodOop old_method = old_methods[j];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
    methodOop new_method = new_methods[j];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
    itableMethodEntry* ime = method_entry(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
2136
c55428da3cec 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 670
diff changeset
   995
    // The itable can describe more than one interface and the same
c55428da3cec 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 670
diff changeset
   996
    // method signature can be specified by more than one interface.
c55428da3cec 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 670
diff changeset
   997
    // This means we have to do an exhaustive search to find all the
c55428da3cec 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 670
diff changeset
   998
    // old_method references.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
    for (int i = 0; i < _size_method_table; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
      if (ime->method() == old_method) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
        ime->initialize(new_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
        if (RC_TRACE_IN_RANGE(0x00100000, 0x00400000)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
          if (!(*trace_name_printed)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
            // RC_TRACE_MESG macro has an embedded ResourceMark
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
            RC_TRACE_MESG(("adjust: name=%s",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
              Klass::cast(old_method->method_holder())->external_name()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
            *trace_name_printed = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
          // RC_TRACE macro has an embedded ResourceMark
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
          RC_TRACE(0x00200000, ("itable method update: %s(%s)",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
            new_method->name()->as_C_string(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
            new_method->signature()->as_C_string()));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
      ime++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
// Setup
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
class InterfaceVisiterClosure : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
  virtual void doit(klassOop intf, int method_count) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
// Visit all interfaces with at-least one method (excluding <clinit>)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
void visit_all_interfaces(objArrayOop transitive_intf, InterfaceVisiterClosure *blk) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
  // Handle array argument
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
  for(int i = 0; i < transitive_intf->length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
    klassOop intf = (klassOop)transitive_intf->obj_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
    assert(Klass::cast(intf)->is_interface(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
    // Find no. of methods excluding a <clinit>
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
    int method_count = instanceKlass::cast(intf)->methods()->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
    if (method_count > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
      methodOop m = (methodOop)instanceKlass::cast(intf)->methods()->obj_at(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
      assert(m != NULL && m->is_method(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
      if (m->name() == vmSymbols::object_initializer_name()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
        method_count--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
    // Only count interfaces with at least one method
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
    if (method_count > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
      blk->doit(intf, method_count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
class CountInterfacesClosure : public InterfaceVisiterClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
  int _nof_methods;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
  int _nof_interfaces;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
   CountInterfacesClosure() { _nof_methods = 0; _nof_interfaces = 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
   int nof_methods() const    { return _nof_methods; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
   int nof_interfaces() const { return _nof_interfaces; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
   void doit(klassOop intf, int method_count) { _nof_methods += method_count; _nof_interfaces++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
class SetupItableClosure : public InterfaceVisiterClosure  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
  itableOffsetEntry* _offset_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
  itableMethodEntry* _method_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
  address            _klass_begin;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
  SetupItableClosure(address klass_begin, itableOffsetEntry* offset_entry, itableMethodEntry* method_entry) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
    _klass_begin  = klass_begin;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
    _offset_entry = offset_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
    _method_entry = method_entry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
  itableMethodEntry* method_entry() const { return _method_entry; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
  void doit(klassOop intf, int method_count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
    int offset = ((address)_method_entry) - _klass_begin;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
    _offset_entry->initialize(intf, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
    _offset_entry++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
    _method_entry += method_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
int klassItable::compute_itable_size(objArrayHandle transitive_interfaces) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
  // Count no of interfaces and total number of interface methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
  CountInterfacesClosure cic;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
  visit_all_interfaces(transitive_interfaces(), &cic);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
  1092
  // There's alway an extra itable entry so we can null-terminate it.
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
  1093
  int itable_size = calc_itable_size(cic.nof_interfaces() + 1, cic.nof_methods());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
  // Statistics
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
  update_stats(itable_size * HeapWordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
  return itable_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
// Fill out offset table and interface klasses into the itable space
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
void klassItable::setup_itable_offset_table(instanceKlassHandle klass) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
  if (klass->itable_length() == 0) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
  assert(!klass->is_interface(), "Should have zero length itable");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
  // Count no of interfaces and total number of interface methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
  CountInterfacesClosure cic;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
  visit_all_interfaces(klass->transitive_interfaces(), &cic);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
  int nof_methods    = cic.nof_methods();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
  int nof_interfaces = cic.nof_interfaces();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
189
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
  1113
  // Add one extra entry so we can null-terminate the table
4248c8e21063 6664627: Merge changes made only in hotspot 11 forward to jdk 7
dcubed
parents: 1
diff changeset
  1114
  nof_interfaces++;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
  assert(compute_itable_size(objArrayHandle(klass->transitive_interfaces())) ==
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
         calc_itable_size(nof_interfaces, nof_methods),
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
         "mismatch calculation of itable size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
  // Fill-out offset table
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
  itableOffsetEntry* ioe = (itableOffsetEntry*)klass->start_of_itable();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
  itableMethodEntry* ime = (itableMethodEntry*)(ioe + nof_interfaces);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
  intptr_t* end               = klass->end_of_itable();
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1124
  assert((oop*)(ime + nof_methods) <= (oop*)klass->start_of_static_fields(), "wrong offset calculation (1)");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 189
diff changeset
  1125
  assert((oop*)(end) == (oop*)(ime + nof_methods),                      "wrong offset calculation (2)");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
  // Visit all interfaces and initialize itable offset table
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
  SetupItableClosure sic((address)klass->as_klassOop(), ioe, ime);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
  visit_all_interfaces(klass->transitive_interfaces(), &sic);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
  ime  = sic.method_entry();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
  oop* v = (oop*) klass->end_of_itable();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
  assert( (oop*)(ime) == v, "wrong offset calculation (2)");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
// m must be a method in an interface
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
int klassItable::compute_itable_index(methodOop m) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
  klassOop intf = m->method_holder();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
  assert(instanceKlass::cast(intf)->is_interface(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
  objArrayOop methods = instanceKlass::cast(intf)->methods();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
  int index = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
  while(methods->obj_at(index) != m) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
    index++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
    assert(index < methods->length(), "should find index for resolve_invoke");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
  // Adjust for <clinit>, which is left out of table if first method
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
  if (methods->length() > 0 && ((methodOop)methods->obj_at(0))->name() == vmSymbols::class_initializer_name()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
    index--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1153
  return index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
void klassVtable::verify(outputStream* st, bool forced) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
  // make sure table is initialized
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1158
  if (!Universe::is_fully_initialized()) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1159
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
  // avoid redundant verifies
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
  if (!forced && _verify_count == Universe::verify_count()) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
  _verify_count = Universe::verify_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
  oop* end_of_obj = (oop*)_klass() + _klass()->size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
  oop* end_of_vtable = (oop *)&table()[_length];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
  if (end_of_vtable > end_of_obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
    fatal1("klass %s: klass object too short (vtable extends beyond end)",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
          _klass->internal_name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1170
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
  for (int i = 0; i < _length; i++) table()[i].verify(this, st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
  // verify consistency with superKlass vtable
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
  klassOop super = _klass->super();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
  if (super != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
    instanceKlass* sk = instanceKlass::cast(super);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
    klassVtable* vt = sk->vtable();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
    for (int i = 0; i < vt->length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
      verify_against(st, vt, i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
void klassVtable::verify_against(outputStream* st, klassVtable* vt, int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
  vtableEntry* vte = &vt->table()[index];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
  if (vte->method()->name()      != table()[index].method()->name() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
      vte->method()->signature() != table()[index].method()->signature()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
    fatal("mismatched name/signature of vtable entries");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
void klassVtable::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
  tty->print("klassVtable for klass %s (length %d):\n", _klass->internal_name(), length());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
  for (int i = 0; i < length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
    table()[i].print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
    tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1199
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1200
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1201
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1202
void vtableEntry::verify(klassVtable* vt, outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1203
  NOT_PRODUCT(FlagSetting fs(IgnoreLockingAssertions, true));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1204
  assert(method() != NULL, "must have set method");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
  method()->verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
  // we sub_type, because it could be a miranda method
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
  if (!vt->klass()->is_subtype_of(method()->method_holder())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1208
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
    print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1210
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1211
    fatal1("vtableEntry %#lx: method is from subclass", this);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1212
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1213
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1214
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1215
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1216
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
void vtableEntry::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1218
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1219
  tty->print("vtableEntry %s: ", method()->name()->as_C_string());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1220
  if (Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1221
    tty->print("m %#lx ", (address)method());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1222
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1223
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
class VtableStats : AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
  static int no_klasses;                // # classes with vtables
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
  static int no_array_klasses;          // # array classes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
  static int no_instance_klasses;       // # instanceKlasses
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1230
  static int sum_of_vtable_len;         // total # of vtable entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
  static int sum_of_array_vtable_len;   // total # of vtable entries in array klasses only
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
  static int fixed;                     // total fixed overhead in bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1233
  static int filler;                    // overhead caused by filler bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1234
  static int entries;                   // total bytes consumed by vtable entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
  static int array_entries;             // total bytes consumed by array vtable entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1237
  static void do_class(klassOop k) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
    Klass* kl = k->klass_part();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1239
    klassVtable* vt = kl->vtable();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1240
    if (vt == NULL) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1241
    no_klasses++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1242
    if (kl->oop_is_instance()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
      no_instance_klasses++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1244
      kl->array_klasses_do(do_class);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1246
    if (kl->oop_is_array()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1247
      no_array_klasses++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1248
      sum_of_array_vtable_len += vt->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1250
    sum_of_vtable_len += vt->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1251
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1253
  static void compute() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
    SystemDictionary::classes_do(do_class);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1255
    fixed  = no_klasses * oopSize;      // vtable length
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1256
    // filler size is a conservative approximation
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1257
    filler = oopSize * (no_klasses - no_instance_klasses) * (sizeof(instanceKlass) - sizeof(arrayKlass) - 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1258
    entries = sizeof(vtableEntry) * sum_of_vtable_len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1259
    array_entries = sizeof(vtableEntry) * sum_of_array_vtable_len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1260
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1261
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
int VtableStats::no_klasses = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1264
int VtableStats::no_array_klasses = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
int VtableStats::no_instance_klasses = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1266
int VtableStats::sum_of_vtable_len = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
int VtableStats::sum_of_array_vtable_len = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1268
int VtableStats::fixed = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1269
int VtableStats::filler = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1270
int VtableStats::entries = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1271
int VtableStats::array_entries = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1272
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1273
void klassVtable::print_statistics() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1274
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1275
  HandleMark hm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1276
  VtableStats::compute();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1277
  tty->print_cr("vtable statistics:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1278
  tty->print_cr("%6d classes (%d instance, %d array)", VtableStats::no_klasses, VtableStats::no_instance_klasses, VtableStats::no_array_klasses);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1279
  int total = VtableStats::fixed + VtableStats::filler + VtableStats::entries;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1280
  tty->print_cr("%6d bytes fixed overhead (refs + vtable object header)", VtableStats::fixed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1281
  tty->print_cr("%6d bytes filler overhead", VtableStats::filler);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1282
  tty->print_cr("%6d bytes for vtable entries (%d for arrays)", VtableStats::entries, VtableStats::array_entries);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1283
  tty->print_cr("%6d bytes total", total);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1284
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1285
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1286
bool klassVtable::check_no_old_entries() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1287
  // Check that there really is no entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1288
  for (int i = 0; i < length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1289
    methodOop m = unchecked_method_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1290
    if (m != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1291
        if (m->is_old()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1292
            return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1293
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1294
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1295
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1296
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1297
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1298
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1299
void klassVtable::dump_vtable() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1300
  tty->print_cr("vtable dump --");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1301
  for (int i = 0; i < length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1302
    methodOop m = unchecked_method_at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1303
    if (m != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1304
      tty->print("      (%5d)  ", i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1305
      m->access_flags().print_on(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1306
      tty->print(" --  ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1307
      m->print_name(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1308
      tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1309
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1311
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1312
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
int  klassItable::_total_classes;   // Total no. of classes with itables
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1314
long klassItable::_total_size;      // Total no. of bytes used for itables
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1315
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1316
void klassItable::print_statistics() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1317
 tty->print_cr("itable statistics:");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1318
 tty->print_cr("%6d classes with itables", _total_classes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1319
 tty->print_cr("%6d K uses for itables (average by class: %d bytes)", _total_size / K, _total_size / _total_classes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1321
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1322
#endif // PRODUCT