src/share/vm/oops/klassVtable.cpp

Thu, 09 Dec 2010 17:53:22 +0300

author
dsamersoff
date
Thu, 09 Dec 2010 17:53:22 +0300
changeset 2360
642e54d1850a
parent 2314
f95d63e2154a
child 2497
3582bf76420e
permissions
-rw-r--r--

6989076: JVM crashes in klassItable::initialize_itable_for_interface
Summary: hotspot should check protection attribute besides the name and signature of the method when constructing vtable.
Reviewed-by: dcubed

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

mercurial