src/share/vm/oops/klassVtable.cpp

Mon, 29 Apr 2013 16:13:57 -0400

author
hseigel
date
Mon, 29 Apr 2013 16:13:57 -0400
changeset 4987
f258c5828eb8
parent 4840
cd3089a56438
child 4998
08236d966eea
permissions
-rw-r--r--

8011773: Some tests on Interned String crashed JVM with OOM
Summary: Instead of terminating the VM, throw OutOfMemoryError exceptions.
Reviewed-by: coleenp, dholmes

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

mercurial