1 /*
   2  * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "jvm.h"
  27 #include "classfile/javaClasses.hpp"
  28 #include "classfile/systemDictionary.hpp"
  29 #include "classfile/vmSymbols.hpp"
  30 #include "interpreter/linkResolver.hpp"
  31 #include "logging/log.hpp"
  32 #include "logging/logStream.hpp"
  33 #include "memory/metaspaceShared.hpp"
  34 #include "memory/resourceArea.hpp"
  35 #include "memory/universe.hpp"
  36 #include "oops/instanceKlass.hpp"
  37 #include "oops/klassVtable.hpp"
  38 #include "oops/method.hpp"
  39 #include "oops/objArrayOop.hpp"
  40 #include "oops/oop.inline.hpp"
  41 #include "runtime/arguments.hpp"
  42 #include "runtime/flags/flagSetting.hpp"
  43 #include "runtime/handles.inline.hpp"
  44 #include "runtime/safepointVerifiers.hpp"
  45 #include "utilities/copy.hpp"
  46 
  47 inline InstanceKlass* klassVtable::ik() const {
  48   return InstanceKlass::cast(_klass);
  49 }
  50 
  51 bool klassVtable::is_preinitialized_vtable() {
  52   return _klass->is_shared() && !MetaspaceShared::remapped_readwrite();
  53 }
  54 
  55 
  56 // this function computes the vtable size (including the size needed for miranda
  57 // methods) and the number of miranda methods in this class.
  58 // Note on Miranda methods: Let's say there is a class C that implements
  59 // interface I, and none of C's superclasses implements I.
  60 // Let's say there is an abstract method m in I that neither C
  61 // nor any of its super classes implement (i.e there is no method of any access,
  62 // with the same name and signature as m), then m is a Miranda method which is
  63 // entered as a public abstract method in C's vtable.  From then on it should
  64 // treated as any other public method in C for method over-ride purposes.
  65 void klassVtable::compute_vtable_size_and_num_mirandas(
  66     int* vtable_length_ret, int* num_new_mirandas,
  67     GrowableArray<Method*>* all_mirandas, const Klass* super,
  68     Array<Method*>* methods, AccessFlags class_flags, u2 major_version,
  69     Handle classloader, Symbol* classname, Array<Klass*>* local_interfaces,
  70     TRAPS) {
  71   NoSafepointVerifier nsv;
  72 
  73   // set up default result values
  74   int vtable_length = 0;
  75 
  76   // start off with super's vtable length
  77   vtable_length = super == NULL ? 0 : super->vtable_length();
  78 
  79   // go thru each method in the methods table to see if it needs a new entry
  80   int len = methods->length();
  81   for (int i = 0; i < len; i++) {
  82     assert(methods->at(i)->is_method(), "must be a Method*");
  83     methodHandle mh(THREAD, methods->at(i));
  84 
  85     if (needs_new_vtable_entry(mh, super, classloader, classname, class_flags, major_version, THREAD)) {
  86       vtable_length += vtableEntry::size(); // we need a new entry
  87     }
  88   }
  89 
  90   GrowableArray<Method*> new_mirandas(20);
  91   // compute the number of mirandas methods that must be added to the end
  92   get_mirandas(&new_mirandas, all_mirandas, super, methods, NULL, local_interfaces,
  93                class_flags.is_interface());
  94   *num_new_mirandas = new_mirandas.length();
  95 
  96   // Interfaces do not need interface methods in their vtables
  97   // This includes miranda methods and during later processing, default methods
  98   if (!class_flags.is_interface()) {
  99      vtable_length += *num_new_mirandas * vtableEntry::size();
 100   }
 101 
 102   if (Universe::is_bootstrapping() && vtable_length == 0) {
 103     // array classes don't have their superclass set correctly during
 104     // bootstrapping
 105     vtable_length = Universe::base_vtable_size();
 106   }
 107 
 108   if (super == NULL && vtable_length != Universe::base_vtable_size()) {
 109     if (Universe::is_bootstrapping()) {
 110       // Someone is attempting to override java.lang.Object incorrectly on the
 111       // bootclasspath.  The JVM cannot recover from this error including throwing
 112       // an exception
 113       vm_exit_during_initialization("Incompatible definition of java.lang.Object");
 114     } else {
 115       // Someone is attempting to redefine java.lang.Object incorrectly.  The
 116       // only way this should happen is from
 117       // SystemDictionary::resolve_from_stream(), which will detect this later
 118       // and throw a security exception.  So don't assert here to let
 119       // the exception occur.
 120       vtable_length = Universe::base_vtable_size();
 121     }
 122   }
 123   assert(vtable_length % vtableEntry::size() == 0, "bad vtable length");
 124   assert(vtable_length >= Universe::base_vtable_size(), "vtable too small");
 125 
 126   *vtable_length_ret = vtable_length;
 127 }
 128 
 129 int klassVtable::index_of(Method* m, int len) const {
 130   assert(m->has_vtable_index(), "do not ask this of non-vtable methods");
 131   return m->vtable_index();
 132 }
 133 
 134 // Copy super class's vtable to the first part (prefix) of this class's vtable,
 135 // and return the number of entries copied.  Expects that 'super' is the Java
 136 // super class (arrays can have "array" super classes that must be skipped).
 137 int klassVtable::initialize_from_super(Klass* super) {
 138   if (super == NULL) {
 139     return 0;
 140   } else if (is_preinitialized_vtable()) {
 141     // A shared class' vtable is preinitialized at dump time. No need to copy
 142     // methods from super class for shared class, as that was already done
 143     // during archiving time. However, if Jvmti has redefined a class,
 144     // copy super class's vtable in case the super class has changed.
 145     return super->vtable().length();
 146   } else {
 147     // copy methods from superKlass
 148     klassVtable superVtable = super->vtable();
 149     assert(superVtable.length() <= _length, "vtable too short");
 150 #ifdef ASSERT
 151     superVtable.verify(tty, true);
 152 #endif
 153     superVtable.copy_vtable_to(table());
 154     if (log_develop_is_enabled(Trace, vtables)) {
 155       ResourceMark rm;
 156       log_develop_trace(vtables)("copy vtable from %s to %s size %d",
 157                                  super->internal_name(), klass()->internal_name(),
 158                                  _length);
 159     }
 160     return superVtable.length();
 161   }
 162 }
 163 
 164 //
 165 // Revised lookup semantics   introduced 1.3 (Kestrel beta)
 166 void klassVtable::initialize_vtable(bool checkconstraints, TRAPS) {
 167 
 168   // Note:  Arrays can have intermediate array supers.  Use java_super to skip them.
 169   Klass* super = _klass->java_super();
 170   int nofNewEntries = 0;
 171 
 172   bool is_shared = _klass->is_shared();
 173 
 174   if (!_klass->is_array_klass()) {
 175     ResourceMark rm(THREAD);
 176     log_develop_debug(vtables)("Initializing: %s", _klass->name()->as_C_string());
 177   }
 178 
 179 #ifdef ASSERT
 180   oop* end_of_obj = (oop*)_klass + _klass->size();
 181   oop* end_of_vtable = (oop*)&table()[_length];
 182   assert(end_of_vtable <= end_of_obj, "vtable extends beyond end");
 183 #endif
 184 
 185   if (Universe::is_bootstrapping()) {
 186     assert(!is_shared, "sanity");
 187     // just clear everything
 188     for (int i = 0; i < _length; i++) table()[i].clear();
 189     return;
 190   }
 191 
 192   int super_vtable_len = initialize_from_super(super);
 193   if (_klass->is_array_klass()) {
 194     assert(super_vtable_len == _length, "arrays shouldn't introduce new methods");
 195   } else {
 196     assert(_klass->is_instance_klass(), "must be InstanceKlass");
 197 
 198     Array<Method*>* methods = ik()->methods();
 199     int len = methods->length();
 200     int initialized = super_vtable_len;
 201 
 202     // Check each of this class's methods against super;
 203     // if override, replace in copy of super vtable, otherwise append to end
 204     for (int i = 0; i < len; i++) {
 205       // update_inherited_vtable can stop for gc - ensure using handles
 206       HandleMark hm(THREAD);
 207       assert(methods->at(i)->is_method(), "must be a Method*");
 208       methodHandle mh(THREAD, methods->at(i));
 209 
 210       bool needs_new_entry = update_inherited_vtable(ik(), mh, super_vtable_len, -1, checkconstraints, CHECK);
 211 
 212       if (needs_new_entry) {
 213         put_method_at(mh(), initialized);
 214         mh()->set_vtable_index(initialized); // set primary vtable index
 215         initialized++;
 216       }
 217     }
 218 
 219     // update vtable with default_methods
 220     Array<Method*>* default_methods = ik()->default_methods();
 221     if (default_methods != NULL) {
 222       len = default_methods->length();
 223       if (len > 0) {
 224         Array<int>* def_vtable_indices = NULL;
 225         if ((def_vtable_indices = ik()->default_vtable_indices()) == NULL) {
 226           assert(!is_shared, "shared class def_vtable_indices does not exist");
 227           def_vtable_indices = ik()->create_new_default_vtable_indices(len, CHECK);
 228         } else {
 229           assert(def_vtable_indices->length() == len, "reinit vtable len?");
 230         }
 231         for (int i = 0; i < len; i++) {
 232           HandleMark hm(THREAD);
 233           assert(default_methods->at(i)->is_method(), "must be a Method*");
 234           methodHandle mh(THREAD, default_methods->at(i));
 235           assert(!mh->is_private(), "private interface method in the default method list");
 236           bool needs_new_entry = update_inherited_vtable(ik(), mh, super_vtable_len, i, checkconstraints, CHECK);
 237 
 238           // needs new entry
 239           if (needs_new_entry) {
 240             put_method_at(mh(), initialized);
 241             if (is_preinitialized_vtable()) {
 242               // At runtime initialize_vtable is rerun for a shared class
 243               // (loaded by the non-boot loader) as part of link_class_impl().
 244               // The dumptime vtable index should be the same as the runtime index.
 245               assert(def_vtable_indices->at(i) == initialized,
 246                      "dump time vtable index is different from runtime index");
 247             } else {
 248               def_vtable_indices->at_put(i, initialized); //set vtable index
 249             }
 250             initialized++;
 251           }
 252         }
 253       }
 254     }
 255 
 256     // add miranda methods; it will also return the updated initialized
 257     // Interfaces do not need interface methods in their vtables
 258     // This includes miranda methods and during later processing, default methods
 259     if (!ik()->is_interface()) {
 260       initialized = fill_in_mirandas(initialized);
 261     }
 262 
 263     // In class hierarchies where the accessibility is not increasing (i.e., going from private ->
 264     // package_private -> public/protected), the vtable might actually be smaller than our initial
 265     // calculation, for classfile versions for which we do not do transitive override
 266     // calculations.
 267     if (ik()->major_version() >= VTABLE_TRANSITIVE_OVERRIDE_VERSION) {
 268       assert(initialized == _length, "vtable initialization failed");
 269     } else {
 270       assert(initialized <= _length, "vtable initialization failed");
 271       for(;initialized < _length; initialized++) {
 272         table()[initialized].clear();
 273       }
 274     }
 275     NOT_PRODUCT(verify(tty, true));
 276   }
 277 }
 278 
 279 // Called for cases where a method does not override its superclass' vtable entry
 280 // For bytecodes not produced by javac together it is possible that a method does not override
 281 // the superclass's method, but might indirectly override a super-super class's vtable entry
 282 // If none found, return a null superk, else return the superk of the method this does override
 283 // For public and protected methods: if they override a superclass, they will
 284 // also be overridden themselves appropriately.
 285 // Private methods do not override and are not overridden.
 286 // Package Private methods are trickier:
 287 // e.g. P1.A, pub m
 288 // P2.B extends A, package private m
 289 // P1.C extends B, public m
 290 // P1.C.m needs to override P1.A.m and can not override P2.B.m
 291 // Therefore: all package private methods need their own vtable entries for
 292 // them to be the root of an inheritance overriding decision
 293 // Package private methods may also override other vtable entries
 294 InstanceKlass* klassVtable::find_transitive_override(InstanceKlass* initialsuper, const methodHandle& target_method,
 295                             int vtable_index, Handle target_loader, Symbol* target_classname, Thread * THREAD) {
 296   InstanceKlass* superk = initialsuper;
 297   while (superk != NULL && superk->super() != NULL) {
 298     InstanceKlass* supersuperklass = InstanceKlass::cast(superk->super());
 299     klassVtable ssVtable = supersuperklass->vtable();
 300     if (vtable_index < ssVtable.length()) {
 301       Method* super_method = ssVtable.method_at(vtable_index);
 302 #ifndef PRODUCT
 303       Symbol* name= target_method()->name();
 304       Symbol* signature = target_method()->signature();
 305       assert(super_method->name() == name && super_method->signature() == signature, "vtable entry name/sig mismatch");
 306 #endif
 307       if (supersuperklass->is_override(super_method, target_loader, target_classname, THREAD)) {
 308         if (log_develop_is_enabled(Trace, vtables)) {
 309           ResourceMark rm(THREAD);
 310           LogTarget(Trace, vtables) lt;
 311           LogStream ls(lt);
 312           char* sig = target_method()->name_and_sig_as_C_string();
 313           ls.print("transitive overriding superclass %s with %s index %d, original flags: ",
 314                        supersuperklass->internal_name(),
 315                        sig, vtable_index);
 316           super_method->print_linkage_flags(&ls);
 317           ls.print("overriders flags: ");
 318           target_method->print_linkage_flags(&ls);
 319           ls.cr();
 320         }
 321 
 322         break; // return found superk
 323       }
 324     } else  {
 325       // super class has no vtable entry here, stop transitive search
 326       superk = (InstanceKlass*)NULL;
 327       break;
 328     }
 329     // if no override found yet, continue to search up
 330     superk = superk->super() == NULL ? NULL : InstanceKlass::cast(superk->super());
 331   }
 332 
 333   return superk;
 334 }
 335 
 336 static void log_vtables(int i, bool overrides, const methodHandle& target_method,
 337                         Klass* target_klass, Method* super_method,
 338                         Thread* thread) {
 339 #ifndef PRODUCT
 340   if (log_develop_is_enabled(Trace, vtables)) {
 341     ResourceMark rm(thread);
 342     LogTarget(Trace, vtables) lt;
 343     LogStream ls(lt);
 344     char* sig = target_method()->name_and_sig_as_C_string();
 345     if (overrides) {
 346       ls.print("overriding with %s index %d, original flags: ",
 347                    sig, i);
 348     } else {
 349       ls.print("NOT overriding with %s index %d, original flags: ",
 350                    sig, i);
 351     }
 352     super_method->print_linkage_flags(&ls);
 353     ls.print("overriders flags: ");
 354     target_method->print_linkage_flags(&ls);
 355     ls.cr();
 356   }
 357 #endif
 358 }
 359 
 360 // Update child's copy of super vtable for overrides
 361 // OR return true if a new vtable entry is required.
 362 // Only called for InstanceKlass's, i.e. not for arrays
 363 // If that changed, could not use _klass as handle for klass
 364 bool klassVtable::update_inherited_vtable(InstanceKlass* klass, const methodHandle& target_method,
 365                                           int super_vtable_len, int default_index,
 366                                           bool checkconstraints, TRAPS) {
 367   ResourceMark rm;
 368   bool allocate_new = true;
 369   assert(klass->is_instance_klass(), "must be InstanceKlass");
 370 
 371   Array<int>* def_vtable_indices = NULL;
 372   bool is_default = false;
 373 
 374   // default methods are non-private concrete methods in superinterfaces which are added
 375   // to the vtable with their real method_holder.
 376   // Since vtable and itable indices share the same storage, don't touch
 377   // the default method's real vtable/itable index.
 378   // default_vtable_indices stores the vtable value relative to this inheritor
 379   if (default_index >= 0 ) {
 380     is_default = true;
 381     def_vtable_indices = klass->default_vtable_indices();
 382     assert(!target_method()->is_private(), "private interface method flagged as default");
 383     assert(def_vtable_indices != NULL, "def vtable alloc?");
 384     assert(default_index <= def_vtable_indices->length(), "def vtable len?");
 385   } else {
 386     assert(klass == target_method()->method_holder(), "caller resp.");
 387     // Initialize the method's vtable index to "nonvirtual".
 388     // If we allocate a vtable entry, we will update it to a non-negative number.
 389     target_method()->set_vtable_index(Method::nonvirtual_vtable_index);
 390   }
 391 
 392   // Static and <init> methods are never in
 393   if (target_method()->is_static() || target_method()->name() ==  vmSymbols::object_initializer_name()) {
 394     return false;
 395   }
 396 
 397   if (target_method->is_final_method(klass->access_flags())) {
 398     // a final method never needs a new entry; final methods can be statically
 399     // resolved and they have to be present in the vtable only if they override
 400     // a super's method, in which case they re-use its entry
 401     allocate_new = false;
 402   } else if (klass->is_interface()) {
 403     allocate_new = false;  // see note below in needs_new_vtable_entry
 404     // An interface never allocates new vtable slots, only inherits old ones.
 405     // This method will either be assigned its own itable index later,
 406     // or be assigned an inherited vtable index in the loop below.
 407     // default methods inherited by classes store their vtable indices
 408     // in the inheritor's default_vtable_indices.
 409     // default methods inherited by interfaces may already have a
 410     // valid itable index, if so, don't change it.
 411     // Overpass methods in an interface will be assigned an itable index later
 412     // by an inheriting class.
 413     // Private interface methods have no itable index and are always invoked nonvirtually,
 414     // so they retain their nonvirtual_vtable_index value, and therefore can_be_statically_bound()
 415     // will return true.
 416     if ((!is_default || !target_method()->has_itable_index()) && !target_method()->is_private()) {
 417       target_method()->set_vtable_index(Method::pending_itable_index);
 418     }
 419   }
 420 
 421   // we need a new entry if there is no superclass
 422   Klass* super = klass->super();
 423   if (super == NULL) {
 424     return allocate_new;
 425   }
 426 
 427   // private methods in classes always have a new entry in the vtable
 428   // specification interpretation since classic has
 429   // private methods not overriding
 430   // JDK8 adds private methods in interfaces which require invokespecial
 431   if (target_method()->is_private()) {
 432     return allocate_new;
 433   }
 434 
 435   // search through the vtable and update overridden entries
 436   // Since check_signature_loaders acquires SystemDictionary_lock
 437   // which can block for gc, once we are in this loop, use handles
 438   // For classfiles built with >= jdk7, we now look for transitive overrides
 439 
 440   Symbol* name = target_method()->name();
 441   Symbol* signature = target_method()->signature();
 442 
 443   Klass* target_klass = target_method()->method_holder();
 444   if (target_klass == NULL) {
 445     target_klass = _klass;
 446   }
 447 
 448   Handle target_loader(THREAD, target_klass->class_loader());
 449 
 450   Symbol* target_classname = target_klass->name();
 451   for(int i = 0; i < super_vtable_len; i++) {
 452     Method* super_method;
 453     if (is_preinitialized_vtable()) {
 454       // If this is a shared class, the vtable is already in the final state (fully
 455       // initialized). Need to look at the super's vtable.
 456       klassVtable superVtable = super->vtable();
 457       super_method = superVtable.method_at(i);
 458     } else {
 459       super_method = method_at(i);
 460     }
 461     // Check if method name matches.  Ignore match if klass is an interface and the
 462     // matching method is a non-public java.lang.Object method.  (See JVMS 5.4.3.4)
 463     // This is safe because the method at this slot should never get invoked.
 464     // (TBD: put in a method to throw NoSuchMethodError if this slot is ever used.)
 465     if (super_method->name() == name && super_method->signature() == signature &&
 466         (!_klass->is_interface() ||
 467          !SystemDictionary::is_nonpublic_Object_method(super_method))) {
 468 
 469       // get super_klass for method_holder for the found method
 470       InstanceKlass* super_klass =  super_method->method_holder();
 471 
 472       // Whether the method is being overridden
 473       bool overrides = false;
 474 
 475       // private methods are also never overridden
 476       if (!super_method->is_private() &&
 477           (is_default
 478           || ((super_klass->is_override(super_method, target_loader, target_classname, THREAD))
 479           || ((klass->major_version() >= VTABLE_TRANSITIVE_OVERRIDE_VERSION)
 480           && ((super_klass = find_transitive_override(super_klass,
 481                              target_method, i, target_loader,
 482                              target_classname, THREAD))
 483                              != (InstanceKlass*)NULL)))))
 484         {
 485         // Package private methods always need a new entry to root their own
 486         // overriding. They may also override other methods.
 487         if (!target_method()->is_package_private()) {
 488           allocate_new = false;
 489         }
 490 
 491         // Do not check loader constraints for overpass methods because overpass
 492         // methods are created by the jvm to throw exceptions.
 493         if (checkconstraints && !target_method()->is_overpass()) {
 494           // Override vtable entry if passes loader constraint check
 495           // if loader constraint checking requested
 496           // No need to visit his super, since he and his super
 497           // have already made any needed loader constraints.
 498           // Since loader constraints are transitive, it is enough
 499           // to link to the first super, and we get all the others.
 500           Handle super_loader(THREAD, super_klass->class_loader());
 501 
 502           if (!oopDesc::equals(target_loader(), super_loader())) {
 503             ResourceMark rm(THREAD);
 504             Symbol* failed_type_symbol =
 505               SystemDictionary::check_signature_loaders(signature, target_loader,
 506                                                         super_loader, true,
 507                                                         CHECK_(false));
 508             if (failed_type_symbol != NULL) {
 509               stringStream ss;
 510               ss.print("loader constraint violation for class %s: when selecting "
 511                        "overriding method %s the class loader %s of the "
 512                        "selected method's type %s, and the class loader %s for its super "
 513                        "type %s have different Class objects for the type %s used in the signature (%s; %s)",
 514                        klass->external_name(),
 515                        target_method()->name_and_sig_as_C_string(),
 516                        target_klass->class_loader_data()->loader_name_and_id(),
 517                        target_klass->external_name(),
 518                        super_klass->class_loader_data()->loader_name_and_id(),
 519                        super_klass->external_name(),
 520                        failed_type_symbol->as_klass_external_name(),
 521                        target_klass->class_in_module_of_loader(false, true),
 522                        super_klass->class_in_module_of_loader(false, true));
 523               THROW_MSG_(vmSymbols::java_lang_LinkageError(), ss.as_string(), false);
 524             }
 525           }
 526         }
 527 
 528         put_method_at(target_method(), i);
 529         overrides = true;
 530         if (!is_default) {
 531           target_method()->set_vtable_index(i);
 532         } else {
 533           if (def_vtable_indices != NULL) {
 534             if (is_preinitialized_vtable()) {
 535               // At runtime initialize_vtable is rerun as part of link_class_impl()
 536               // for a shared class loaded by the non-boot loader.
 537               // The dumptime vtable index should be the same as the runtime index.
 538               assert(def_vtable_indices->at(default_index) == i,
 539                      "dump time vtable index is different from runtime index");
 540             } else {
 541               def_vtable_indices->at_put(default_index, i);
 542             }
 543           }
 544           assert(super_method->is_default_method() || super_method->is_overpass()
 545                  || super_method->is_abstract(), "default override error");
 546         }
 547       } else {
 548         overrides = false;
 549       }
 550       log_vtables(i, overrides, target_method, target_klass, super_method, THREAD);
 551     }
 552   }
 553   return allocate_new;
 554 }
 555 
 556 void klassVtable::put_method_at(Method* m, int index) {
 557   if (is_preinitialized_vtable()) {
 558     // At runtime initialize_vtable is rerun as part of link_class_impl()
 559     // for shared class loaded by the non-boot loader to obtain the loader
 560     // constraints based on the runtime classloaders' context. The dumptime
 561     // method at the vtable index should be the same as the runtime method.
 562     assert(table()[index].method() == m,
 563            "archived method is different from the runtime method");
 564   } else {
 565     if (log_develop_is_enabled(Trace, vtables)) {
 566       ResourceMark rm;
 567       LogTarget(Trace, vtables) lt;
 568       LogStream ls(lt);
 569       const char* sig = (m != NULL) ? m->name_and_sig_as_C_string() : "<NULL>";
 570       ls.print("adding %s at index %d, flags: ", sig, index);
 571       if (m != NULL) {
 572         m->print_linkage_flags(&ls);
 573       }
 574       ls.cr();
 575     }
 576     table()[index].set(m);
 577   }
 578 }
 579 
 580 // Find out if a method "m" with superclass "super", loader "classloader" and
 581 // name "classname" needs a new vtable entry.  Let P be a class package defined
 582 // by "classloader" and "classname".
 583 // NOTE: The logic used here is very similar to the one used for computing
 584 // the vtables indices for a method. We cannot directly use that function because,
 585 // we allocate the InstanceKlass at load time, and that requires that the
 586 // superclass has been loaded.
 587 // However, the vtable entries are filled in at link time, and therefore
 588 // the superclass' vtable may not yet have been filled in.
 589 bool klassVtable::needs_new_vtable_entry(const methodHandle& target_method,
 590                                          const Klass* super,
 591                                          Handle classloader,
 592                                          Symbol* classname,
 593                                          AccessFlags class_flags,
 594                                          u2 major_version,
 595                                          TRAPS) {
 596   if (class_flags.is_interface()) {
 597     // Interfaces do not use vtables, except for java.lang.Object methods,
 598     // so there is no point to assigning
 599     // a vtable index to any of their local methods.  If we refrain from doing this,
 600     // we can use Method::_vtable_index to hold the itable index
 601     return false;
 602   }
 603 
 604   if (target_method->is_final_method(class_flags) ||
 605       // a final method never needs a new entry; final methods can be statically
 606       // resolved and they have to be present in the vtable only if they override
 607       // a super's method, in which case they re-use its entry
 608       (target_method()->is_static()) ||
 609       // static methods don't need to be in vtable
 610       (target_method()->name() ==  vmSymbols::object_initializer_name())
 611       // <init> is never called dynamically-bound
 612       ) {
 613     return false;
 614   }
 615 
 616   // Concrete interface methods do not need new entries, they override
 617   // abstract method entries using default inheritance rules
 618   if (target_method()->method_holder() != NULL &&
 619       target_method()->method_holder()->is_interface()  &&
 620       !target_method()->is_abstract()) {
 621     assert(target_method()->is_default_method() || target_method()->is_private(),
 622            "unexpected interface method type");
 623     return false;
 624   }
 625 
 626   // we need a new entry if there is no superclass
 627   if (super == NULL) {
 628     return true;
 629   }
 630 
 631   // private methods in classes always have a new entry in the vtable.
 632   // Specification interpretation since classic has private methods not overriding.
 633   if (target_method()->is_private()) {
 634     return true;
 635   }
 636 
 637   // Package private methods always need a new entry to root their own
 638   // overriding. This allows transitive overriding to work.
 639   if (target_method()->is_package_private()) {
 640     return true;
 641   }
 642 
 643   // search through the super class hierarchy to see if we need
 644   // a new entry
 645   ResourceMark rm;
 646   Symbol* name = target_method()->name();
 647   Symbol* signature = target_method()->signature();
 648   const Klass* k = super;
 649   Method* super_method = NULL;
 650   InstanceKlass *holder = NULL;
 651   Method* recheck_method =  NULL;
 652   while (k != NULL) {
 653     // lookup through the hierarchy for a method with matching name and sign.
 654     super_method = InstanceKlass::cast(k)->lookup_method(name, signature);
 655     if (super_method == NULL) {
 656       break; // we still have to search for a matching miranda method
 657     }
 658     // get the class holding the matching method
 659     // make sure you use that class for is_override
 660     InstanceKlass* superk = super_method->method_holder();
 661     // we want only instance method matches
 662     // pretend private methods are not in the super vtable
 663     // since we do override around them: e.g. a.m pub/b.m private/c.m pub,
 664     // ignore private, c.m pub does override a.m pub
 665     // For classes that were not javac'd together, we also do transitive overriding around
 666     // methods that have less accessibility
 667     if ((!super_method->is_static()) &&
 668        (!super_method->is_private())) {
 669       if (superk->is_override(super_method, classloader, classname, THREAD)) {
 670         return false;
 671       // else keep looking for transitive overrides
 672       }
 673     }
 674 
 675     // Start with lookup result and continue to search up, for versions supporting transitive override
 676     if (major_version >= VTABLE_TRANSITIVE_OVERRIDE_VERSION) {
 677       k = superk->super(); // haven't found an override match yet; continue to look
 678     } else {
 679       break;
 680     }
 681   }
 682 
 683   // if the target method is public or protected it may have a matching
 684   // miranda method in the super, whose entry it should re-use.
 685   // Actually, to handle cases that javac would not generate, we need
 686   // this check for all access permissions.
 687   const InstanceKlass *sk = InstanceKlass::cast(super);
 688   if (sk->has_miranda_methods()) {
 689     if (sk->lookup_method_in_all_interfaces(name, signature, Klass::find_defaults) != NULL) {
 690       return false;  // found a matching miranda; we do not need a new entry
 691     }
 692   }
 693   return true; // found no match; we need a new entry
 694 }
 695 
 696 // Support for miranda methods
 697 
 698 // get the vtable index of a miranda method with matching "name" and "signature"
 699 int klassVtable::index_of_miranda(Symbol* name, Symbol* signature) {
 700   // search from the bottom, might be faster
 701   for (int i = (length() - 1); i >= 0; i--) {
 702     Method* m = table()[i].method();
 703     if (is_miranda_entry_at(i) &&
 704         m->name() == name && m->signature() == signature) {
 705       return i;
 706     }
 707   }
 708   return Method::invalid_vtable_index;
 709 }
 710 
 711 // check if an entry at an index is miranda
 712 // requires that method m at entry be declared ("held") by an interface.
 713 bool klassVtable::is_miranda_entry_at(int i) {
 714   Method* m = method_at(i);
 715   Klass* method_holder = m->method_holder();
 716   InstanceKlass *mhk = InstanceKlass::cast(method_holder);
 717 
 718   // miranda methods are public abstract instance interface methods in a class's vtable
 719   if (mhk->is_interface()) {
 720     assert(m->is_public(), "should be public");
 721     assert(ik()->implements_interface(method_holder) , "this class should implement the interface");
 722     if (is_miranda(m, ik()->methods(), ik()->default_methods(), ik()->super(), klass()->is_interface())) {
 723       return true;
 724     }
 725   }
 726   return false;
 727 }
 728 
 729 // Check if a method is a miranda method, given a class's methods array,
 730 // its default_method table and its super class.
 731 // "Miranda" means an abstract non-private method that would not be
 732 // overridden for the local class.
 733 // A "miranda" method should only include non-private interface
 734 // instance methods, i.e. not private methods, not static methods,
 735 // not default methods (concrete interface methods), not overpass methods.
 736 // If a given class already has a local (including overpass) method, a
 737 // default method, or any of its superclasses has the same which would have
 738 // overridden an abstract method, then this is not a miranda method.
 739 //
 740 // Miranda methods are checked multiple times.
 741 // Pass 1: during class load/class file parsing: before vtable size calculation:
 742 // include superinterface abstract and default methods (non-private instance).
 743 // We include potential default methods to give them space in the vtable.
 744 // During the first run, the current instanceKlass has not yet been
 745 // created, the superclasses and superinterfaces do have instanceKlasses
 746 // but may not have vtables, the default_methods list is empty, no overpasses.
 747 // Default method generation uses the all_mirandas array as the starter set for
 748 // maximally-specific default method calculation.  So, for both classes and
 749 // interfaces, it is necessary that the first pass will find all non-private
 750 // interface instance methods, whether or not they are concrete.
 751 //
 752 // Pass 2: recalculated during vtable initialization: only include abstract methods.
 753 // The goal of pass 2 is to walk through the superinterfaces to see if any of
 754 // the superinterface methods (which were all abstract pre-default methods)
 755 // need to be added to the vtable.
 756 // With the addition of default methods, we have three new challenges:
 757 // overpasses, static interface methods and private interface methods.
 758 // Static and private interface methods do not get added to the vtable and
 759 // are not seen by the method resolution process, so we skip those.
 760 // Overpass methods are already in the vtable, so vtable lookup will
 761 // find them and we don't need to add a miranda method to the end of
 762 // the vtable. So we look for overpass methods and if they are found we
 763 // return false. Note that we inherit our superclasses vtable, so
 764 // the superclass' search also needs to use find_overpass so that if
 765 // one is found we return false.
 766 // False means - we don't need a miranda method added to the vtable.
 767 //
 768 // During the second run, default_methods is set up, so concrete methods from
 769 // superinterfaces with matching names/signatures to default_methods are already
 770 // in the default_methods list and do not need to be appended to the vtable
 771 // as mirandas. Abstract methods may already have been handled via
 772 // overpasses - either local or superclass overpasses, which may be
 773 // in the vtable already.
 774 //
 775 // Pass 3: They are also checked by link resolution and selection,
 776 // for invocation on a method (not interface method) reference that
 777 // resolves to a method with an interface as its method_holder.
 778 // Used as part of walking from the bottom of the vtable to find
 779 // the vtable index for the miranda method.
 780 //
 781 // Part of the Miranda Rights in the US mean that if you do not have
 782 // an attorney one will be appointed for you.
 783 bool klassVtable::is_miranda(Method* m, Array<Method*>* class_methods,
 784                              Array<Method*>* default_methods, const Klass* super,
 785                              bool is_interface) {
 786   if (m->is_static() || m->is_private() || m->is_overpass()) {
 787     return false;
 788   }
 789   Symbol* name = m->name();
 790   Symbol* signature = m->signature();
 791 
 792   // First look in local methods to see if already covered
 793   if (InstanceKlass::find_local_method(class_methods, name, signature,
 794               Klass::find_overpass, Klass::skip_static, Klass::skip_private) != NULL)
 795   {
 796     return false;
 797   }
 798 
 799   // Check local default methods
 800   if ((default_methods != NULL) &&
 801     (InstanceKlass::find_method(default_methods, name, signature) != NULL))
 802    {
 803      return false;
 804    }
 805 
 806   // Iterate on all superclasses, which should be InstanceKlasses.
 807   // Note that we explicitly look for overpasses at each level.
 808   // Overpasses may or may not exist for supers for pass 1,
 809   // they should have been created for pass 2 and later.
 810 
 811   for (const Klass* cursuper = super; cursuper != NULL; cursuper = cursuper->super())
 812   {
 813      Method* found_mth = InstanceKlass::cast(cursuper)->find_local_method(name, signature,
 814        Klass::find_overpass, Klass::skip_static, Klass::skip_private);
 815      // Ignore non-public methods in java.lang.Object if klass is an interface.
 816      if (found_mth != NULL && (!is_interface ||
 817          !SystemDictionary::is_nonpublic_Object_method(found_mth))) {
 818        return false;
 819      }
 820   }
 821 
 822   return true;
 823 }
 824 
 825 // Scans current_interface_methods for miranda methods that do not
 826 // already appear in new_mirandas, or default methods,  and are also not defined-and-non-private
 827 // in super (superclass).  These mirandas are added to all_mirandas if it is
 828 // not null; in addition, those that are not duplicates of miranda methods
 829 // inherited by super from its interfaces are added to new_mirandas.
 830 // Thus, new_mirandas will be the set of mirandas that this class introduces,
 831 // all_mirandas will be the set of all mirandas applicable to this class
 832 // including all defined in superclasses.
 833 void klassVtable::add_new_mirandas_to_lists(
 834     GrowableArray<Method*>* new_mirandas, GrowableArray<Method*>* all_mirandas,
 835     Array<Method*>* current_interface_methods, Array<Method*>* class_methods,
 836     Array<Method*>* default_methods, const Klass* super, bool is_interface) {
 837 
 838   // iterate thru the current interface's method to see if it a miranda
 839   int num_methods = current_interface_methods->length();
 840   for (int i = 0; i < num_methods; i++) {
 841     Method* im = current_interface_methods->at(i);
 842     bool is_duplicate = false;
 843     int num_of_current_mirandas = new_mirandas->length();
 844     // check for duplicate mirandas in different interfaces we implement
 845     for (int j = 0; j < num_of_current_mirandas; j++) {
 846       Method* miranda = new_mirandas->at(j);
 847       if ((im->name() == miranda->name()) &&
 848           (im->signature() == miranda->signature())) {
 849         is_duplicate = true;
 850         break;
 851       }
 852     }
 853 
 854     if (!is_duplicate) { // we don't want duplicate miranda entries in the vtable
 855       if (is_miranda(im, class_methods, default_methods, super, is_interface)) { // is it a miranda at all?
 856         const InstanceKlass *sk = InstanceKlass::cast(super);
 857         // check if it is a duplicate of a super's miranda
 858         if (sk->lookup_method_in_all_interfaces(im->name(), im->signature(), Klass::find_defaults) == NULL) {
 859           new_mirandas->append(im);
 860         }
 861         if (all_mirandas != NULL) {
 862           all_mirandas->append(im);
 863         }
 864       }
 865     }
 866   }
 867 }
 868 
 869 void klassVtable::get_mirandas(GrowableArray<Method*>* new_mirandas,
 870                                GrowableArray<Method*>* all_mirandas,
 871                                const Klass* super,
 872                                Array<Method*>* class_methods,
 873                                Array<Method*>* default_methods,
 874                                Array<Klass*>* local_interfaces,
 875                                bool is_interface) {
 876   assert((new_mirandas->length() == 0) , "current mirandas must be 0");
 877 
 878   // iterate thru the local interfaces looking for a miranda
 879   int num_local_ifs = local_interfaces->length();
 880   for (int i = 0; i < num_local_ifs; i++) {
 881     InstanceKlass *ik = InstanceKlass::cast(local_interfaces->at(i));
 882     add_new_mirandas_to_lists(new_mirandas, all_mirandas,
 883                               ik->methods(), class_methods,
 884                               default_methods, super, is_interface);
 885     // iterate thru each local's super interfaces
 886     Array<Klass*>* super_ifs = ik->transitive_interfaces();
 887     int num_super_ifs = super_ifs->length();
 888     for (int j = 0; j < num_super_ifs; j++) {
 889       InstanceKlass *sik = InstanceKlass::cast(super_ifs->at(j));
 890       add_new_mirandas_to_lists(new_mirandas, all_mirandas,
 891                                 sik->methods(), class_methods,
 892                                 default_methods, super, is_interface);
 893     }
 894   }
 895 }
 896 
 897 // Discover miranda methods ("miranda" = "interface abstract, no binding"),
 898 // and append them into the vtable starting at index initialized,
 899 // return the new value of initialized.
 900 // Miranda methods use vtable entries, but do not get assigned a vtable_index
 901 // The vtable_index is discovered by searching from the end of the vtable
 902 int klassVtable::fill_in_mirandas(int initialized) {
 903   GrowableArray<Method*> mirandas(20);
 904   get_mirandas(&mirandas, NULL, ik()->super(), ik()->methods(),
 905                ik()->default_methods(), ik()->local_interfaces(),
 906                klass()->is_interface());
 907   for (int i = 0; i < mirandas.length(); i++) {
 908     if (log_develop_is_enabled(Trace, vtables)) {
 909       Method* meth = mirandas.at(i);
 910       ResourceMark rm(Thread::current());
 911       LogTarget(Trace, vtables) lt;
 912       LogStream ls(lt);
 913       if (meth != NULL) {
 914         char* sig = meth->name_and_sig_as_C_string();
 915         ls.print("fill in mirandas with %s index %d, flags: ",
 916                      sig, initialized);
 917         meth->print_linkage_flags(&ls);
 918         ls.cr();
 919       }
 920     }
 921     put_method_at(mirandas.at(i), initialized);
 922     ++initialized;
 923   }
 924   return initialized;
 925 }
 926 
 927 // Copy this class's vtable to the vtable beginning at start.
 928 // Used to copy superclass vtable to prefix of subclass's vtable.
 929 void klassVtable::copy_vtable_to(vtableEntry* start) {
 930   Copy::disjoint_words((HeapWord*)table(), (HeapWord*)start, _length * vtableEntry::size());
 931 }
 932 
 933 #if INCLUDE_JVMTI
 934 bool klassVtable::adjust_default_method(int vtable_index, Method* old_method, Method* new_method) {
 935   // If old_method is default, find this vtable index in default_vtable_indices
 936   // and replace that method in the _default_methods list
 937   bool updated = false;
 938 
 939   Array<Method*>* default_methods = ik()->default_methods();
 940   if (default_methods != NULL) {
 941     int len = default_methods->length();
 942     for (int idx = 0; idx < len; idx++) {
 943       if (vtable_index == ik()->default_vtable_indices()->at(idx)) {
 944         if (default_methods->at(idx) == old_method) {
 945           default_methods->at_put(idx, new_method);
 946           updated = true;
 947         }
 948         break;
 949       }
 950     }
 951   }
 952   return updated;
 953 }
 954 
 955 // search the vtable for uses of either obsolete or EMCP methods
 956 void klassVtable::adjust_method_entries(InstanceKlass* holder, bool * trace_name_printed) {
 957   int prn_enabled = 0;
 958   for (int index = 0; index < length(); index++) {
 959     Method* old_method = unchecked_method_at(index);
 960     if (old_method == NULL || old_method->method_holder() != holder || !old_method->is_old()) {
 961       continue; // skip uninteresting entries
 962     }
 963     assert(!old_method->is_deleted(), "vtable methods may not be deleted");
 964 
 965     Method* new_method = holder->method_with_idnum(old_method->orig_method_idnum());
 966 
 967     assert(new_method != NULL, "method_with_idnum() should not be NULL");
 968     assert(old_method != new_method, "sanity check");
 969 
 970     put_method_at(new_method, index);
 971     // For default methods, need to update the _default_methods array
 972     // which can only have one method entry for a given signature
 973     bool updated_default = false;
 974     if (old_method->is_default_method()) {
 975       updated_default = adjust_default_method(index, old_method, new_method);
 976     }
 977 
 978     if (log_is_enabled(Info, redefine, class, update)) {
 979       ResourceMark rm;
 980       if (!(*trace_name_printed)) {
 981         log_info(redefine, class, update)
 982           ("adjust: klassname=%s for methods from name=%s",
 983            _klass->external_name(), old_method->method_holder()->external_name());
 984         *trace_name_printed = true;
 985       }
 986       log_debug(redefine, class, update, vtables)
 987         ("vtable method update: %s(%s), updated default = %s",
 988          new_method->name()->as_C_string(), new_method->signature()->as_C_string(), updated_default ? "true" : "false");
 989     }
 990   }
 991 }
 992 
 993 // a vtable should never contain old or obsolete methods
 994 bool klassVtable::check_no_old_or_obsolete_entries() {
 995   for (int i = 0; i < length(); i++) {
 996     Method* m = unchecked_method_at(i);
 997     if (m != NULL &&
 998         (NOT_PRODUCT(!m->is_valid() ||) m->is_old() || m->is_obsolete())) {
 999       return false;
1000     }
1001   }
1002   return true;
1003 }
1004 
1005 void klassVtable::dump_vtable() {
1006   tty->print_cr("vtable dump --");
1007   for (int i = 0; i < length(); i++) {
1008     Method* m = unchecked_method_at(i);
1009     if (m != NULL) {
1010       tty->print("      (%5d)  ", i);
1011       m->access_flags().print_on(tty);
1012       if (m->is_default_method()) {
1013         tty->print("default ");
1014       }
1015       if (m->is_overpass()) {
1016         tty->print("overpass");
1017       }
1018       tty->print(" --  ");
1019       m->print_name(tty);
1020       tty->cr();
1021     }
1022   }
1023 }
1024 #endif // INCLUDE_JVMTI
1025 
1026 // CDS/RedefineClasses support - clear vtables so they can be reinitialized
1027 void klassVtable::clear_vtable() {
1028   for (int i = 0; i < _length; i++) table()[i].clear();
1029 }
1030 
1031 bool klassVtable::is_initialized() {
1032   return _length == 0 || table()[0].method() != NULL;
1033 }
1034 
1035 //-----------------------------------------------------------------------------------------
1036 // Itable code
1037 
1038 // Initialize a itableMethodEntry
1039 void itableMethodEntry::initialize(Method* m) {
1040   if (m == NULL) return;
1041 
1042 #ifdef ASSERT
1043   if (MetaspaceShared::is_in_shared_metaspace((void*)&_method) &&
1044      !MetaspaceShared::remapped_readwrite()) {
1045     // At runtime initialize_itable is rerun as part of link_class_impl()
1046     // for a shared class loaded by the non-boot loader.
1047     // The dumptime itable method entry should be the same as the runtime entry.
1048     assert(_method == m, "sanity");
1049   }
1050 #endif
1051   _method = m;
1052 }
1053 
1054 klassItable::klassItable(InstanceKlass* klass) {
1055   _klass = klass;
1056 
1057   if (klass->itable_length() > 0) {
1058     itableOffsetEntry* offset_entry = (itableOffsetEntry*)klass->start_of_itable();
1059     if (offset_entry  != NULL && offset_entry->interface_klass() != NULL) { // Check that itable is initialized
1060       // First offset entry points to the first method_entry
1061       intptr_t* method_entry  = (intptr_t *)(((address)klass) + offset_entry->offset());
1062       intptr_t* end         = klass->end_of_itable();
1063 
1064       _table_offset      = (intptr_t*)offset_entry - (intptr_t*)klass;
1065       _size_offset_table = (method_entry - ((intptr_t*)offset_entry)) / itableOffsetEntry::size();
1066       _size_method_table = (end - method_entry)                  / itableMethodEntry::size();
1067       assert(_table_offset >= 0 && _size_offset_table >= 0 && _size_method_table >= 0, "wrong computation");
1068       return;
1069     }
1070   }
1071 
1072   // The length of the itable was either zero, or it has not yet been initialized.
1073   _table_offset      = 0;
1074   _size_offset_table = 0;
1075   _size_method_table = 0;
1076 }
1077 
1078 static int initialize_count = 0;
1079 
1080 // Initialization
1081 void klassItable::initialize_itable(bool checkconstraints, TRAPS) {
1082   if (_klass->is_interface()) {
1083     // This needs to go after vtable indices are assigned but
1084     // before implementors need to know the number of itable indices.
1085     assign_itable_indices_for_interface(_klass);
1086   }
1087 
1088   // Cannot be setup doing bootstrapping, interfaces don't have
1089   // itables, and klass with only ones entry have empty itables
1090   if (Universe::is_bootstrapping() ||
1091       _klass->is_interface() ||
1092       _klass->itable_length() == itableOffsetEntry::size()) return;
1093 
1094   // There's alway an extra itable entry so we can null-terminate it.
1095   guarantee(size_offset_table() >= 1, "too small");
1096   int num_interfaces = size_offset_table() - 1;
1097   if (num_interfaces > 0) {
1098     log_develop_debug(itables)("%3d: Initializing itables for %s", ++initialize_count,
1099                        _klass->name()->as_C_string());
1100 
1101 
1102     // Iterate through all interfaces
1103     int i;
1104     for(i = 0; i < num_interfaces; i++) {
1105       itableOffsetEntry* ioe = offset_entry(i);
1106       HandleMark hm(THREAD);
1107       Klass* interf = ioe->interface_klass();
1108       assert(interf != NULL && ioe->offset() != 0, "bad offset entry in itable");
1109       initialize_itable_for_interface(ioe->offset(), interf, checkconstraints, CHECK);
1110     }
1111 
1112   }
1113   // Check that the last entry is empty
1114   itableOffsetEntry* ioe = offset_entry(size_offset_table() - 1);
1115   guarantee(ioe->interface_klass() == NULL && ioe->offset() == 0, "terminator entry missing");
1116 }
1117 
1118 
1119 inline bool interface_method_needs_itable_index(Method* m) {
1120   if (m->is_static())           return false;   // e.g., Stream.empty
1121   if (m->is_initializer())      return false;   // <init> or <clinit>
1122   if (m->is_private())          return false;   // uses direct call
1123   // If an interface redeclares a method from java.lang.Object,
1124   // it should already have a vtable index, don't touch it.
1125   // e.g., CharSequence.toString (from initialize_vtable)
1126   // if (m->has_vtable_index())  return false; // NO!
1127   return true;
1128 }
1129 
1130 int klassItable::assign_itable_indices_for_interface(Klass* klass) {
1131   // an interface does not have an itable, but its methods need to be numbered
1132   log_develop_debug(itables)("%3d: Initializing itable indices for interface %s",
1133                              ++initialize_count, klass->name()->as_C_string());
1134   Array<Method*>* methods = InstanceKlass::cast(klass)->methods();
1135   int nof_methods = methods->length();
1136   int ime_num = 0;
1137   for (int i = 0; i < nof_methods; i++) {
1138     Method* m = methods->at(i);
1139     if (interface_method_needs_itable_index(m)) {
1140       assert(!m->is_final_method(), "no final interface methods");
1141       // If m is already assigned a vtable index, do not disturb it.
1142       if (log_develop_is_enabled(Trace, itables)) {
1143         ResourceMark rm;
1144         LogTarget(Trace, itables) lt;
1145         LogStream ls(lt);
1146         assert(m != NULL, "methods can never be null");
1147         const char* sig = m->name_and_sig_as_C_string();
1148         if (m->has_vtable_index()) {
1149           ls.print("vtable index %d for method: %s, flags: ", m->vtable_index(), sig);
1150         } else {
1151           ls.print("itable index %d for method: %s, flags: ", ime_num, sig);
1152         }
1153         m->print_linkage_flags(&ls);
1154         ls.cr();
1155       }
1156       if (!m->has_vtable_index()) {
1157         // A shared method could have an initialized itable_index that
1158         // is < 0.
1159         assert(m->vtable_index() == Method::pending_itable_index ||
1160                m->is_shared(),
1161                "set by initialize_vtable");
1162         m->set_itable_index(ime_num);
1163         // Progress to next itable entry
1164         ime_num++;
1165       }
1166     }
1167   }
1168   assert(ime_num == method_count_for_interface(klass), "proper sizing");
1169   return ime_num;
1170 }
1171 
1172 int klassItable::method_count_for_interface(Klass* interf) {
1173   assert(interf->is_instance_klass(), "must be");
1174   assert(interf->is_interface(), "must be");
1175   Array<Method*>* methods = InstanceKlass::cast(interf)->methods();
1176   int nof_methods = methods->length();
1177   int length = 0;
1178   while (nof_methods > 0) {
1179     Method* m = methods->at(nof_methods-1);
1180     if (m->has_itable_index()) {
1181       length = m->itable_index() + 1;
1182       break;
1183     }
1184     nof_methods -= 1;
1185   }
1186 #ifdef ASSERT
1187   int nof_methods_copy = nof_methods;
1188   while (nof_methods_copy > 0) {
1189     Method* mm = methods->at(--nof_methods_copy);
1190     assert(!mm->has_itable_index() || mm->itable_index() < length, "");
1191   }
1192 #endif //ASSERT
1193   // return the rightmost itable index, plus one; or 0 if no methods have
1194   // itable indices
1195   return length;
1196 }
1197 
1198 
1199 void klassItable::initialize_itable_for_interface(int method_table_offset, Klass* interf, bool checkconstraints, TRAPS) {
1200   Array<Method*>* methods = InstanceKlass::cast(interf)->methods();
1201   int nof_methods = methods->length();
1202   HandleMark hm;
1203   Handle interface_loader (THREAD, InstanceKlass::cast(interf)->class_loader());
1204 
1205   int ime_count = method_count_for_interface(interf);
1206   for (int i = 0; i < nof_methods; i++) {
1207     Method* m = methods->at(i);
1208     methodHandle target;
1209     if (m->has_itable_index()) {
1210       // This search must match the runtime resolution, i.e. selection search for invokeinterface
1211       // to correctly enforce loader constraints for interface method inheritance.
1212       // Private methods are skipped as a private class method can never be the implementation
1213       // of an interface method.
1214       // Invokespecial does not perform selection based on the receiver, so it does not use
1215       // the cached itable.
1216       target = LinkResolver::lookup_instance_method_in_klasses(_klass, m->name(), m->signature(),
1217                                                                Klass::skip_private, CHECK);
1218     }
1219     if (target == NULL || !target->is_public() || target->is_abstract() || target->is_overpass()) {
1220       assert(target == NULL || !target->is_overpass() || target->is_public(),
1221              "Non-public overpass method!");
1222       // Entry does not resolve. Leave it empty for AbstractMethodError or other error.
1223       if (!(target == NULL) && !target->is_public()) {
1224         // Stuff an IllegalAccessError throwing method in there instead.
1225         itableOffsetEntry::method_entry(_klass, method_table_offset)[m->itable_index()].
1226             initialize(Universe::throw_illegal_access_error());
1227       }
1228     } else {
1229       // Entry did resolve, check loader constraints before initializing
1230       // if checkconstraints requested
1231       if (checkconstraints) {
1232         Handle method_holder_loader (THREAD, target->method_holder()->class_loader());
1233         if (!oopDesc::equals(method_holder_loader(), interface_loader())) {
1234           ResourceMark rm(THREAD);
1235           Symbol* failed_type_symbol =
1236             SystemDictionary::check_signature_loaders(m->signature(),
1237                                                       method_holder_loader,
1238                                                       interface_loader,
1239                                                       true, CHECK);
1240           if (failed_type_symbol != NULL) {
1241             stringStream ss;
1242             ss.print("loader constraint violation in interface itable"
1243                      " initialization for class %s: when selecting method %s the"
1244                      " class loader %s for super interface %s, and the class"
1245                      " loader %s of the selected method's type, %s have"
1246                      " different Class objects for the type %s used in the signature (%s; %s)",
1247                      _klass->external_name(),
1248                      m->name_and_sig_as_C_string(),
1249                      interf->class_loader_data()->loader_name_and_id(),
1250                      interf->external_name(),
1251                      target()->method_holder()->class_loader_data()->loader_name_and_id(),
1252                      target()->method_holder()->external_name(),
1253                      failed_type_symbol->as_klass_external_name(),
1254                      interf->class_in_module_of_loader(false, true),
1255                      target()->method_holder()->class_in_module_of_loader(false, true));
1256             THROW_MSG(vmSymbols::java_lang_LinkageError(), ss.as_string());
1257           }
1258         }
1259       }
1260 
1261       // ime may have moved during GC so recalculate address
1262       int ime_num = m->itable_index();
1263       assert(ime_num < ime_count, "oob");
1264       itableOffsetEntry::method_entry(_klass, method_table_offset)[ime_num].initialize(target());
1265       if (log_develop_is_enabled(Trace, itables)) {
1266         ResourceMark rm(THREAD);
1267         if (target() != NULL) {
1268           LogTarget(Trace, itables) lt;
1269           LogStream ls(lt);
1270           char* sig = target()->name_and_sig_as_C_string();
1271           ls.print("interface: %s, ime_num: %d, target: %s, method_holder: %s ",
1272                        interf->internal_name(), ime_num, sig,
1273                        target()->method_holder()->internal_name());
1274           ls.print("target_method flags: ");
1275           target()->print_linkage_flags(&ls);
1276           ls.cr();
1277         }
1278       }
1279     }
1280   }
1281 }
1282 
1283 #if INCLUDE_JVMTI
1284 // search the itable for uses of either obsolete or EMCP methods
1285 void klassItable::adjust_method_entries(InstanceKlass* holder, bool * trace_name_printed) {
1286 
1287   itableMethodEntry* ime = method_entry(0);
1288   for (int i = 0; i < _size_method_table; i++, ime++) {
1289     Method* old_method = ime->method();
1290     if (old_method == NULL || old_method->method_holder() != holder || !old_method->is_old()) {
1291       continue; // skip uninteresting entries
1292     }
1293     assert(!old_method->is_deleted(), "itable methods may not be deleted");
1294 
1295     Method* new_method = holder->method_with_idnum(old_method->orig_method_idnum());
1296 
1297     assert(new_method != NULL, "method_with_idnum() should not be NULL");
1298     assert(old_method != new_method, "sanity check");
1299 
1300     ime->initialize(new_method);
1301 
1302     if (log_is_enabled(Info, redefine, class, update)) {
1303       ResourceMark rm;
1304       if (!(*trace_name_printed)) {
1305         log_info(redefine, class, update)("adjust: name=%s", old_method->method_holder()->external_name());
1306         *trace_name_printed = true;
1307       }
1308       log_trace(redefine, class, update, itables)
1309         ("itable method update: %s(%s)", new_method->name()->as_C_string(), new_method->signature()->as_C_string());
1310     }
1311   }
1312 }
1313 
1314 // an itable should never contain old or obsolete methods
1315 bool klassItable::check_no_old_or_obsolete_entries() {
1316   itableMethodEntry* ime = method_entry(0);
1317   for (int i = 0; i < _size_method_table; i++) {
1318     Method* m = ime->method();
1319     if (m != NULL &&
1320         (NOT_PRODUCT(!m->is_valid() ||) m->is_old() || m->is_obsolete())) {
1321       return false;
1322     }
1323     ime++;
1324   }
1325   return true;
1326 }
1327 
1328 void klassItable::dump_itable() {
1329   itableMethodEntry* ime = method_entry(0);
1330   tty->print_cr("itable dump --");
1331   for (int i = 0; i < _size_method_table; i++) {
1332     Method* m = ime->method();
1333     if (m != NULL) {
1334       tty->print("      (%5d)  ", i);
1335       m->access_flags().print_on(tty);
1336       if (m->is_default_method()) {
1337         tty->print("default ");
1338       }
1339       tty->print(" --  ");
1340       m->print_name(tty);
1341       tty->cr();
1342     }
1343     ime++;
1344   }
1345 }
1346 #endif // INCLUDE_JVMTI
1347 
1348 // Setup
1349 class InterfaceVisiterClosure : public StackObj {
1350  public:
1351   virtual void doit(Klass* intf, int method_count) = 0;
1352 };
1353 
1354 // Visit all interfaces with at least one itable method
1355 void visit_all_interfaces(Array<Klass*>* transitive_intf, InterfaceVisiterClosure *blk) {
1356   // Handle array argument
1357   for(int i = 0; i < transitive_intf->length(); i++) {
1358     Klass* intf = transitive_intf->at(i);
1359     assert(intf->is_interface(), "sanity check");
1360 
1361     // Find no. of itable methods
1362     int method_count = 0;
1363     // method_count = klassItable::method_count_for_interface(intf);
1364     Array<Method*>* methods = InstanceKlass::cast(intf)->methods();
1365     if (methods->length() > 0) {
1366       for (int i = methods->length(); --i >= 0; ) {
1367         if (interface_method_needs_itable_index(methods->at(i))) {
1368           method_count++;
1369         }
1370       }
1371     }
1372 
1373     // Visit all interfaces which either have any methods or can participate in receiver type check.
1374     // We do not bother to count methods in transitive interfaces, although that would allow us to skip
1375     // this step in the rare case of a zero-method interface extending another zero-method interface.
1376     if (method_count > 0 || InstanceKlass::cast(intf)->transitive_interfaces()->length() > 0) {
1377       blk->doit(intf, method_count);
1378     }
1379   }
1380 }
1381 
1382 class CountInterfacesClosure : public InterfaceVisiterClosure {
1383  private:
1384   int _nof_methods;
1385   int _nof_interfaces;
1386  public:
1387    CountInterfacesClosure() { _nof_methods = 0; _nof_interfaces = 0; }
1388 
1389    int nof_methods() const    { return _nof_methods; }
1390    int nof_interfaces() const { return _nof_interfaces; }
1391 
1392    void doit(Klass* intf, int method_count) { _nof_methods += method_count; _nof_interfaces++; }
1393 };
1394 
1395 class SetupItableClosure : public InterfaceVisiterClosure  {
1396  private:
1397   itableOffsetEntry* _offset_entry;
1398   itableMethodEntry* _method_entry;
1399   address            _klass_begin;
1400  public:
1401   SetupItableClosure(address klass_begin, itableOffsetEntry* offset_entry, itableMethodEntry* method_entry) {
1402     _klass_begin  = klass_begin;
1403     _offset_entry = offset_entry;
1404     _method_entry = method_entry;
1405   }
1406 
1407   itableMethodEntry* method_entry() const { return _method_entry; }
1408 
1409   void doit(Klass* intf, int method_count) {
1410     int offset = ((address)_method_entry) - _klass_begin;
1411     _offset_entry->initialize(intf, offset);
1412     _offset_entry++;
1413     _method_entry += method_count;
1414   }
1415 };
1416 
1417 int klassItable::compute_itable_size(Array<Klass*>* transitive_interfaces) {
1418   // Count no of interfaces and total number of interface methods
1419   CountInterfacesClosure cic;
1420   visit_all_interfaces(transitive_interfaces, &cic);
1421 
1422   // There's alway an extra itable entry so we can null-terminate it.
1423   int itable_size = calc_itable_size(cic.nof_interfaces() + 1, cic.nof_methods());
1424 
1425   // Statistics
1426   update_stats(itable_size * wordSize);
1427 
1428   return itable_size;
1429 }
1430 
1431 
1432 // Fill out offset table and interface klasses into the itable space
1433 void klassItable::setup_itable_offset_table(InstanceKlass* klass) {
1434   if (klass->itable_length() == 0) return;
1435   assert(!klass->is_interface(), "Should have zero length itable");
1436 
1437   // Count no of interfaces and total number of interface methods
1438   CountInterfacesClosure cic;
1439   visit_all_interfaces(klass->transitive_interfaces(), &cic);
1440   int nof_methods    = cic.nof_methods();
1441   int nof_interfaces = cic.nof_interfaces();
1442 
1443   // Add one extra entry so we can null-terminate the table
1444   nof_interfaces++;
1445 
1446   assert(compute_itable_size(klass->transitive_interfaces()) ==
1447          calc_itable_size(nof_interfaces, nof_methods),
1448          "mismatch calculation of itable size");
1449 
1450   // Fill-out offset table
1451   itableOffsetEntry* ioe = (itableOffsetEntry*)klass->start_of_itable();
1452   itableMethodEntry* ime = (itableMethodEntry*)(ioe + nof_interfaces);
1453   intptr_t* end               = klass->end_of_itable();
1454   assert((oop*)(ime + nof_methods) <= (oop*)klass->start_of_nonstatic_oop_maps(), "wrong offset calculation (1)");
1455   assert((oop*)(end) == (oop*)(ime + nof_methods),                      "wrong offset calculation (2)");
1456 
1457   // Visit all interfaces and initialize itable offset table
1458   SetupItableClosure sic((address)klass, ioe, ime);
1459   visit_all_interfaces(klass->transitive_interfaces(), &sic);
1460 
1461 #ifdef ASSERT
1462   ime  = sic.method_entry();
1463   oop* v = (oop*) klass->end_of_itable();
1464   assert( (oop*)(ime) == v, "wrong offset calculation (2)");
1465 #endif
1466 }
1467 
1468 
1469 // inverse to itable_index
1470 Method* klassItable::method_for_itable_index(Klass* intf, int itable_index) {
1471   assert(InstanceKlass::cast(intf)->is_interface(), "sanity check");
1472   assert(intf->verify_itable_index(itable_index), "");
1473   Array<Method*>* methods = InstanceKlass::cast(intf)->methods();
1474 
1475   if (itable_index < 0 || itable_index >= method_count_for_interface(intf))
1476     return NULL;                // help caller defend against bad indices
1477 
1478   int index = itable_index;
1479   Method* m = methods->at(index);
1480   int index2 = -1;
1481   while (!m->has_itable_index() ||
1482          (index2 = m->itable_index()) != itable_index) {
1483     assert(index2 < itable_index, "monotonic");
1484     if (++index == methods->length())
1485       return NULL;
1486     m = methods->at(index);
1487   }
1488   assert(m->itable_index() == itable_index, "correct inverse");
1489 
1490   return m;
1491 }
1492 
1493 void klassVtable::verify(outputStream* st, bool forced) {
1494   // make sure table is initialized
1495   if (!Universe::is_fully_initialized()) return;
1496 #ifndef PRODUCT
1497   // avoid redundant verifies
1498   if (!forced && _verify_count == Universe::verify_count()) return;
1499   _verify_count = Universe::verify_count();
1500 #endif
1501   oop* end_of_obj = (oop*)_klass + _klass->size();
1502   oop* end_of_vtable = (oop *)&table()[_length];
1503   if (end_of_vtable > end_of_obj) {
1504     fatal("klass %s: klass object too short (vtable extends beyond end)",
1505           _klass->internal_name());
1506   }
1507 
1508   for (int i = 0; i < _length; i++) table()[i].verify(this, st);
1509   // verify consistency with superKlass vtable
1510   Klass* super = _klass->super();
1511   if (super != NULL) {
1512     InstanceKlass* sk = InstanceKlass::cast(super);
1513     klassVtable vt = sk->vtable();
1514     for (int i = 0; i < vt.length(); i++) {
1515       verify_against(st, &vt, i);
1516     }
1517   }
1518 }
1519 
1520 void klassVtable::verify_against(outputStream* st, klassVtable* vt, int index) {
1521   vtableEntry* vte = &vt->table()[index];
1522   if (vte->method()->name()      != table()[index].method()->name() ||
1523       vte->method()->signature() != table()[index].method()->signature()) {
1524     fatal("mismatched name/signature of vtable entries");
1525   }
1526 }
1527 
1528 #ifndef PRODUCT
1529 void klassVtable::print() {
1530   ResourceMark rm;
1531   tty->print("klassVtable for klass %s (length %d):\n", _klass->internal_name(), length());
1532   for (int i = 0; i < length(); i++) {
1533     table()[i].print();
1534     tty->cr();
1535   }
1536 }
1537 #endif
1538 
1539 void vtableEntry::verify(klassVtable* vt, outputStream* st) {
1540   NOT_PRODUCT(FlagSetting fs(IgnoreLockingAssertions, true));
1541   Klass* vtklass = vt->klass();
1542   if (vtklass->is_instance_klass() &&
1543      (InstanceKlass::cast(vtklass)->major_version() >= klassVtable::VTABLE_TRANSITIVE_OVERRIDE_VERSION)) {
1544     assert(method() != NULL, "must have set method");
1545   }
1546   if (method() != NULL) {
1547     method()->verify();
1548     // we sub_type, because it could be a miranda method
1549     if (!vtklass->is_subtype_of(method()->method_holder())) {
1550 #ifndef PRODUCT
1551       print();
1552 #endif
1553       fatal("vtableEntry " PTR_FORMAT ": method is from subclass", p2i(this));
1554     }
1555  }
1556 }
1557 
1558 #ifndef PRODUCT
1559 
1560 void vtableEntry::print() {
1561   ResourceMark rm;
1562   tty->print("vtableEntry %s: ", method()->name()->as_C_string());
1563   if (Verbose) {
1564     tty->print("m " PTR_FORMAT " ", p2i(method()));
1565   }
1566 }
1567 
1568 class VtableStats : AllStatic {
1569  public:
1570   static int no_klasses;                // # classes with vtables
1571   static int no_array_klasses;          // # array classes
1572   static int no_instance_klasses;       // # instanceKlasses
1573   static int sum_of_vtable_len;         // total # of vtable entries
1574   static int sum_of_array_vtable_len;   // total # of vtable entries in array klasses only
1575   static int fixed;                     // total fixed overhead in bytes
1576   static int filler;                    // overhead caused by filler bytes
1577   static int entries;                   // total bytes consumed by vtable entries
1578   static int array_entries;             // total bytes consumed by array vtable entries
1579 
1580   static void do_class(Klass* k) {
1581     Klass* kl = k;
1582     klassVtable vt = kl->vtable();
1583     no_klasses++;
1584     if (kl->is_instance_klass()) {
1585       no_instance_klasses++;
1586       kl->array_klasses_do(do_class);
1587     }
1588     if (kl->is_array_klass()) {
1589       no_array_klasses++;
1590       sum_of_array_vtable_len += vt.length();
1591     }
1592     sum_of_vtable_len += vt.length();
1593   }
1594 
1595   static void compute() {
1596     ClassLoaderDataGraph::classes_do(do_class);
1597     fixed  = no_klasses * oopSize;      // vtable length
1598     // filler size is a conservative approximation
1599     filler = oopSize * (no_klasses - no_instance_klasses) * (sizeof(InstanceKlass) - sizeof(ArrayKlass) - 1);
1600     entries = sizeof(vtableEntry) * sum_of_vtable_len;
1601     array_entries = sizeof(vtableEntry) * sum_of_array_vtable_len;
1602   }
1603 };
1604 
1605 int VtableStats::no_klasses = 0;
1606 int VtableStats::no_array_klasses = 0;
1607 int VtableStats::no_instance_klasses = 0;
1608 int VtableStats::sum_of_vtable_len = 0;
1609 int VtableStats::sum_of_array_vtable_len = 0;
1610 int VtableStats::fixed = 0;
1611 int VtableStats::filler = 0;
1612 int VtableStats::entries = 0;
1613 int VtableStats::array_entries = 0;
1614 
1615 void klassVtable::print_statistics() {
1616   ResourceMark rm;
1617   HandleMark hm;
1618   VtableStats::compute();
1619   tty->print_cr("vtable statistics:");
1620   tty->print_cr("%6d classes (%d instance, %d array)", VtableStats::no_klasses, VtableStats::no_instance_klasses, VtableStats::no_array_klasses);
1621   int total = VtableStats::fixed + VtableStats::filler + VtableStats::entries;
1622   tty->print_cr("%6d bytes fixed overhead (refs + vtable object header)", VtableStats::fixed);
1623   tty->print_cr("%6d bytes filler overhead", VtableStats::filler);
1624   tty->print_cr("%6d bytes for vtable entries (%d for arrays)", VtableStats::entries, VtableStats::array_entries);
1625   tty->print_cr("%6d bytes total", total);
1626 }
1627 
1628 int  klassItable::_total_classes;   // Total no. of classes with itables
1629 long klassItable::_total_size;      // Total no. of bytes used for itables
1630 
1631 void klassItable::print_statistics() {
1632  tty->print_cr("itable statistics:");
1633  tty->print_cr("%6d classes with itables", _total_classes);
1634  tty->print_cr("%6lu K uses for itables (average by class: %ld bytes)", _total_size / K, _total_size / _total_classes);
1635 }
1636 
1637 #endif // PRODUCT