src/share/vm/classfile/systemDictionary.cpp

Tue, 29 Oct 2019 19:53:30 -0300

author
mbalao
date
Tue, 29 Oct 2019 19:53:30 -0300
changeset 9886
986b79fabfa0
parent 9866
41515291559a
child 9892
9a4141de094d
permissions
-rw-r--r--

8231995: two jtreg tests failed after 8229366 is fixed
Reviewed-by: jbachorik

     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  */
    25 #include "precompiled.hpp"
    26 #include "classfile/classLoaderData.inline.hpp"
    27 #include "classfile/dictionary.hpp"
    28 #include "classfile/javaClasses.hpp"
    29 #include "classfile/loaderConstraints.hpp"
    30 #include "classfile/placeholders.hpp"
    31 #include "classfile/resolutionErrors.hpp"
    32 #include "classfile/systemDictionary.hpp"
    33 #if INCLUDE_CDS
    34 #include "classfile/sharedClassUtil.hpp"
    35 #include "classfile/systemDictionaryShared.hpp"
    36 #endif
    37 #include "classfile/vmSymbols.hpp"
    38 #include "compiler/compileBroker.hpp"
    39 #include "interpreter/bytecodeStream.hpp"
    40 #include "interpreter/interpreter.hpp"
    41 #include "jfr/jfrEvents.hpp"
    42 #include "jfr/jni/jfrUpcalls.hpp"
    43 #include "memory/filemap.hpp"
    44 #include "memory/gcLocker.hpp"
    45 #include "memory/oopFactory.hpp"
    46 #include "oops/instanceKlass.hpp"
    47 #include "oops/instanceRefKlass.hpp"
    48 #include "oops/klass.inline.hpp"
    49 #include "oops/methodData.hpp"
    50 #include "oops/objArrayKlass.hpp"
    51 #include "oops/oop.inline.hpp"
    52 #include "oops/oop.inline2.hpp"
    53 #include "oops/typeArrayKlass.hpp"
    54 #include "prims/jvmtiEnvBase.hpp"
    55 #include "prims/methodHandles.hpp"
    56 #include "runtime/arguments.hpp"
    57 #include "runtime/biasedLocking.hpp"
    58 #include "runtime/fieldType.hpp"
    59 #include "runtime/handles.inline.hpp"
    60 #include "runtime/java.hpp"
    61 #include "runtime/javaCalls.hpp"
    62 #include "runtime/mutexLocker.hpp"
    63 #include "runtime/orderAccess.inline.hpp"
    64 #include "runtime/signature.hpp"
    65 #include "services/classLoadingService.hpp"
    66 #include "services/threadService.hpp"
    67 #include "utilities/macros.hpp"
    68 #include "utilities/ticks.hpp"
    70 Dictionary*            SystemDictionary::_dictionary          = NULL;
    71 PlaceholderTable*      SystemDictionary::_placeholders        = NULL;
    72 Dictionary*            SystemDictionary::_shared_dictionary   = NULL;
    73 LoaderConstraintTable* SystemDictionary::_loader_constraints  = NULL;
    74 ResolutionErrorTable*  SystemDictionary::_resolution_errors   = NULL;
    75 SymbolPropertyTable*   SystemDictionary::_invoke_method_table = NULL;
    78 int         SystemDictionary::_number_of_modifications = 0;
    79 int         SystemDictionary::_sdgeneration               = 0;
    80 const int   SystemDictionary::_primelist[_prime_array_size] = {1009,2017,4049,5051,10103,
    81               20201,40423,99991};
    83 oop         SystemDictionary::_system_loader_lock_obj     =  NULL;
    85 Klass*      SystemDictionary::_well_known_klasses[SystemDictionary::WKID_LIMIT]
    86                                                           =  { NULL /*, NULL...*/ };
    88 Klass*      SystemDictionary::_box_klasses[T_VOID+1]      =  { NULL /*, NULL...*/ };
    90 oop         SystemDictionary::_java_system_loader         =  NULL;
    92 bool        SystemDictionary::_has_loadClassInternal      =  false;
    93 bool        SystemDictionary::_has_checkPackageAccess     =  false;
    95 // lazily initialized klass variables
    96 Klass* volatile SystemDictionary::_abstract_ownable_synchronizer_klass = NULL;
    98 #if INCLUDE_JFR
    99 static const Symbol* jfr_event_handler_proxy = NULL;
   100 #endif // INCLUDE_JFR
   102 // ----------------------------------------------------------------------------
   103 // Java-level SystemLoader
   105 oop SystemDictionary::java_system_loader() {
   106   return _java_system_loader;
   107 }
   109 void SystemDictionary::compute_java_system_loader(TRAPS) {
   110   KlassHandle system_klass(THREAD, WK_KLASS(ClassLoader_klass));
   111   JavaValue result(T_OBJECT);
   112   JavaCalls::call_static(&result,
   113                          KlassHandle(THREAD, WK_KLASS(ClassLoader_klass)),
   114                          vmSymbols::getSystemClassLoader_name(),
   115                          vmSymbols::void_classloader_signature(),
   116                          CHECK);
   118   _java_system_loader = (oop)result.get_jobject();
   120   CDS_ONLY(SystemDictionaryShared::initialize(CHECK);)
   121 }
   124 ClassLoaderData* SystemDictionary::register_loader(Handle class_loader, TRAPS) {
   125   if (class_loader() == NULL) return ClassLoaderData::the_null_class_loader_data();
   126   return ClassLoaderDataGraph::find_or_create(class_loader, THREAD);
   127 }
   129 // ----------------------------------------------------------------------------
   130 // debugging
   132 #ifdef ASSERT
   134 // return true if class_name contains no '.' (internal format is '/')
   135 bool SystemDictionary::is_internal_format(Symbol* class_name) {
   136   if (class_name != NULL) {
   137     ResourceMark rm;
   138     char* name = class_name->as_C_string();
   139     return strchr(name, '.') == NULL;
   140   } else {
   141     return true;
   142   }
   143 }
   145 #endif
   146 #if INCLUDE_JFR
   147 #include "jfr/jfr.hpp"
   148 #endif
   150 // ----------------------------------------------------------------------------
   151 // Parallel class loading check
   153 bool SystemDictionary::is_parallelCapable(Handle class_loader) {
   154   if (UnsyncloadClass || class_loader.is_null()) return true;
   155   if (AlwaysLockClassLoader) return false;
   156   return java_lang_ClassLoader::parallelCapable(class_loader());
   157 }
   158 // ----------------------------------------------------------------------------
   159 // ParallelDefineClass flag does not apply to bootclass loader
   160 bool SystemDictionary::is_parallelDefine(Handle class_loader) {
   161    if (class_loader.is_null()) return false;
   162    if (AllowParallelDefineClass && java_lang_ClassLoader::parallelCapable(class_loader())) {
   163      return true;
   164    }
   165    return false;
   166 }
   168 /**
   169  * Returns true if the passed class loader is the extension class loader.
   170  */
   171 bool SystemDictionary::is_ext_class_loader(Handle class_loader) {
   172   if (class_loader.is_null()) {
   173     return false;
   174   }
   175   return (class_loader->klass()->name() == vmSymbols::sun_misc_Launcher_ExtClassLoader());
   176 }
   178 // ----------------------------------------------------------------------------
   179 // Resolving of classes
   181 // Forwards to resolve_or_null
   183 Klass* SystemDictionary::resolve_or_fail(Symbol* class_name, Handle class_loader, Handle protection_domain, bool throw_error, TRAPS) {
   184   Klass* klass = resolve_or_null(class_name, class_loader, protection_domain, THREAD);
   185   if (HAS_PENDING_EXCEPTION || klass == NULL) {
   186     KlassHandle k_h(THREAD, klass);
   187     // can return a null klass
   188     klass = handle_resolution_exception(class_name, class_loader, protection_domain, throw_error, k_h, THREAD);
   189   }
   190   return klass;
   191 }
   193 Klass* SystemDictionary::handle_resolution_exception(Symbol* class_name, Handle class_loader, Handle protection_domain, bool throw_error, KlassHandle klass_h, TRAPS) {
   194   if (HAS_PENDING_EXCEPTION) {
   195     // If we have a pending exception we forward it to the caller, unless throw_error is true,
   196     // in which case we have to check whether the pending exception is a ClassNotFoundException,
   197     // and if so convert it to a NoClassDefFoundError
   198     // And chain the original ClassNotFoundException
   199     if (throw_error && PENDING_EXCEPTION->is_a(SystemDictionary::ClassNotFoundException_klass())) {
   200       ResourceMark rm(THREAD);
   201       assert(klass_h() == NULL, "Should not have result with exception pending");
   202       Handle e(THREAD, PENDING_EXCEPTION);
   203       CLEAR_PENDING_EXCEPTION;
   204       THROW_MSG_CAUSE_NULL(vmSymbols::java_lang_NoClassDefFoundError(), class_name->as_C_string(), e);
   205     } else {
   206       return NULL;
   207     }
   208   }
   209   // Class not found, throw appropriate error or exception depending on value of throw_error
   210   if (klass_h() == NULL) {
   211     ResourceMark rm(THREAD);
   212     if (throw_error) {
   213       THROW_MSG_NULL(vmSymbols::java_lang_NoClassDefFoundError(), class_name->as_C_string());
   214     } else {
   215       THROW_MSG_NULL(vmSymbols::java_lang_ClassNotFoundException(), class_name->as_C_string());
   216     }
   217   }
   218   return (Klass*)klass_h();
   219 }
   222 Klass* SystemDictionary::resolve_or_fail(Symbol* class_name,
   223                                            bool throw_error, TRAPS)
   224 {
   225   return resolve_or_fail(class_name, Handle(), Handle(), throw_error, THREAD);
   226 }
   229 // Forwards to resolve_instance_class_or_null
   231 Klass* SystemDictionary::resolve_or_null(Symbol* class_name, Handle class_loader, Handle protection_domain, TRAPS) {
   232   assert(!THREAD->is_Compiler_thread(),
   233          err_msg("can not load classes with compiler thread: class=%s, classloader=%s",
   234                  class_name->as_C_string(),
   235                  class_loader.is_null() ? "null" : class_loader->klass()->name()->as_C_string()));
   236   if (FieldType::is_array(class_name)) {
   237     return resolve_array_class_or_null(class_name, class_loader, protection_domain, CHECK_NULL);
   238   } else if (FieldType::is_obj(class_name)) {
   239     ResourceMark rm(THREAD);
   240     // Ignore wrapping L and ;.
   241     TempNewSymbol name = SymbolTable::new_symbol(class_name->as_C_string() + 1,
   242                                    class_name->utf8_length() - 2, CHECK_NULL);
   243     return resolve_instance_class_or_null(name, class_loader, protection_domain, CHECK_NULL);
   244   } else {
   245     return resolve_instance_class_or_null(class_name, class_loader, protection_domain, CHECK_NULL);
   246   }
   247 }
   249 Klass* SystemDictionary::resolve_or_null(Symbol* class_name, TRAPS) {
   250   return resolve_or_null(class_name, Handle(), Handle(), THREAD);
   251 }
   253 // Forwards to resolve_instance_class_or_null
   255 Klass* SystemDictionary::resolve_array_class_or_null(Symbol* class_name,
   256                                                        Handle class_loader,
   257                                                        Handle protection_domain,
   258                                                        TRAPS) {
   259   assert(FieldType::is_array(class_name), "must be array");
   260   Klass* k = NULL;
   261   FieldArrayInfo fd;
   262   // dimension and object_key in FieldArrayInfo are assigned as a side-effect
   263   // of this call
   264   BasicType t = FieldType::get_array_info(class_name, fd, CHECK_NULL);
   265   if (t == T_OBJECT) {
   266     // naked oop "k" is OK here -- we assign back into it
   267     k = SystemDictionary::resolve_instance_class_or_null(fd.object_key(),
   268                                                          class_loader,
   269                                                          protection_domain,
   270                                                          CHECK_NULL);
   271     if (k != NULL) {
   272       k = k->array_klass(fd.dimension(), CHECK_NULL);
   273     }
   274   } else {
   275     k = Universe::typeArrayKlassObj(t);
   276     k = TypeArrayKlass::cast(k)->array_klass(fd.dimension(), CHECK_NULL);
   277   }
   278   return k;
   279 }
   282 // Must be called for any super-class or super-interface resolution
   283 // during class definition to allow class circularity checking
   284 // super-interface callers:
   285 //    parse_interfaces - for defineClass & jvmtiRedefineClasses
   286 // super-class callers:
   287 //   ClassFileParser - for defineClass & jvmtiRedefineClasses
   288 //   load_shared_class - while loading a class from shared archive
   289 //   resolve_instance_class_or_null:
   290 //     via: handle_parallel_super_load
   291 //      when resolving a class that has an existing placeholder with
   292 //      a saved superclass [i.e. a defineClass is currently in progress]
   293 //      if another thread is trying to resolve the class, it must do
   294 //      super-class checks on its own thread to catch class circularity
   295 // This last call is critical in class circularity checking for cases
   296 // where classloading is delegated to different threads and the
   297 // classloader lock is released.
   298 // Take the case: Base->Super->Base
   299 //   1. If thread T1 tries to do a defineClass of class Base
   300 //    resolve_super_or_fail creates placeholder: T1, Base (super Super)
   301 //   2. resolve_instance_class_or_null does not find SD or placeholder for Super
   302 //    so it tries to load Super
   303 //   3. If we load the class internally, or user classloader uses same thread
   304 //      loadClassFromxxx or defineClass via parseClassFile Super ...
   305 //      3.1 resolve_super_or_fail creates placeholder: T1, Super (super Base)
   306 //      3.3 resolve_instance_class_or_null Base, finds placeholder for Base
   307 //      3.4 calls resolve_super_or_fail Base
   308 //      3.5 finds T1,Base -> throws class circularity
   309 //OR 4. If T2 tries to resolve Super via defineClass Super ...
   310 //      4.1 resolve_super_or_fail creates placeholder: T2, Super (super Base)
   311 //      4.2 resolve_instance_class_or_null Base, finds placeholder for Base (super Super)
   312 //      4.3 calls resolve_super_or_fail Super in parallel on own thread T2
   313 //      4.4 finds T2, Super -> throws class circularity
   314 // Must be called, even if superclass is null, since this is
   315 // where the placeholder entry is created which claims this
   316 // thread is loading this class/classloader.
   317 Klass* SystemDictionary::resolve_super_or_fail(Symbol* child_name,
   318                                                  Symbol* class_name,
   319                                                  Handle class_loader,
   320                                                  Handle protection_domain,
   321                                                  bool is_superclass,
   322                                                  TRAPS) {
   323   // Double-check, if child class is already loaded, just return super-class,interface
   324   // Don't add a placedholder if already loaded, i.e. already in system dictionary
   325   // Make sure there's a placeholder for the *child* before resolving.
   326   // Used as a claim that this thread is currently loading superclass/classloader
   327   // Used here for ClassCircularity checks and also for heap verification
   328   // (every InstanceKlass in the heap needs to be in the system dictionary
   329   // or have a placeholder).
   330   // Must check ClassCircularity before checking if super class is already loaded
   331   //
   332   // We might not already have a placeholder if this child_name was
   333   // first seen via resolve_from_stream (jni_DefineClass or JVM_DefineClass);
   334   // the name of the class might not be known until the stream is actually
   335   // parsed.
   336   // Bugs 4643874, 4715493
   337   // compute_hash can have a safepoint
   339   ClassLoaderData* loader_data = class_loader_data(class_loader);
   340   unsigned int d_hash = dictionary()->compute_hash(child_name, loader_data);
   341   int d_index = dictionary()->hash_to_index(d_hash);
   342   unsigned int p_hash = placeholders()->compute_hash(child_name, loader_data);
   343   int p_index = placeholders()->hash_to_index(p_hash);
   344   // can't throw error holding a lock
   345   bool child_already_loaded = false;
   346   bool throw_circularity_error = false;
   347   {
   348     MutexLocker mu(SystemDictionary_lock, THREAD);
   349     Klass* childk = find_class(d_index, d_hash, child_name, loader_data);
   350     Klass* quicksuperk;
   351     // to support // loading: if child done loading, just return superclass
   352     // if class_name, & class_loader don't match:
   353     // if initial define, SD update will give LinkageError
   354     // if redefine: compare_class_versions will give HIERARCHY_CHANGED
   355     // so we don't throw an exception here.
   356     // see: nsk redefclass014 & java.lang.instrument Instrument032
   357     if ((childk != NULL ) && (is_superclass) &&
   358        ((quicksuperk = InstanceKlass::cast(childk)->super()) != NULL) &&
   360          ((quicksuperk->name() == class_name) &&
   361             (quicksuperk->class_loader()  == class_loader()))) {
   362            return quicksuperk;
   363     } else {
   364       PlaceholderEntry* probe = placeholders()->get_entry(p_index, p_hash, child_name, loader_data);
   365       if (probe && probe->check_seen_thread(THREAD, PlaceholderTable::LOAD_SUPER)) {
   366           throw_circularity_error = true;
   367       }
   368     }
   369     if (!throw_circularity_error) {
   370       PlaceholderEntry* newprobe = placeholders()->find_and_add(p_index, p_hash, child_name, loader_data, PlaceholderTable::LOAD_SUPER, class_name, THREAD);
   371     }
   372   }
   373   if (throw_circularity_error) {
   374       ResourceMark rm(THREAD);
   375       THROW_MSG_NULL(vmSymbols::java_lang_ClassCircularityError(), child_name->as_C_string());
   376   }
   378 // java.lang.Object should have been found above
   379   assert(class_name != NULL, "null super class for resolving");
   380   // Resolve the super class or interface, check results on return
   381   Klass* superk = SystemDictionary::resolve_or_null(class_name,
   382                                                  class_loader,
   383                                                  protection_domain,
   384                                                  THREAD);
   386   KlassHandle superk_h(THREAD, superk);
   388   // Clean up of placeholders moved so that each classloadAction registrar self-cleans up
   389   // It is no longer necessary to keep the placeholder table alive until update_dictionary
   390   // or error. GC used to walk the placeholder table as strong roots.
   391   // The instanceKlass is kept alive because the class loader is on the stack,
   392   // which keeps the loader_data alive, as well as all instanceKlasses in
   393   // the loader_data. parseClassFile adds the instanceKlass to loader_data.
   394   {
   395     MutexLocker mu(SystemDictionary_lock, THREAD);
   396     placeholders()->find_and_remove(p_index, p_hash, child_name, loader_data, PlaceholderTable::LOAD_SUPER, THREAD);
   397     SystemDictionary_lock->notify_all();
   398   }
   399   if (HAS_PENDING_EXCEPTION || superk_h() == NULL) {
   400     // can null superk
   401     superk_h = KlassHandle(THREAD, handle_resolution_exception(class_name, class_loader, protection_domain, true, superk_h, THREAD));
   402   }
   404   return superk_h();
   405 }
   407 void SystemDictionary::validate_protection_domain(instanceKlassHandle klass,
   408                                                   Handle class_loader,
   409                                                   Handle protection_domain,
   410                                                   TRAPS) {
   411   if(!has_checkPackageAccess()) return;
   413   // Now we have to call back to java to check if the initating class has access
   414   JavaValue result(T_VOID);
   415   if (TraceProtectionDomainVerification) {
   416     // Print out trace information
   417     tty->print_cr("Checking package access");
   418     tty->print(" - class loader:      "); class_loader()->print_value_on(tty);      tty->cr();
   419     tty->print(" - protection domain: "); protection_domain()->print_value_on(tty); tty->cr();
   420     tty->print(" - loading:           "); klass()->print_value_on(tty);             tty->cr();
   421   }
   423   KlassHandle system_loader(THREAD, SystemDictionary::ClassLoader_klass());
   424   JavaCalls::call_special(&result,
   425                          class_loader,
   426                          system_loader,
   427                          vmSymbols::checkPackageAccess_name(),
   428                          vmSymbols::class_protectiondomain_signature(),
   429                          Handle(THREAD, klass->java_mirror()),
   430                          protection_domain,
   431                          THREAD);
   433   if (TraceProtectionDomainVerification) {
   434     if (HAS_PENDING_EXCEPTION) {
   435       tty->print_cr(" -> DENIED !!!!!!!!!!!!!!!!!!!!!");
   436     } else {
   437      tty->print_cr(" -> granted");
   438     }
   439     tty->cr();
   440   }
   442   if (HAS_PENDING_EXCEPTION) return;
   444   // If no exception has been thrown, we have validated the protection domain
   445   // Insert the protection domain of the initiating class into the set.
   446   {
   447     // We recalculate the entry here -- we've called out to java since
   448     // the last time it was calculated.
   449     ClassLoaderData* loader_data = class_loader_data(class_loader);
   451     Symbol*  kn = klass->name();
   452     unsigned int d_hash = dictionary()->compute_hash(kn, loader_data);
   453     int d_index = dictionary()->hash_to_index(d_hash);
   455     MutexLocker mu(SystemDictionary_lock, THREAD);
   456     {
   457       // Note that we have an entry, and entries can be deleted only during GC,
   458       // so we cannot allow GC to occur while we're holding this entry.
   460       // We're using a No_Safepoint_Verifier to catch any place where we
   461       // might potentially do a GC at all.
   462       // Dictionary::do_unloading() asserts that classes in SD are only
   463       // unloaded at a safepoint. Anonymous classes are not in SD.
   464       No_Safepoint_Verifier nosafepoint;
   465       dictionary()->add_protection_domain(d_index, d_hash, klass, loader_data,
   466                                           protection_domain, THREAD);
   467     }
   468   }
   469 }
   471 // We only get here if this thread finds that another thread
   472 // has already claimed the placeholder token for the current operation,
   473 // but that other thread either never owned or gave up the
   474 // object lock
   475 // Waits on SystemDictionary_lock to indicate placeholder table updated
   476 // On return, caller must recheck placeholder table state
   477 //
   478 // We only get here if
   479 //  1) custom classLoader, i.e. not bootstrap classloader
   480 //  2) UnsyncloadClass not set
   481 //  3) custom classLoader has broken the class loader objectLock
   482 //     so another thread got here in parallel
   483 //
   484 // lockObject must be held.
   485 // Complicated dance due to lock ordering:
   486 // Must first release the classloader object lock to
   487 // allow initial definer to complete the class definition
   488 // and to avoid deadlock
   489 // Reclaim classloader lock object with same original recursion count
   490 // Must release SystemDictionary_lock after notify, since
   491 // class loader lock must be claimed before SystemDictionary_lock
   492 // to prevent deadlocks
   493 //
   494 // The notify allows applications that did an untimed wait() on
   495 // the classloader object lock to not hang.
   496 void SystemDictionary::double_lock_wait(Handle lockObject, TRAPS) {
   497   assert_lock_strong(SystemDictionary_lock);
   499   bool calledholdinglock
   500       = ObjectSynchronizer::current_thread_holds_lock((JavaThread*)THREAD, lockObject);
   501   assert(calledholdinglock,"must hold lock for notify");
   502   assert((!(lockObject() == _system_loader_lock_obj) && !is_parallelCapable(lockObject)), "unexpected double_lock_wait");
   503   ObjectSynchronizer::notifyall(lockObject, THREAD);
   504   intptr_t recursions =  ObjectSynchronizer::complete_exit(lockObject, THREAD);
   505   SystemDictionary_lock->wait();
   506   SystemDictionary_lock->unlock();
   507   ObjectSynchronizer::reenter(lockObject, recursions, THREAD);
   508   SystemDictionary_lock->lock();
   509 }
   511 // If the class in is in the placeholder table, class loading is in progress
   512 // For cases where the application changes threads to load classes, it
   513 // is critical to ClassCircularity detection that we try loading
   514 // the superclass on the same thread internally, so we do parallel
   515 // super class loading here.
   516 // This also is critical in cases where the original thread gets stalled
   517 // even in non-circularity situations.
   518 // Note: must call resolve_super_or_fail even if null super -
   519 // to force placeholder entry creation for this class for circularity detection
   520 // Caller must check for pending exception
   521 // Returns non-null Klass* if other thread has completed load
   522 // and we are done,
   523 // If return null Klass* and no pending exception, the caller must load the class
   524 instanceKlassHandle SystemDictionary::handle_parallel_super_load(
   525     Symbol* name, Symbol* superclassname, Handle class_loader,
   526     Handle protection_domain, Handle lockObject, TRAPS) {
   528   instanceKlassHandle nh = instanceKlassHandle(); // null Handle
   529   ClassLoaderData* loader_data = class_loader_data(class_loader);
   530   unsigned int d_hash = dictionary()->compute_hash(name, loader_data);
   531   int d_index = dictionary()->hash_to_index(d_hash);
   532   unsigned int p_hash = placeholders()->compute_hash(name, loader_data);
   533   int p_index = placeholders()->hash_to_index(p_hash);
   535   // superk is not used, resolve_super called for circularity check only
   536   // This code is reached in two situations. One if this thread
   537   // is loading the same class twice (e.g. ClassCircularity, or
   538   // java.lang.instrument).
   539   // The second is if another thread started the resolve_super first
   540   // and has not yet finished.
   541   // In both cases the original caller will clean up the placeholder
   542   // entry on error.
   543   Klass* superk = SystemDictionary::resolve_super_or_fail(name,
   544                                                           superclassname,
   545                                                           class_loader,
   546                                                           protection_domain,
   547                                                           true,
   548                                                           CHECK_(nh));
   550   // parallelCapable class loaders do NOT wait for parallel superclass loads to complete
   551   // Serial class loaders and bootstrap classloader do wait for superclass loads
   552  if (!class_loader.is_null() && is_parallelCapable(class_loader)) {
   553     MutexLocker mu(SystemDictionary_lock, THREAD);
   554     // Check if classloading completed while we were loading superclass or waiting
   555     Klass* check = find_class(d_index, d_hash, name, loader_data);
   556     if (check != NULL) {
   557       // Klass is already loaded, so just return it
   558       return(instanceKlassHandle(THREAD, check));
   559     } else {
   560       return nh;
   561     }
   562   }
   564   // must loop to both handle other placeholder updates
   565   // and spurious notifications
   566   bool super_load_in_progress = true;
   567   PlaceholderEntry* placeholder;
   568   while (super_load_in_progress) {
   569     MutexLocker mu(SystemDictionary_lock, THREAD);
   570     // Check if classloading completed while we were loading superclass or waiting
   571     Klass* check = find_class(d_index, d_hash, name, loader_data);
   572     if (check != NULL) {
   573       // Klass is already loaded, so just return it
   574       return(instanceKlassHandle(THREAD, check));
   575     } else {
   576       placeholder = placeholders()->get_entry(p_index, p_hash, name, loader_data);
   577       if (placeholder && placeholder->super_load_in_progress() ){
   578         // Before UnsyncloadClass:
   579         // We only get here if the application has released the
   580         // classloader lock when another thread was in the middle of loading a
   581         // superclass/superinterface for this class, and now
   582         // this thread is also trying to load this class.
   583         // To minimize surprises, the first thread that started to
   584         // load a class should be the one to complete the loading
   585         // with the classfile it initially expected.
   586         // This logic has the current thread wait once it has done
   587         // all the superclass/superinterface loading it can, until
   588         // the original thread completes the class loading or fails
   589         // If it completes we will use the resulting InstanceKlass
   590         // which we will find below in the systemDictionary.
   591         // We also get here for parallel bootstrap classloader
   592         if (class_loader.is_null()) {
   593           SystemDictionary_lock->wait();
   594         } else {
   595           double_lock_wait(lockObject, THREAD);
   596         }
   597       } else {
   598         // If not in SD and not in PH, other thread's load must have failed
   599         super_load_in_progress = false;
   600       }
   601     }
   602   }
   603   return (nh);
   604 }
   606 // utility function for class load event
   607 static void post_class_load_event(EventClassLoad &event,
   608                                   instanceKlassHandle k,
   609                                   Handle initiating_loader) {
   610 #if INCLUDE_JFR
   611   if (event.should_commit()) {
   612     event.set_loadedClass(k());
   613     event.set_definingClassLoader(k->class_loader_data());
   614     oop class_loader = initiating_loader.is_null() ? (oop)NULL : initiating_loader();
   615     event.set_initiatingClassLoader(class_loader != NULL ?
   616                                     ClassLoaderData::class_loader_data_or_null(class_loader) :
   617                                     (ClassLoaderData*)NULL);
   618     event.commit();
   619   }
   620 #endif // INCLUDE_JFR
   621 }
   623 Klass* SystemDictionary::resolve_instance_class_or_null(Symbol* name,
   624                                                         Handle class_loader,
   625                                                         Handle protection_domain,
   626                                                         TRAPS) {
   627   assert(name != NULL && !FieldType::is_array(name) &&
   628          !FieldType::is_obj(name), "invalid class name");
   630   EventClassLoad class_load_start_event;
   632   // UseNewReflection
   633   // Fix for 4474172; see evaluation for more details
   634   class_loader = Handle(THREAD, java_lang_ClassLoader::non_reflection_class_loader(class_loader()));
   635   ClassLoaderData *loader_data = register_loader(class_loader, CHECK_NULL);
   637   // Do lookup to see if class already exist and the protection domain
   638   // has the right access
   639   // This call uses find which checks protection domain already matches
   640   // All subsequent calls use find_class, and set has_loaded_class so that
   641   // before we return a result we call out to java to check for valid protection domain
   642   // to allow returning the Klass* and add it to the pd_set if it is valid
   643   unsigned int d_hash = dictionary()->compute_hash(name, loader_data);
   644   int d_index = dictionary()->hash_to_index(d_hash);
   645   Klass* probe = dictionary()->find(d_index, d_hash, name, loader_data,
   646                                       protection_domain, THREAD);
   647   if (probe != NULL) return probe;
   650   // Non-bootstrap class loaders will call out to class loader and
   651   // define via jvm/jni_DefineClass which will acquire the
   652   // class loader object lock to protect against multiple threads
   653   // defining the class in parallel by accident.
   654   // This lock must be acquired here so the waiter will find
   655   // any successful result in the SystemDictionary and not attempt
   656   // the define
   657   // ParallelCapable Classloaders and the bootstrap classloader,
   658   // or all classloaders with UnsyncloadClass do not acquire lock here
   659   bool DoObjectLock = true;
   660   if (is_parallelCapable(class_loader)) {
   661     DoObjectLock = false;
   662   }
   664   unsigned int p_hash = placeholders()->compute_hash(name, loader_data);
   665   int p_index = placeholders()->hash_to_index(p_hash);
   667   // Class is not in SystemDictionary so we have to do loading.
   668   // Make sure we are synchronized on the class loader before we proceed
   669   Handle lockObject = compute_loader_lock_object(class_loader, THREAD);
   670   check_loader_lock_contention(lockObject, THREAD);
   671   ObjectLocker ol(lockObject, THREAD, DoObjectLock);
   673   // Check again (after locking) if class already exist in SystemDictionary
   674   bool class_has_been_loaded   = false;
   675   bool super_load_in_progress  = false;
   676   bool havesupername = false;
   677   instanceKlassHandle k;
   678   PlaceholderEntry* placeholder;
   679   Symbol* superclassname = NULL;
   681   {
   682     MutexLocker mu(SystemDictionary_lock, THREAD);
   683     Klass* check = find_class(d_index, d_hash, name, loader_data);
   684     if (check != NULL) {
   685       // Klass is already loaded, so just return it
   686       class_has_been_loaded = true;
   687       k = instanceKlassHandle(THREAD, check);
   688     } else {
   689       placeholder = placeholders()->get_entry(p_index, p_hash, name, loader_data);
   690       if (placeholder && placeholder->super_load_in_progress()) {
   691          super_load_in_progress = true;
   692          if (placeholder->havesupername() == true) {
   693            superclassname = placeholder->supername();
   694            havesupername = true;
   695          }
   696       }
   697     }
   698   }
   700   // If the class is in the placeholder table, class loading is in progress
   701   if (super_load_in_progress && havesupername==true) {
   702     k = SystemDictionary::handle_parallel_super_load(name, superclassname,
   703         class_loader, protection_domain, lockObject, THREAD);
   704     if (HAS_PENDING_EXCEPTION) {
   705       return NULL;
   706     }
   707     if (!k.is_null()) {
   708       class_has_been_loaded = true;
   709     }
   710   }
   712   bool throw_circularity_error = false;
   713   if (!class_has_been_loaded) {
   714     bool load_instance_added = false;
   716     // add placeholder entry to record loading instance class
   717     // Five cases:
   718     // All cases need to prevent modifying bootclasssearchpath
   719     // in parallel with a classload of same classname
   720     // Redefineclasses uses existence of the placeholder for the duration
   721     // of the class load to prevent concurrent redefinition of not completely
   722     // defined classes.
   723     // case 1. traditional classloaders that rely on the classloader object lock
   724     //   - no other need for LOAD_INSTANCE
   725     // case 2. traditional classloaders that break the classloader object lock
   726     //    as a deadlock workaround. Detection of this case requires that
   727     //    this check is done while holding the classloader object lock,
   728     //    and that lock is still held when calling classloader's loadClass.
   729     //    For these classloaders, we ensure that the first requestor
   730     //    completes the load and other requestors wait for completion.
   731     // case 3. UnsyncloadClass - don't use objectLocker
   732     //    With this flag, we allow parallel classloading of a
   733     //    class/classloader pair
   734     // case4. Bootstrap classloader - don't own objectLocker
   735     //    This classloader supports parallelism at the classloader level,
   736     //    but only allows a single load of a class/classloader pair.
   737     //    No performance benefit and no deadlock issues.
   738     // case 5. parallelCapable user level classloaders - without objectLocker
   739     //    Allow parallel classloading of a class/classloader pair
   741     {
   742       MutexLocker mu(SystemDictionary_lock, THREAD);
   743       if (class_loader.is_null() || !is_parallelCapable(class_loader)) {
   744         PlaceholderEntry* oldprobe = placeholders()->get_entry(p_index, p_hash, name, loader_data);
   745         if (oldprobe) {
   746           // only need check_seen_thread once, not on each loop
   747           // 6341374 java/lang/Instrument with -Xcomp
   748           if (oldprobe->check_seen_thread(THREAD, PlaceholderTable::LOAD_INSTANCE)) {
   749             throw_circularity_error = true;
   750           } else {
   751             // case 1: traditional: should never see load_in_progress.
   752             while (!class_has_been_loaded && oldprobe && oldprobe->instance_load_in_progress()) {
   754               // case 4: bootstrap classloader: prevent futile classloading,
   755               // wait on first requestor
   756               if (class_loader.is_null()) {
   757                 SystemDictionary_lock->wait();
   758               } else {
   759               // case 2: traditional with broken classloader lock. wait on first
   760               // requestor.
   761                 double_lock_wait(lockObject, THREAD);
   762               }
   763               // Check if classloading completed while we were waiting
   764               Klass* check = find_class(d_index, d_hash, name, loader_data);
   765               if (check != NULL) {
   766                 // Klass is already loaded, so just return it
   767                 k = instanceKlassHandle(THREAD, check);
   768                 class_has_been_loaded = true;
   769               }
   770               // check if other thread failed to load and cleaned up
   771               oldprobe = placeholders()->get_entry(p_index, p_hash, name, loader_data);
   772             }
   773           }
   774         }
   775       }
   776       // All cases: add LOAD_INSTANCE holding SystemDictionary_lock
   777       // case 3: UnsyncloadClass || case 5: parallelCapable: allow competing threads to try
   778       // LOAD_INSTANCE in parallel
   780       if (!throw_circularity_error && !class_has_been_loaded) {
   781         PlaceholderEntry* newprobe = placeholders()->find_and_add(p_index, p_hash, name, loader_data, PlaceholderTable::LOAD_INSTANCE, NULL, THREAD);
   782         load_instance_added = true;
   783         // For class loaders that do not acquire the classloader object lock,
   784         // if they did not catch another thread holding LOAD_INSTANCE,
   785         // need a check analogous to the acquire ObjectLocker/find_class
   786         // i.e. now that we hold the LOAD_INSTANCE token on loading this class/CL
   787         // one final check if the load has already completed
   788         // class loaders holding the ObjectLock shouldn't find the class here
   789         Klass* check = find_class(d_index, d_hash, name, loader_data);
   790         if (check != NULL) {
   791         // Klass is already loaded, so return it after checking/adding protection domain
   792           k = instanceKlassHandle(THREAD, check);
   793           class_has_been_loaded = true;
   794         }
   795       }
   796     }
   798     // must throw error outside of owning lock
   799     if (throw_circularity_error) {
   800       assert(!HAS_PENDING_EXCEPTION && load_instance_added == false,"circularity error cleanup");
   801       ResourceMark rm(THREAD);
   802       THROW_MSG_NULL(vmSymbols::java_lang_ClassCircularityError(), name->as_C_string());
   803     }
   805     if (!class_has_been_loaded) {
   807       // Do actual loading
   808       k = load_instance_class(name, class_loader, THREAD);
   810       // For UnsyncloadClass only
   811       // If they got a linkageError, check if a parallel class load succeeded.
   812       // If it did, then for bytecode resolution the specification requires
   813       // that we return the same result we did for the other thread, i.e. the
   814       // successfully loaded InstanceKlass
   815       // Should not get here for classloaders that support parallelism
   816       // with the new cleaner mechanism, even with AllowParallelDefineClass
   817       // Bootstrap goes through here to allow for an extra guarantee check
   818       if (UnsyncloadClass || (class_loader.is_null())) {
   819         if (k.is_null() && HAS_PENDING_EXCEPTION
   820           && PENDING_EXCEPTION->is_a(SystemDictionary::LinkageError_klass())) {
   821           MutexLocker mu(SystemDictionary_lock, THREAD);
   822           Klass* check = find_class(d_index, d_hash, name, loader_data);
   823           if (check != NULL) {
   824             // Klass is already loaded, so just use it
   825             k = instanceKlassHandle(THREAD, check);
   826             CLEAR_PENDING_EXCEPTION;
   827             guarantee((!class_loader.is_null()), "dup definition for bootstrap loader?");
   828           }
   829         }
   830       }
   832       // If everything was OK (no exceptions, no null return value), and
   833       // class_loader is NOT the defining loader, do a little more bookkeeping.
   834       if (!HAS_PENDING_EXCEPTION && !k.is_null() &&
   835         k->class_loader() != class_loader()) {
   837         check_constraints(d_index, d_hash, k, class_loader, false, THREAD);
   839         // Need to check for a PENDING_EXCEPTION again; check_constraints
   840         // can throw but we may have to remove entry from the placeholder table below.
   841         if (!HAS_PENDING_EXCEPTION) {
   842           // Record dependency for non-parent delegation.
   843           // This recording keeps the defining class loader of the klass (k) found
   844           // from being unloaded while the initiating class loader is loaded
   845           // even if the reference to the defining class loader is dropped
   846           // before references to the initiating class loader.
   847           loader_data->record_dependency(k(), THREAD);
   848         }
   850         if (!HAS_PENDING_EXCEPTION) {
   851           { // Grabbing the Compile_lock prevents systemDictionary updates
   852             // during compilations.
   853             MutexLocker mu(Compile_lock, THREAD);
   854             update_dictionary(d_index, d_hash, p_index, p_hash,
   855                               k, class_loader, THREAD);
   856           }
   858           if (JvmtiExport::should_post_class_load()) {
   859             Thread *thread = THREAD;
   860             assert(thread->is_Java_thread(), "thread->is_Java_thread()");
   861             JvmtiExport::post_class_load((JavaThread *) thread, k());
   862           }
   863         }
   864       }
   865     } // load_instance_class loop
   867     if (load_instance_added == true) {
   868       // clean up placeholder entries for LOAD_INSTANCE success or error
   869       // This brackets the SystemDictionary updates for both defining
   870       // and initiating loaders
   871       MutexLocker mu(SystemDictionary_lock, THREAD);
   872       placeholders()->find_and_remove(p_index, p_hash, name, loader_data, PlaceholderTable::LOAD_INSTANCE, THREAD);
   873       SystemDictionary_lock->notify_all();
   874     }
   875   }
   877   if (HAS_PENDING_EXCEPTION || k.is_null()) {
   878     return NULL;
   879   }
   881   post_class_load_event(class_load_start_event, k, class_loader);
   883 #ifdef ASSERT
   884   {
   885     ClassLoaderData* loader_data = k->class_loader_data();
   886     MutexLocker mu(SystemDictionary_lock, THREAD);
   887     Klass* kk = find_class(name, loader_data);
   888     assert(kk == k(), "should be present in dictionary");
   889   }
   890 #endif
   892   // return if the protection domain in NULL
   893   if (protection_domain() == NULL) return k();
   895   // Check the protection domain has the right access
   896   {
   897     MutexLocker mu(SystemDictionary_lock, THREAD);
   898     // Note that we have an entry, and entries can be deleted only during GC,
   899     // so we cannot allow GC to occur while we're holding this entry.
   900     // We're using a No_Safepoint_Verifier to catch any place where we
   901     // might potentially do a GC at all.
   902     // Dictionary::do_unloading() asserts that classes in SD are only
   903     // unloaded at a safepoint. Anonymous classes are not in SD.
   904     No_Safepoint_Verifier nosafepoint;
   905     if (dictionary()->is_valid_protection_domain(d_index, d_hash, name,
   906                                                  loader_data,
   907                                                  protection_domain)) {
   908       return k();
   909     }
   910   }
   912   // Verify protection domain. If it fails an exception is thrown
   913   validate_protection_domain(k, class_loader, protection_domain, CHECK_NULL);
   915   return k();
   916 }
   919 // This routine does not lock the system dictionary.
   920 //
   921 // Since readers don't hold a lock, we must make sure that system
   922 // dictionary entries are only removed at a safepoint (when only one
   923 // thread is running), and are added to in a safe way (all links must
   924 // be updated in an MT-safe manner).
   925 //
   926 // Callers should be aware that an entry could be added just after
   927 // _dictionary->bucket(index) is read here, so the caller will not see
   928 // the new entry.
   930 Klass* SystemDictionary::find(Symbol* class_name,
   931                               Handle class_loader,
   932                               Handle protection_domain,
   933                               TRAPS) {
   935   // UseNewReflection
   936   // The result of this call should be consistent with the result
   937   // of the call to resolve_instance_class_or_null().
   938   // See evaluation 6790209 and 4474172 for more details.
   939   class_loader = Handle(THREAD, java_lang_ClassLoader::non_reflection_class_loader(class_loader()));
   940   ClassLoaderData* loader_data = ClassLoaderData::class_loader_data_or_null(class_loader());
   942   if (loader_data == NULL) {
   943     // If the ClassLoaderData has not been setup,
   944     // then the class loader has no entries in the dictionary.
   945     return NULL;
   946   }
   948   unsigned int d_hash = dictionary()->compute_hash(class_name, loader_data);
   949   int d_index = dictionary()->hash_to_index(d_hash);
   951   {
   952     // Note that we have an entry, and entries can be deleted only during GC,
   953     // so we cannot allow GC to occur while we're holding this entry.
   954     // We're using a No_Safepoint_Verifier to catch any place where we
   955     // might potentially do a GC at all.
   956     // Dictionary::do_unloading() asserts that classes in SD are only
   957     // unloaded at a safepoint. Anonymous classes are not in SD.
   958     No_Safepoint_Verifier nosafepoint;
   959     return dictionary()->find(d_index, d_hash, class_name, loader_data,
   960                               protection_domain, THREAD);
   961   }
   962 }
   965 // Look for a loaded instance or array klass by name.  Do not do any loading.
   966 // return NULL in case of error.
   967 Klass* SystemDictionary::find_instance_or_array_klass(Symbol* class_name,
   968                                                       Handle class_loader,
   969                                                       Handle protection_domain,
   970                                                       TRAPS) {
   971   Klass* k = NULL;
   972   assert(class_name != NULL, "class name must be non NULL");
   974   if (FieldType::is_array(class_name)) {
   975     // The name refers to an array.  Parse the name.
   976     // dimension and object_key in FieldArrayInfo are assigned as a
   977     // side-effect of this call
   978     FieldArrayInfo fd;
   979     BasicType t = FieldType::get_array_info(class_name, fd, CHECK_(NULL));
   980     if (t != T_OBJECT) {
   981       k = Universe::typeArrayKlassObj(t);
   982     } else {
   983       k = SystemDictionary::find(fd.object_key(), class_loader, protection_domain, THREAD);
   984     }
   985     if (k != NULL) {
   986       k = k->array_klass_or_null(fd.dimension());
   987     }
   988   } else {
   989     k = find(class_name, class_loader, protection_domain, THREAD);
   990   }
   991   return k;
   992 }
   994 // Note: this method is much like resolve_from_stream, but
   995 // updates no supplemental data structures.
   996 // TODO consolidate the two methods with a helper routine?
   997 Klass* SystemDictionary::parse_stream(Symbol* class_name,
   998                                       Handle class_loader,
   999                                       Handle protection_domain,
  1000                                       ClassFileStream* st,
  1001                                       KlassHandle host_klass,
  1002                                       GrowableArray<Handle>* cp_patches,
  1003                                       TRAPS) {
  1004   TempNewSymbol parsed_name = NULL;
  1006   EventClassLoad class_load_start_event;
  1008   ClassLoaderData* loader_data;
  1009   if (host_klass.not_null()) {
  1010     // Create a new CLD for anonymous class, that uses the same class loader
  1011     // as the host_klass
  1012     assert(EnableInvokeDynamic, "");
  1013     guarantee(host_klass->class_loader() == class_loader(), "should be the same");
  1014     guarantee(!DumpSharedSpaces, "must not create anonymous classes when dumping");
  1015     loader_data = ClassLoaderData::anonymous_class_loader_data(class_loader(), CHECK_NULL);
  1016     loader_data->record_dependency(host_klass(), CHECK_NULL);
  1017   } else {
  1018     loader_data = ClassLoaderData::class_loader_data(class_loader());
  1021   // Parse the stream. Note that we do this even though this klass might
  1022   // already be present in the SystemDictionary, otherwise we would not
  1023   // throw potential ClassFormatErrors.
  1024   //
  1025   // Note: "name" is updated.
  1027   instanceKlassHandle k = ClassFileParser(st).parseClassFile(class_name,
  1028                                                              loader_data,
  1029                                                              protection_domain,
  1030                                                              host_klass,
  1031                                                              cp_patches,
  1032                                                              parsed_name,
  1033                                                              true,
  1034                                                              THREAD);
  1037   if (host_klass.not_null() && k.not_null()) {
  1038     assert(EnableInvokeDynamic, "");
  1039     // If it's anonymous, initialize it now, since nobody else will.
  1042       MutexLocker mu_r(Compile_lock, THREAD);
  1044       // Add to class hierarchy, initialize vtables, and do possible
  1045       // deoptimizations.
  1046       add_to_hierarchy(k, CHECK_NULL); // No exception, but can block
  1048       // But, do not add to system dictionary.
  1050       // compiled code dependencies need to be validated anyway
  1051       notice_modification();
  1054     // Rewrite and patch constant pool here.
  1055     k->link_class(CHECK_NULL);
  1056     if (cp_patches != NULL) {
  1057       k->constants()->patch_resolved_references(cp_patches);
  1059     k->eager_initialize(CHECK_NULL);
  1061     // notify jvmti
  1062     if (JvmtiExport::should_post_class_load()) {
  1063         assert(THREAD->is_Java_thread(), "thread->is_Java_thread()");
  1064         JvmtiExport::post_class_load((JavaThread *) THREAD, k());
  1067     post_class_load_event(class_load_start_event, k, class_loader);
  1069   assert(host_klass.not_null() || cp_patches == NULL,
  1070          "cp_patches only found with host_klass");
  1072   return k();
  1075 // Add a klass to the system from a stream (called by jni_DefineClass and
  1076 // JVM_DefineClass).
  1077 // Note: class_name can be NULL. In that case we do not know the name of
  1078 // the class until we have parsed the stream.
  1080 Klass* SystemDictionary::resolve_from_stream(Symbol* class_name,
  1081                                              Handle class_loader,
  1082                                              Handle protection_domain,
  1083                                              ClassFileStream* st,
  1084                                              bool verify,
  1085                                              TRAPS) {
  1087   // Classloaders that support parallelism, e.g. bootstrap classloader,
  1088   // or all classloaders with UnsyncloadClass do not acquire lock here
  1089   bool DoObjectLock = true;
  1090   if (is_parallelCapable(class_loader)) {
  1091     DoObjectLock = false;
  1094   ClassLoaderData* loader_data = register_loader(class_loader, CHECK_NULL);
  1096   // Make sure we are synchronized on the class loader before we proceed
  1097   Handle lockObject = compute_loader_lock_object(class_loader, THREAD);
  1098   check_loader_lock_contention(lockObject, THREAD);
  1099   ObjectLocker ol(lockObject, THREAD, DoObjectLock);
  1101   TempNewSymbol parsed_name = NULL;
  1103   // Parse the stream. Note that we do this even though this klass might
  1104   // already be present in the SystemDictionary, otherwise we would not
  1105   // throw potential ClassFormatErrors.
  1106   //
  1107   // Note: "name" is updated.
  1109   ClassFileParser parser(st);
  1110   instanceKlassHandle k = parser.parseClassFile(class_name,
  1111                                                 loader_data,
  1112                                                 protection_domain,
  1113                                                 parsed_name,
  1114                                                 verify,
  1115                                                 THREAD);
  1117   const char* pkg = "java/";
  1118   size_t pkglen = strlen(pkg);
  1119   if (!HAS_PENDING_EXCEPTION &&
  1120       !class_loader.is_null() &&
  1121       parsed_name != NULL &&
  1122       parsed_name->utf8_length() >= (int)pkglen &&
  1123       !strncmp((const char*)parsed_name->bytes(), pkg, pkglen)) {
  1124     // It is illegal to define classes in the "java." package from
  1125     // JVM_DefineClass or jni_DefineClass unless you're the bootclassloader
  1126     ResourceMark rm(THREAD);
  1127     char* name = parsed_name->as_C_string();
  1128     char* index = strrchr(name, '/');
  1129     assert(index != NULL, "must be");
  1130     *index = '\0'; // chop to just the package name
  1131     while ((index = strchr(name, '/')) != NULL) {
  1132       *index = '.'; // replace '/' with '.' in package name
  1134     const char* fmt = "Prohibited package name: %s";
  1135     size_t len = strlen(fmt) + strlen(name);
  1136     char* message = NEW_RESOURCE_ARRAY(char, len);
  1137     jio_snprintf(message, len, fmt, name);
  1138     Exceptions::_throw_msg(THREAD_AND_LOCATION,
  1139       vmSymbols::java_lang_SecurityException(), message);
  1142   if (!HAS_PENDING_EXCEPTION) {
  1143     assert(parsed_name != NULL, "Sanity");
  1144     assert(class_name == NULL || class_name == parsed_name, "name mismatch");
  1145     // Verification prevents us from creating names with dots in them, this
  1146     // asserts that that's the case.
  1147     assert(is_internal_format(parsed_name),
  1148            "external class name format used internally");
  1150 #if INCLUDE_JFR
  1152       InstanceKlass* ik = k();
  1153       ON_KLASS_CREATION(ik, parser, THREAD);
  1154       k = instanceKlassHandle(ik);
  1156 #endif
  1158     // Add class just loaded
  1159     // If a class loader supports parallel classloading handle parallel define requests
  1160     // find_or_define_instance_class may return a different InstanceKlass
  1161     if (is_parallelCapable(class_loader)) {
  1162       k = find_or_define_instance_class(class_name, class_loader, k, THREAD);
  1163     } else {
  1164       define_instance_class(k, THREAD);
  1168   // Make sure we have an entry in the SystemDictionary on success
  1169   debug_only( {
  1170     if (!HAS_PENDING_EXCEPTION) {
  1171       assert(parsed_name != NULL, "parsed_name is still null?");
  1172       Symbol*  h_name    = k->name();
  1173       ClassLoaderData *defining_loader_data = k->class_loader_data();
  1175       MutexLocker mu(SystemDictionary_lock, THREAD);
  1177       Klass* check = find_class(parsed_name, loader_data);
  1178       assert(check == k(), "should be present in the dictionary");
  1180       Klass* check2 = find_class(h_name, defining_loader_data);
  1181       assert(check == check2, "name inconsistancy in SystemDictionary");
  1183   } );
  1185   return k();
  1188 #if INCLUDE_CDS
  1189 void SystemDictionary::set_shared_dictionary(HashtableBucket<mtClass>* t, int length,
  1190                                              int number_of_entries) {
  1191   assert(length == _nof_buckets * sizeof(HashtableBucket<mtClass>),
  1192          "bad shared dictionary size.");
  1193   _shared_dictionary = new Dictionary(_nof_buckets, t, number_of_entries);
  1197 // If there is a shared dictionary, then find the entry for the
  1198 // given shared system class, if any.
  1200 Klass* SystemDictionary::find_shared_class(Symbol* class_name) {
  1201   if (shared_dictionary() != NULL) {
  1202     unsigned int d_hash = shared_dictionary()->compute_hash(class_name, NULL);
  1203     int d_index = shared_dictionary()->hash_to_index(d_hash);
  1205     return shared_dictionary()->find_shared_class(d_index, d_hash, class_name);
  1206   } else {
  1207     return NULL;
  1212 // Load a class from the shared spaces (found through the shared system
  1213 // dictionary).  Force the superclass and all interfaces to be loaded.
  1214 // Update the class definition to include sibling classes and no
  1215 // subclasses (yet).  [Classes in the shared space are not part of the
  1216 // object hierarchy until loaded.]
  1218 instanceKlassHandle SystemDictionary::load_shared_class(
  1219                  Symbol* class_name, Handle class_loader, TRAPS) {
  1220   instanceKlassHandle ik (THREAD, find_shared_class(class_name));
  1221   // Make sure we only return the boot class for the NULL classloader.
  1222   if (ik.not_null() &&
  1223       SharedClassUtil::is_shared_boot_class(ik()) && class_loader.is_null()) {
  1224     Handle protection_domain;
  1225     return load_shared_class(ik, class_loader, protection_domain, THREAD);
  1227   return instanceKlassHandle();
  1230 instanceKlassHandle SystemDictionary::load_shared_class(instanceKlassHandle ik,
  1231                                                         Handle class_loader,
  1232                                                         Handle protection_domain, TRAPS) {
  1233   if (ik.not_null()) {
  1234     instanceKlassHandle nh = instanceKlassHandle(); // null Handle
  1235     Symbol* class_name = ik->name();
  1237     // Found the class, now load the superclass and interfaces.  If they
  1238     // are shared, add them to the main system dictionary and reset
  1239     // their hierarchy references (supers, subs, and interfaces).
  1241     if (ik->super() != NULL) {
  1242       Symbol*  cn = ik->super()->name();
  1243       Klass *s = resolve_super_or_fail(class_name, cn,
  1244                                        class_loader, protection_domain, true, CHECK_(nh));
  1245       if (s != ik->super()) {
  1246         // The dynamically resolved super class is not the same as the one we used during dump time,
  1247         // so we cannot use ik.
  1248         return nh;
  1252     Array<Klass*>* interfaces = ik->local_interfaces();
  1253     int num_interfaces = interfaces->length();
  1254     for (int index = 0; index < num_interfaces; index++) {
  1255       Klass* k = interfaces->at(index);
  1257       // Note: can not use InstanceKlass::cast here because
  1258       // interfaces' InstanceKlass's C++ vtbls haven't been
  1259       // reinitialized yet (they will be once the interface classes
  1260       // are loaded)
  1261       Symbol*  name  = k->name();
  1262       Klass* i = resolve_super_or_fail(class_name, name, class_loader, protection_domain, false, CHECK_(nh));
  1263       if (k != i) {
  1264         // The dynamically resolved interface class is not the same as the one we used during dump time,
  1265         // so we cannot use ik.
  1266         return nh;
  1270     // Adjust methods to recover missing data.  They need addresses for
  1271     // interpreter entry points and their default native method address
  1272     // must be reset.
  1274     // Updating methods must be done under a lock so multiple
  1275     // threads don't update these in parallel
  1276     //
  1277     // Shared classes are all currently loaded by either the bootstrap or
  1278     // internal parallel class loaders, so this will never cause a deadlock
  1279     // on a custom class loader lock.
  1281     ClassLoaderData* loader_data = ClassLoaderData::class_loader_data(class_loader());
  1283       Handle lockObject = compute_loader_lock_object(class_loader, THREAD);
  1284       check_loader_lock_contention(lockObject, THREAD);
  1285       ObjectLocker ol(lockObject, THREAD, true);
  1286       ik->restore_unshareable_info(loader_data, protection_domain, CHECK_(nh));
  1289     if (TraceClassLoading) {
  1290       ResourceMark rm;
  1291       tty->print("[Loaded %s", ik->external_name());
  1292       tty->print(" from shared objects file");
  1293       if (class_loader.not_null()) {
  1294         tty->print(" by %s", loader_data->loader_name());
  1296       tty->print_cr("]");
  1299     if (DumpLoadedClassList != NULL && classlist_file->is_open()) {
  1300       // Only dump the classes that can be stored into CDS archive
  1301       if (SystemDictionaryShared::is_sharing_possible(loader_data)) {
  1302         ResourceMark rm(THREAD);
  1303         classlist_file->print_cr("%s", ik->name()->as_C_string());
  1304         classlist_file->flush();
  1308     // notify a class loaded from shared object
  1309     ClassLoadingService::notify_class_loaded(InstanceKlass::cast(ik()),
  1310                                              true /* shared class */);
  1312   return ik;
  1314 #endif // INCLUDE_CDS
  1316 instanceKlassHandle SystemDictionary::load_instance_class(Symbol* class_name, Handle class_loader, TRAPS) {
  1317   instanceKlassHandle nh = instanceKlassHandle(); // null Handle
  1318   if (class_loader.is_null()) {
  1320     // Search the shared system dictionary for classes preloaded into the
  1321     // shared spaces.
  1322     instanceKlassHandle k;
  1324 #if INCLUDE_CDS
  1325       PerfTraceTime vmtimer(ClassLoader::perf_shared_classload_time());
  1326       k = load_shared_class(class_name, class_loader, THREAD);
  1327 #endif
  1330     if (k.is_null()) {
  1331       // Use VM class loader
  1332       PerfTraceTime vmtimer(ClassLoader::perf_sys_classload_time());
  1333       k = ClassLoader::load_classfile(class_name, CHECK_(nh));
  1336     // find_or_define_instance_class may return a different InstanceKlass
  1337     if (!k.is_null()) {
  1338       k = find_or_define_instance_class(class_name, class_loader, k, CHECK_(nh));
  1340 #if INCLUDE_JFR
  1341     else {
  1342       assert(jfr_event_handler_proxy != NULL, "invariant");
  1343       if (class_name == jfr_event_handler_proxy) {
  1344         // EventHandlerProxy class is generated dynamically in
  1345         // EventHandlerProxyCreator::makeEventHandlerProxyClass
  1346         // method, so we generate a Java call from here.
  1347         //
  1348         // EventHandlerProxy class will finally be defined in
  1349         // SystemDictionary::resolve_from_stream method, down
  1350         // the call stack. Bootstrap classloader is parallel-capable,
  1351         // so no concurrency issues are expected.
  1352         CLEAR_PENDING_EXCEPTION;
  1353         k = JfrUpcalls::load_event_handler_proxy_class(THREAD);
  1354         assert(!k.is_null(), "invariant");
  1357 #endif // INCLUDE_JFR
  1359     return k;
  1360   } else {
  1361     // Use user specified class loader to load class. Call loadClass operation on class_loader.
  1362     ResourceMark rm(THREAD);
  1364     assert(THREAD->is_Java_thread(), "must be a JavaThread");
  1365     JavaThread* jt = (JavaThread*) THREAD;
  1367     PerfClassTraceTime vmtimer(ClassLoader::perf_app_classload_time(),
  1368                                ClassLoader::perf_app_classload_selftime(),
  1369                                ClassLoader::perf_app_classload_count(),
  1370                                jt->get_thread_stat()->perf_recursion_counts_addr(),
  1371                                jt->get_thread_stat()->perf_timers_addr(),
  1372                                PerfClassTraceTime::CLASS_LOAD);
  1374     Handle s = java_lang_String::create_from_symbol(class_name, CHECK_(nh));
  1375     // Translate to external class name format, i.e., convert '/' chars to '.'
  1376     Handle string = java_lang_String::externalize_classname(s, CHECK_(nh));
  1378     JavaValue result(T_OBJECT);
  1380     KlassHandle spec_klass (THREAD, SystemDictionary::ClassLoader_klass());
  1382     // Call public unsynchronized loadClass(String) directly for all class loaders
  1383     // for parallelCapable class loaders. JDK >=7, loadClass(String, boolean) will
  1384     // acquire a class-name based lock rather than the class loader object lock.
  1385     // JDK < 7 already acquire the class loader lock in loadClass(String, boolean),
  1386     // so the call to loadClassInternal() was not required.
  1387     //
  1388     // UnsyncloadClass flag means both call loadClass(String) and do
  1389     // not acquire the class loader lock even for class loaders that are
  1390     // not parallelCapable. This was a risky transitional
  1391     // flag for diagnostic purposes only. It is risky to call
  1392     // custom class loaders without synchronization.
  1393     // WARNING If a custom class loader does NOT synchronizer findClass, or callers of
  1394     // findClass, the UnsyncloadClass flag risks unexpected timing bugs in the field.
  1395     // Do NOT assume this will be supported in future releases.
  1396     //
  1397     // Added MustCallLoadClassInternal in case we discover in the field
  1398     // a customer that counts on this call
  1399     if (MustCallLoadClassInternal && has_loadClassInternal()) {
  1400       JavaCalls::call_special(&result,
  1401                               class_loader,
  1402                               spec_klass,
  1403                               vmSymbols::loadClassInternal_name(),
  1404                               vmSymbols::string_class_signature(),
  1405                               string,
  1406                               CHECK_(nh));
  1407     } else {
  1408       JavaCalls::call_virtual(&result,
  1409                               class_loader,
  1410                               spec_klass,
  1411                               vmSymbols::loadClass_name(),
  1412                               vmSymbols::string_class_signature(),
  1413                               string,
  1414                               CHECK_(nh));
  1417     assert(result.get_type() == T_OBJECT, "just checking");
  1418     oop obj = (oop) result.get_jobject();
  1420     // Primitive classes return null since forName() can not be
  1421     // used to obtain any of the Class objects representing primitives or void
  1422     if ((obj != NULL) && !(java_lang_Class::is_primitive(obj))) {
  1423       instanceKlassHandle k =
  1424                 instanceKlassHandle(THREAD, java_lang_Class::as_Klass(obj));
  1425       // For user defined Java class loaders, check that the name returned is
  1426       // the same as that requested.  This check is done for the bootstrap
  1427       // loader when parsing the class file.
  1428       if (class_name == k->name()) {
  1429         return k;
  1432     // Class is not found or has the wrong name, return NULL
  1433     return nh;
  1437 static void post_class_define_event(InstanceKlass* k, const ClassLoaderData* def_cld) {
  1438   EventClassDefine event;
  1439   if (event.should_commit()) {
  1440     event.set_definedClass(k);
  1441     event.set_definingClassLoader(def_cld);
  1442     event.commit();
  1446 void SystemDictionary::define_instance_class(instanceKlassHandle k, TRAPS) {
  1448   ClassLoaderData* loader_data = k->class_loader_data();
  1449   Handle class_loader_h(THREAD, loader_data->class_loader());
  1451   for (uintx it = 0; it < GCExpandToAllocateDelayMillis; it++){}
  1453  // for bootstrap and other parallel classloaders don't acquire lock,
  1454  // use placeholder token
  1455  // If a parallelCapable class loader calls define_instance_class instead of
  1456  // find_or_define_instance_class to get here, we have a timing
  1457  // hole with systemDictionary updates and check_constraints
  1458  if (!class_loader_h.is_null() && !is_parallelCapable(class_loader_h)) {
  1459     assert(ObjectSynchronizer::current_thread_holds_lock((JavaThread*)THREAD,
  1460          compute_loader_lock_object(class_loader_h, THREAD)),
  1461          "define called without lock");
  1464   // Check class-loading constraints. Throw exception if violation is detected.
  1465   // Grabs and releases SystemDictionary_lock
  1466   // The check_constraints/find_class call and update_dictionary sequence
  1467   // must be "atomic" for a specific class/classloader pair so we never
  1468   // define two different instanceKlasses for that class/classloader pair.
  1469   // Existing classloaders will call define_instance_class with the
  1470   // classloader lock held
  1471   // Parallel classloaders will call find_or_define_instance_class
  1472   // which will require a token to perform the define class
  1473   Symbol*  name_h = k->name();
  1474   unsigned int d_hash = dictionary()->compute_hash(name_h, loader_data);
  1475   int d_index = dictionary()->hash_to_index(d_hash);
  1476   check_constraints(d_index, d_hash, k, class_loader_h, true, CHECK);
  1478   // Register class just loaded with class loader (placed in Vector)
  1479   // Note we do this before updating the dictionary, as this can
  1480   // fail with an OutOfMemoryError (if it does, we will *not* put this
  1481   // class in the dictionary and will not update the class hierarchy).
  1482   // JVMTI FollowReferences needs to find the classes this way.
  1483   if (k->class_loader() != NULL) {
  1484     methodHandle m(THREAD, Universe::loader_addClass_method());
  1485     JavaValue result(T_VOID);
  1486     JavaCallArguments args(class_loader_h);
  1487     args.push_oop(Handle(THREAD, k->java_mirror()));
  1488     JavaCalls::call(&result, m, &args, CHECK);
  1491   // Add the new class. We need recompile lock during update of CHA.
  1493     unsigned int p_hash = placeholders()->compute_hash(name_h, loader_data);
  1494     int p_index = placeholders()->hash_to_index(p_hash);
  1496     MutexLocker mu_r(Compile_lock, THREAD);
  1498     // Add to class hierarchy, initialize vtables, and do possible
  1499     // deoptimizations.
  1500     add_to_hierarchy(k, CHECK); // No exception, but can block
  1502     // Add to systemDictionary - so other classes can see it.
  1503     // Grabs and releases SystemDictionary_lock
  1504     update_dictionary(d_index, d_hash, p_index, p_hash,
  1505                       k, class_loader_h, THREAD);
  1507   k->eager_initialize(THREAD);
  1509   // notify jvmti
  1510   if (JvmtiExport::should_post_class_load()) {
  1511       assert(THREAD->is_Java_thread(), "thread->is_Java_thread()");
  1512       JvmtiExport::post_class_load((JavaThread *) THREAD, k());
  1516   post_class_define_event(k(), loader_data);
  1519 // Support parallel classloading
  1520 // All parallel class loaders, including bootstrap classloader
  1521 // lock a placeholder entry for this class/class_loader pair
  1522 // to allow parallel defines of different classes for this class loader
  1523 // With AllowParallelDefine flag==true, in case they do not synchronize around
  1524 // FindLoadedClass/DefineClass, calls, we check for parallel
  1525 // loading for them, wait if a defineClass is in progress
  1526 // and return the initial requestor's results
  1527 // This flag does not apply to the bootstrap classloader.
  1528 // With AllowParallelDefine flag==false, call through to define_instance_class
  1529 // which will throw LinkageError: duplicate class definition.
  1530 // False is the requested default.
  1531 // For better performance, the class loaders should synchronize
  1532 // findClass(), i.e. FindLoadedClass/DefineClassIfAbsent or they
  1533 // potentially waste time reading and parsing the bytestream.
  1534 // Note: VM callers should ensure consistency of k/class_name,class_loader
  1535 instanceKlassHandle SystemDictionary::find_or_define_instance_class(Symbol* class_name, Handle class_loader, instanceKlassHandle k, TRAPS) {
  1537   instanceKlassHandle nh = instanceKlassHandle(); // null Handle
  1538   Symbol*  name_h = k->name(); // passed in class_name may be null
  1539   ClassLoaderData* loader_data = class_loader_data(class_loader);
  1541   unsigned int d_hash = dictionary()->compute_hash(name_h, loader_data);
  1542   int d_index = dictionary()->hash_to_index(d_hash);
  1544 // Hold SD lock around find_class and placeholder creation for DEFINE_CLASS
  1545   unsigned int p_hash = placeholders()->compute_hash(name_h, loader_data);
  1546   int p_index = placeholders()->hash_to_index(p_hash);
  1547   PlaceholderEntry* probe;
  1550     MutexLocker mu(SystemDictionary_lock, THREAD);
  1551     // First check if class already defined
  1552     if (UnsyncloadClass || (is_parallelDefine(class_loader))) {
  1553       Klass* check = find_class(d_index, d_hash, name_h, loader_data);
  1554       if (check != NULL) {
  1555         return(instanceKlassHandle(THREAD, check));
  1559     // Acquire define token for this class/classloader
  1560     probe = placeholders()->find_and_add(p_index, p_hash, name_h, loader_data, PlaceholderTable::DEFINE_CLASS, NULL, THREAD);
  1561     // Wait if another thread defining in parallel
  1562     // All threads wait - even those that will throw duplicate class: otherwise
  1563     // caller is surprised by LinkageError: duplicate, but findLoadedClass fails
  1564     // if other thread has not finished updating dictionary
  1565     while (probe->definer() != NULL) {
  1566       SystemDictionary_lock->wait();
  1568     // Only special cases allow parallel defines and can use other thread's results
  1569     // Other cases fall through, and may run into duplicate defines
  1570     // caught by finding an entry in the SystemDictionary
  1571     if ((UnsyncloadClass || is_parallelDefine(class_loader)) && (probe->instance_klass() != NULL)) {
  1572         placeholders()->find_and_remove(p_index, p_hash, name_h, loader_data, PlaceholderTable::DEFINE_CLASS, THREAD);
  1573         SystemDictionary_lock->notify_all();
  1574 #ifdef ASSERT
  1575         Klass* check = find_class(d_index, d_hash, name_h, loader_data);
  1576         assert(check != NULL, "definer missed recording success");
  1577 #endif
  1578         return(instanceKlassHandle(THREAD, probe->instance_klass()));
  1579     } else {
  1580       // This thread will define the class (even if earlier thread tried and had an error)
  1581       probe->set_definer(THREAD);
  1585   define_instance_class(k, THREAD);
  1587   Handle linkage_exception = Handle(); // null handle
  1589   // definer must notify any waiting threads
  1591     MutexLocker mu(SystemDictionary_lock, THREAD);
  1592     PlaceholderEntry* probe = placeholders()->get_entry(p_index, p_hash, name_h, loader_data);
  1593     assert(probe != NULL, "DEFINE_CLASS placeholder lost?");
  1594     if (probe != NULL) {
  1595       if (HAS_PENDING_EXCEPTION) {
  1596         linkage_exception = Handle(THREAD,PENDING_EXCEPTION);
  1597         CLEAR_PENDING_EXCEPTION;
  1598       } else {
  1599         probe->set_instance_klass(k());
  1601       probe->set_definer(NULL);
  1602       placeholders()->find_and_remove(p_index, p_hash, name_h, loader_data, PlaceholderTable::DEFINE_CLASS, THREAD);
  1603       SystemDictionary_lock->notify_all();
  1607   // Can't throw exception while holding lock due to rank ordering
  1608   if (linkage_exception() != NULL) {
  1609     THROW_OOP_(linkage_exception(), nh); // throws exception and returns
  1612   return k;
  1614 Handle SystemDictionary::compute_loader_lock_object(Handle class_loader, TRAPS) {
  1615   // If class_loader is NULL we synchronize on _system_loader_lock_obj
  1616   if (class_loader.is_null()) {
  1617     return Handle(THREAD, _system_loader_lock_obj);
  1618   } else {
  1619     return class_loader;
  1623 // This method is added to check how often we have to wait to grab loader
  1624 // lock. The results are being recorded in the performance counters defined in
  1625 // ClassLoader::_sync_systemLoaderLockContentionRate and
  1626 // ClassLoader::_sync_nonSystemLoaderLockConteionRate.
  1627 void SystemDictionary::check_loader_lock_contention(Handle loader_lock, TRAPS) {
  1628   if (!UsePerfData) {
  1629     return;
  1632   assert(!loader_lock.is_null(), "NULL lock object");
  1634   if (ObjectSynchronizer::query_lock_ownership((JavaThread*)THREAD, loader_lock)
  1635       == ObjectSynchronizer::owner_other) {
  1636     // contention will likely happen, so increment the corresponding
  1637     // contention counter.
  1638     if (loader_lock() == _system_loader_lock_obj) {
  1639       ClassLoader::sync_systemLoaderLockContentionRate()->inc();
  1640     } else {
  1641       ClassLoader::sync_nonSystemLoaderLockContentionRate()->inc();
  1646 // ----------------------------------------------------------------------------
  1647 // Lookup
  1649 Klass* SystemDictionary::find_class(int index, unsigned int hash,
  1650                                       Symbol* class_name,
  1651                                       ClassLoaderData* loader_data) {
  1652   assert_locked_or_safepoint(SystemDictionary_lock);
  1653   assert (index == dictionary()->index_for(class_name, loader_data),
  1654           "incorrect index?");
  1656   Klass* k = dictionary()->find_class(index, hash, class_name, loader_data);
  1657   return k;
  1661 // Basic find on classes in the midst of being loaded
  1662 Symbol* SystemDictionary::find_placeholder(Symbol* class_name,
  1663                                            ClassLoaderData* loader_data) {
  1664   assert_locked_or_safepoint(SystemDictionary_lock);
  1665   unsigned int p_hash = placeholders()->compute_hash(class_name, loader_data);
  1666   int p_index = placeholders()->hash_to_index(p_hash);
  1667   return placeholders()->find_entry(p_index, p_hash, class_name, loader_data);
  1671 // Used for assertions and verification only
  1672 Klass* SystemDictionary::find_class(Symbol* class_name, ClassLoaderData* loader_data) {
  1673   #ifndef ASSERT
  1674   guarantee(VerifyBeforeGC      ||
  1675             VerifyDuringGC      ||
  1676             VerifyBeforeExit    ||
  1677             VerifyDuringStartup ||
  1678             VerifyAfterGC, "too expensive");
  1679   #endif
  1680   assert_locked_or_safepoint(SystemDictionary_lock);
  1682   // First look in the loaded class array
  1683   unsigned int d_hash = dictionary()->compute_hash(class_name, loader_data);
  1684   int d_index = dictionary()->hash_to_index(d_hash);
  1685   return find_class(d_index, d_hash, class_name, loader_data);
  1689 // Get the next class in the diictionary.
  1690 Klass* SystemDictionary::try_get_next_class() {
  1691   return dictionary()->try_get_next_class();
  1695 // ----------------------------------------------------------------------------
  1696 // Update hierachy. This is done before the new klass has been added to the SystemDictionary. The Recompile_lock
  1697 // is held, to ensure that the compiler is not using the class hierachy, and that deoptimization will kick in
  1698 // before a new class is used.
  1700 void SystemDictionary::add_to_hierarchy(instanceKlassHandle k, TRAPS) {
  1701   assert(k.not_null(), "just checking");
  1702   assert_locked_or_safepoint(Compile_lock);
  1704   // Link into hierachy. Make sure the vtables are initialized before linking into
  1705   k->append_to_sibling_list();                    // add to superklass/sibling list
  1706   k->process_interfaces(THREAD);                  // handle all "implements" declarations
  1707   k->set_init_state(InstanceKlass::loaded);
  1708   // Now flush all code that depended on old class hierarchy.
  1709   // Note: must be done *after* linking k into the hierarchy (was bug 12/9/97)
  1710   // Also, first reinitialize vtable because it may have gotten out of synch
  1711   // while the new class wasn't connected to the class hierarchy.
  1712   Universe::flush_dependents_on(k);
  1715 // ----------------------------------------------------------------------------
  1716 // GC support
  1718 // Following roots during mark-sweep is separated in two phases.
  1719 //
  1720 // The first phase follows preloaded classes and all other system
  1721 // classes, since these will never get unloaded anyway.
  1722 //
  1723 // The second phase removes (unloads) unreachable classes from the
  1724 // system dictionary and follows the remaining classes' contents.
  1726 void SystemDictionary::always_strong_oops_do(OopClosure* blk) {
  1727   roots_oops_do(blk, NULL);
  1730 void SystemDictionary::always_strong_classes_do(KlassClosure* closure) {
  1731   // Follow all system classes and temporary placeholders in dictionary
  1732   dictionary()->always_strong_classes_do(closure);
  1734   // Placeholders. These represent classes we're actively loading.
  1735   placeholders()->classes_do(closure);
  1738 // Calculate a "good" systemdictionary size based
  1739 // on predicted or current loaded classes count
  1740 int SystemDictionary::calculate_systemdictionary_size(int classcount) {
  1741   int newsize = _old_default_sdsize;
  1742   if ((classcount > 0)  && !DumpSharedSpaces) {
  1743     int desiredsize = classcount/_average_depth_goal;
  1744     for (newsize = _primelist[_sdgeneration]; _sdgeneration < _prime_array_size -1;
  1745          newsize = _primelist[++_sdgeneration]) {
  1746       if (desiredsize <=  newsize) {
  1747         break;
  1751   return newsize;
  1754 #ifdef ASSERT
  1755 class VerifySDReachableAndLiveClosure : public OopClosure {
  1756 private:
  1757   BoolObjectClosure* _is_alive;
  1759   template <class T> void do_oop_work(T* p) {
  1760     oop obj = oopDesc::load_decode_heap_oop(p);
  1761     guarantee(_is_alive->do_object_b(obj), "Oop in system dictionary must be live");
  1764 public:
  1765   VerifySDReachableAndLiveClosure(BoolObjectClosure* is_alive) : OopClosure(), _is_alive(is_alive) { }
  1767   virtual void do_oop(oop* p)       { do_oop_work(p); }
  1768   virtual void do_oop(narrowOop* p) { do_oop_work(p); }
  1769 };
  1770 #endif
  1772 // Assumes classes in the SystemDictionary are only unloaded at a safepoint
  1773 // Note: anonymous classes are not in the SD.
  1774 bool SystemDictionary::do_unloading(BoolObjectClosure* is_alive, bool clean_alive) {
  1775   // First, mark for unload all ClassLoaderData referencing a dead class loader.
  1776   bool unloading_occurred = ClassLoaderDataGraph::do_unloading(is_alive, clean_alive);
  1777   if (unloading_occurred) {
  1778     JFR_ONLY(Jfr::on_unloading_classes();)
  1779     dictionary()->do_unloading();
  1780     constraints()->purge_loader_constraints();
  1781     resolution_errors()->purge_resolution_errors();
  1783   // Oops referenced by the system dictionary may get unreachable independently
  1784   // of the class loader (eg. cached protection domain oops). So we need to
  1785   // explicitly unlink them here instead of in Dictionary::do_unloading.
  1786   dictionary()->unlink(is_alive);
  1787 #ifdef ASSERT
  1788   VerifySDReachableAndLiveClosure cl(is_alive);
  1789   dictionary()->oops_do(&cl);
  1790 #endif
  1791   return unloading_occurred;
  1794 void SystemDictionary::roots_oops_do(OopClosure* strong, OopClosure* weak) {
  1795   strong->do_oop(&_java_system_loader);
  1796   strong->do_oop(&_system_loader_lock_obj);
  1797   CDS_ONLY(SystemDictionaryShared::roots_oops_do(strong);)
  1799   // Adjust dictionary
  1800   dictionary()->roots_oops_do(strong, weak);
  1802   // Visit extra methods
  1803   invoke_method_table()->oops_do(strong);
  1806 void SystemDictionary::oops_do(OopClosure* f) {
  1807   f->do_oop(&_java_system_loader);
  1808   f->do_oop(&_system_loader_lock_obj);
  1809   CDS_ONLY(SystemDictionaryShared::oops_do(f);)
  1811   // Adjust dictionary
  1812   dictionary()->oops_do(f);
  1814   // Visit extra methods
  1815   invoke_method_table()->oops_do(f);
  1818 // Extended Class redefinition support.
  1819 // If one of these classes is replaced, we need to replace it in these places.
  1820 // KlassClosure::do_klass should take the address of a class but we can
  1821 // change that later.
  1822 void SystemDictionary::preloaded_classes_do(KlassClosure* f) {
  1823   for (int k = (int)FIRST_WKID; k < (int)WKID_LIMIT; k++) {
  1824     f->do_klass(_well_known_klasses[k]);
  1828     for (int i = 0; i < T_VOID+1; i++) {
  1829       if (_box_klasses[i] != NULL) {
  1830         assert(i >= T_BOOLEAN, "checking");
  1831         f->do_klass(_box_klasses[i]);
  1836   FilteredFieldsMap::classes_do(f);
  1839 void SystemDictionary::lazily_loaded_classes_do(KlassClosure* f) {
  1840   f->do_klass(_abstract_ownable_synchronizer_klass);
  1843 // Just the classes from defining class loaders
  1844 // Don't iterate over placeholders
  1845 void SystemDictionary::classes_do(void f(Klass*)) {
  1846   dictionary()->classes_do(f);
  1849 // Added for initialize_itable_for_klass
  1850 //   Just the classes from defining class loaders
  1851 // Don't iterate over placeholders
  1852 void SystemDictionary::classes_do(void f(Klass*, TRAPS), TRAPS) {
  1853   dictionary()->classes_do(f, CHECK);
  1856 //   All classes, and their class loaders
  1857 // Don't iterate over placeholders
  1858 void SystemDictionary::classes_do(void f(Klass*, ClassLoaderData*)) {
  1859   dictionary()->classes_do(f);
  1862 void SystemDictionary::placeholders_do(void f(Symbol*)) {
  1863   placeholders()->entries_do(f);
  1866 void SystemDictionary::methods_do(void f(Method*)) {
  1867   dictionary()->methods_do(f);
  1868   invoke_method_table()->methods_do(f);
  1871 void SystemDictionary::remove_classes_in_error_state() {
  1872   dictionary()->remove_classes_in_error_state();
  1875 // ----------------------------------------------------------------------------
  1876 // Lazily load klasses
  1878 void SystemDictionary::load_abstract_ownable_synchronizer_klass(TRAPS) {
  1879   assert(JDK_Version::is_gte_jdk16x_version(), "Must be JDK 1.6 or later");
  1881   // if multiple threads calling this function, only one thread will load
  1882   // the class.  The other threads will find the loaded version once the
  1883   // class is loaded.
  1884   Klass* aos = _abstract_ownable_synchronizer_klass;
  1885   if (aos == NULL) {
  1886     Klass* k = resolve_or_fail(vmSymbols::java_util_concurrent_locks_AbstractOwnableSynchronizer(), true, CHECK);
  1887     // Force a fence to prevent any read before the write completes
  1888     OrderAccess::fence();
  1889     _abstract_ownable_synchronizer_klass = k;
  1893 // ----------------------------------------------------------------------------
  1894 // Initialization
  1896 void SystemDictionary::initialize(TRAPS) {
  1897   // Allocate arrays
  1898   assert(dictionary() == NULL,
  1899          "SystemDictionary should only be initialized once");
  1900   _sdgeneration        = 0;
  1901   _dictionary          = new Dictionary(calculate_systemdictionary_size(PredictedLoadedClassCount));
  1902   _placeholders        = new PlaceholderTable(_nof_buckets);
  1903   _number_of_modifications = 0;
  1904   _loader_constraints  = new LoaderConstraintTable(_loader_constraint_size);
  1905   _resolution_errors   = new ResolutionErrorTable(_resolution_error_size);
  1906   _invoke_method_table = new SymbolPropertyTable(_invoke_method_size);
  1908   // Allocate private object used as system class loader lock
  1909   _system_loader_lock_obj = oopFactory::new_intArray(0, CHECK);
  1910   // Initialize basic classes
  1911   initialize_preloaded_classes(CHECK);
  1912 #if INCLUDE_JFR
  1913   jfr_event_handler_proxy = SymbolTable::new_permanent_symbol("jdk/jfr/proxy/internal/EventHandlerProxy", CHECK);
  1914 #endif // INCLUDE_JFR
  1917 // Compact table of directions on the initialization of klasses:
  1918 static const short wk_init_info[] = {
  1919   #define WK_KLASS_INIT_INFO(name, symbol, option) \
  1920     ( ((int)vmSymbols::VM_SYMBOL_ENUM_NAME(symbol) \
  1921           << SystemDictionary::CEIL_LG_OPTION_LIMIT) \
  1922       | (int)SystemDictionary::option ),
  1923   WK_KLASSES_DO(WK_KLASS_INIT_INFO)
  1924   #undef WK_KLASS_INIT_INFO
  1926 };
  1928 bool SystemDictionary::initialize_wk_klass(WKID id, int init_opt, TRAPS) {
  1929   assert(id >= (int)FIRST_WKID && id < (int)WKID_LIMIT, "oob");
  1930   int  info = wk_init_info[id - FIRST_WKID];
  1931   int  sid  = (info >> CEIL_LG_OPTION_LIMIT);
  1932   Symbol* symbol = vmSymbols::symbol_at((vmSymbols::SID)sid);
  1933   Klass**    klassp = &_well_known_klasses[id];
  1934   bool must_load = (init_opt < SystemDictionary::Opt);
  1935   if ((*klassp) == NULL) {
  1936     if (must_load) {
  1937       (*klassp) = resolve_or_fail(symbol, true, CHECK_0); // load required class
  1938     } else {
  1939       (*klassp) = resolve_or_null(symbol,       CHECK_0); // load optional klass
  1942   return ((*klassp) != NULL);
  1945 void SystemDictionary::initialize_wk_klasses_until(WKID limit_id, WKID &start_id, TRAPS) {
  1946   assert((int)start_id <= (int)limit_id, "IDs are out of order!");
  1947   for (int id = (int)start_id; id < (int)limit_id; id++) {
  1948     assert(id >= (int)FIRST_WKID && id < (int)WKID_LIMIT, "oob");
  1949     int info = wk_init_info[id - FIRST_WKID];
  1950     int sid  = (info >> CEIL_LG_OPTION_LIMIT);
  1951     int opt  = (info & right_n_bits(CEIL_LG_OPTION_LIMIT));
  1953     initialize_wk_klass((WKID)id, opt, CHECK);
  1956   // move the starting value forward to the limit:
  1957   start_id = limit_id;
  1960 void SystemDictionary::initialize_preloaded_classes(TRAPS) {
  1961   assert(WK_KLASS(Object_klass) == NULL, "preloaded classes should only be initialized once");
  1962   // Preload commonly used klasses
  1963   WKID scan = FIRST_WKID;
  1964   // first do Object, then String, Class
  1965   if (UseSharedSpaces) {
  1966     initialize_wk_klasses_through(WK_KLASS_ENUM_NAME(Object_klass), scan, CHECK);
  1967     // Initialize the constant pool for the Object_class
  1968     InstanceKlass* ik = InstanceKlass::cast(Object_klass());
  1969     ik->constants()->restore_unshareable_info(CHECK);
  1970     initialize_wk_klasses_through(WK_KLASS_ENUM_NAME(Class_klass), scan, CHECK);
  1971   } else {
  1972     initialize_wk_klasses_through(WK_KLASS_ENUM_NAME(Class_klass), scan, CHECK);
  1975   // Calculate offsets for String and Class classes since they are loaded and
  1976   // can be used after this point.
  1977   java_lang_String::compute_offsets();
  1978   java_lang_Class::compute_offsets();
  1980   // Fixup mirrors for classes loaded before java.lang.Class.
  1981   // These calls iterate over the objects currently in the perm gen
  1982   // so calling them at this point is matters (not before when there
  1983   // are fewer objects and not later after there are more objects
  1984   // in the perm gen.
  1985   Universe::initialize_basic_type_mirrors(CHECK);
  1986   Universe::fixup_mirrors(CHECK);
  1988   // do a bunch more:
  1989   initialize_wk_klasses_through(WK_KLASS_ENUM_NAME(Reference_klass), scan, CHECK);
  1991   // Preload ref klasses and set reference types
  1992   InstanceKlass::cast(WK_KLASS(Reference_klass))->set_reference_type(REF_OTHER);
  1993   InstanceRefKlass::update_nonstatic_oop_maps(WK_KLASS(Reference_klass));
  1995   initialize_wk_klasses_through(WK_KLASS_ENUM_NAME(Cleaner_klass), scan, CHECK);
  1996   InstanceKlass::cast(WK_KLASS(SoftReference_klass))->set_reference_type(REF_SOFT);
  1997   InstanceKlass::cast(WK_KLASS(WeakReference_klass))->set_reference_type(REF_WEAK);
  1998   InstanceKlass::cast(WK_KLASS(FinalReference_klass))->set_reference_type(REF_FINAL);
  1999   InstanceKlass::cast(WK_KLASS(PhantomReference_klass))->set_reference_type(REF_PHANTOM);
  2000   InstanceKlass::cast(WK_KLASS(Cleaner_klass))->set_reference_type(REF_CLEANER);
  2002   initialize_wk_klasses_through(WK_KLASS_ENUM_NAME(ReferenceQueue_klass), scan, CHECK);
  2004   // JSR 292 classes
  2005   WKID jsr292_group_start = WK_KLASS_ENUM_NAME(MethodHandle_klass);
  2006   WKID jsr292_group_end   = WK_KLASS_ENUM_NAME(VolatileCallSite_klass);
  2007   initialize_wk_klasses_until(jsr292_group_start, scan, CHECK);
  2008   if (EnableInvokeDynamic) {
  2009     initialize_wk_klasses_through(jsr292_group_end, scan, CHECK);
  2010   } else {
  2011     // Skip the JSR 292 classes, if not enabled.
  2012     scan = WKID(jsr292_group_end + 1);
  2015   initialize_wk_klasses_until(WKID_LIMIT, scan, CHECK);
  2017   _box_klasses[T_BOOLEAN] = WK_KLASS(Boolean_klass);
  2018   _box_klasses[T_CHAR]    = WK_KLASS(Character_klass);
  2019   _box_klasses[T_FLOAT]   = WK_KLASS(Float_klass);
  2020   _box_klasses[T_DOUBLE]  = WK_KLASS(Double_klass);
  2021   _box_klasses[T_BYTE]    = WK_KLASS(Byte_klass);
  2022   _box_klasses[T_SHORT]   = WK_KLASS(Short_klass);
  2023   _box_klasses[T_INT]     = WK_KLASS(Integer_klass);
  2024   _box_klasses[T_LONG]    = WK_KLASS(Long_klass);
  2025   //_box_klasses[T_OBJECT]  = WK_KLASS(object_klass);
  2026   //_box_klasses[T_ARRAY]   = WK_KLASS(object_klass);
  2028   { // Compute whether we should use loadClass or loadClassInternal when loading classes.
  2029     Method* method = InstanceKlass::cast(ClassLoader_klass())->find_method(vmSymbols::loadClassInternal_name(), vmSymbols::string_class_signature());
  2030     _has_loadClassInternal = (method != NULL);
  2032   { // Compute whether we should use checkPackageAccess or NOT
  2033     Method* method = InstanceKlass::cast(ClassLoader_klass())->find_method(vmSymbols::checkPackageAccess_name(), vmSymbols::class_protectiondomain_signature());
  2034     _has_checkPackageAccess = (method != NULL);
  2038 // Tells if a given klass is a box (wrapper class, such as java.lang.Integer).
  2039 // If so, returns the basic type it holds.  If not, returns T_OBJECT.
  2040 BasicType SystemDictionary::box_klass_type(Klass* k) {
  2041   assert(k != NULL, "");
  2042   for (int i = T_BOOLEAN; i < T_VOID+1; i++) {
  2043     if (_box_klasses[i] == k)
  2044       return (BasicType)i;
  2046   return T_OBJECT;
  2049 // Constraints on class loaders. The details of the algorithm can be
  2050 // found in the OOPSLA'98 paper "Dynamic Class Loading in the Java
  2051 // Virtual Machine" by Sheng Liang and Gilad Bracha.  The basic idea is
  2052 // that the system dictionary needs to maintain a set of contraints that
  2053 // must be satisfied by all classes in the dictionary.
  2054 // if defining is true, then LinkageError if already in systemDictionary
  2055 // if initiating loader, then ok if InstanceKlass matches existing entry
  2057 void SystemDictionary::check_constraints(int d_index, unsigned int d_hash,
  2058                                          instanceKlassHandle k,
  2059                                          Handle class_loader, bool defining,
  2060                                          TRAPS) {
  2061   const char *linkage_error = NULL;
  2063     Symbol*  name  = k->name();
  2064     ClassLoaderData *loader_data = class_loader_data(class_loader);
  2066     MutexLocker mu(SystemDictionary_lock, THREAD);
  2068     Klass* check = find_class(d_index, d_hash, name, loader_data);
  2069     if (check != (Klass*)NULL) {
  2070       // if different InstanceKlass - duplicate class definition,
  2071       // else - ok, class loaded by a different thread in parallel,
  2072       // we should only have found it if it was done loading and ok to use
  2073       // system dictionary only holds instance classes, placeholders
  2074       // also holds array classes
  2076       assert(check->oop_is_instance(), "noninstance in systemdictionary");
  2077       if ((defining == true) || (k() != check)) {
  2078         linkage_error = "loader (instance of  %s): attempted  duplicate class "
  2079           "definition for name: \"%s\"";
  2080       } else {
  2081         return;
  2085 #ifdef ASSERT
  2086     Symbol* ph_check = find_placeholder(name, loader_data);
  2087     assert(ph_check == NULL || ph_check == name, "invalid symbol");
  2088 #endif
  2090     if (linkage_error == NULL) {
  2091       if (constraints()->check_or_update(k, class_loader, name) == false) {
  2092         linkage_error = "loader constraint violation: loader (instance of %s)"
  2093           " previously initiated loading for a different type with name \"%s\"";
  2098   // Throw error now if needed (cannot throw while holding
  2099   // SystemDictionary_lock because of rank ordering)
  2101   if (linkage_error) {
  2102     ResourceMark rm(THREAD);
  2103     const char* class_loader_name = loader_name(class_loader());
  2104     char* type_name = k->name()->as_C_string();
  2105     size_t buflen = strlen(linkage_error) + strlen(class_loader_name) +
  2106       strlen(type_name);
  2107     char* buf = NEW_RESOURCE_ARRAY_IN_THREAD(THREAD, char, buflen);
  2108     jio_snprintf(buf, buflen, linkage_error, class_loader_name, type_name);
  2109     THROW_MSG(vmSymbols::java_lang_LinkageError(), buf);
  2114 // Update system dictionary - done after check_constraint and add_to_hierachy
  2115 // have been called.
  2116 void SystemDictionary::update_dictionary(int d_index, unsigned int d_hash,
  2117                                          int p_index, unsigned int p_hash,
  2118                                          instanceKlassHandle k,
  2119                                          Handle class_loader,
  2120                                          TRAPS) {
  2121   // Compile_lock prevents systemDictionary updates during compilations
  2122   assert_locked_or_safepoint(Compile_lock);
  2123   Symbol*  name  = k->name();
  2124   ClassLoaderData *loader_data = class_loader_data(class_loader);
  2127   MutexLocker mu1(SystemDictionary_lock, THREAD);
  2129   // See whether biased locking is enabled and if so set it for this
  2130   // klass.
  2131   // Note that this must be done past the last potential blocking
  2132   // point / safepoint. We enable biased locking lazily using a
  2133   // VM_Operation to iterate the SystemDictionary and installing the
  2134   // biasable mark word into each InstanceKlass's prototype header.
  2135   // To avoid race conditions where we accidentally miss enabling the
  2136   // optimization for one class in the process of being added to the
  2137   // dictionary, we must not safepoint after the test of
  2138   // BiasedLocking::enabled().
  2139   if (UseBiasedLocking && BiasedLocking::enabled()) {
  2140     // Set biased locking bit for all loaded classes; it will be
  2141     // cleared if revocation occurs too often for this type
  2142     // NOTE that we must only do this when the class is initally
  2143     // defined, not each time it is referenced from a new class loader
  2144     if (k->class_loader() == class_loader()) {
  2145       k->set_prototype_header(markOopDesc::biased_locking_prototype());
  2149   // Make a new system dictionary entry.
  2150   Klass* sd_check = find_class(d_index, d_hash, name, loader_data);
  2151   if (sd_check == NULL) {
  2152     dictionary()->add_klass(name, loader_data, k);
  2153     notice_modification();
  2155 #ifdef ASSERT
  2156   sd_check = find_class(d_index, d_hash, name, loader_data);
  2157   assert (sd_check != NULL, "should have entry in system dictionary");
  2158   // Note: there may be a placeholder entry: for circularity testing
  2159   // or for parallel defines
  2160 #endif
  2161     SystemDictionary_lock->notify_all();
  2166 // Try to find a class name using the loader constraints.  The
  2167 // loader constraints might know about a class that isn't fully loaded
  2168 // yet and these will be ignored.
  2169 Klass* SystemDictionary::find_constrained_instance_or_array_klass(
  2170                     Symbol* class_name, Handle class_loader, TRAPS) {
  2172   // First see if it has been loaded directly.
  2173   // Force the protection domain to be null.  (This removes protection checks.)
  2174   Handle no_protection_domain;
  2175   Klass* klass = find_instance_or_array_klass(class_name, class_loader,
  2176                                               no_protection_domain, CHECK_NULL);
  2177   if (klass != NULL)
  2178     return klass;
  2180   // Now look to see if it has been loaded elsewhere, and is subject to
  2181   // a loader constraint that would require this loader to return the
  2182   // klass that is already loaded.
  2183   if (FieldType::is_array(class_name)) {
  2184     // For array classes, their Klass*s are not kept in the
  2185     // constraint table. The element Klass*s are.
  2186     FieldArrayInfo fd;
  2187     BasicType t = FieldType::get_array_info(class_name, fd, CHECK_(NULL));
  2188     if (t != T_OBJECT) {
  2189       klass = Universe::typeArrayKlassObj(t);
  2190     } else {
  2191       MutexLocker mu(SystemDictionary_lock, THREAD);
  2192       klass = constraints()->find_constrained_klass(fd.object_key(), class_loader);
  2194     // If element class already loaded, allocate array klass
  2195     if (klass != NULL) {
  2196       klass = klass->array_klass_or_null(fd.dimension());
  2198   } else {
  2199     MutexLocker mu(SystemDictionary_lock, THREAD);
  2200     // Non-array classes are easy: simply check the constraint table.
  2201     klass = constraints()->find_constrained_klass(class_name, class_loader);
  2204   return klass;
  2208 bool SystemDictionary::add_loader_constraint(Symbol* class_name,
  2209                                              Handle class_loader1,
  2210                                              Handle class_loader2,
  2211                                              Thread* THREAD) {
  2212   ClassLoaderData* loader_data1 = class_loader_data(class_loader1);
  2213   ClassLoaderData* loader_data2 = class_loader_data(class_loader2);
  2215   Symbol* constraint_name = NULL;
  2216   if (!FieldType::is_array(class_name)) {
  2217     constraint_name = class_name;
  2218   } else {
  2219     // For array classes, their Klass*s are not kept in the
  2220     // constraint table. The element classes are.
  2221     FieldArrayInfo fd;
  2222     BasicType t = FieldType::get_array_info(class_name, fd, CHECK_(false));
  2223     // primitive types always pass
  2224     if (t != T_OBJECT) {
  2225       return true;
  2226     } else {
  2227       constraint_name = fd.object_key();
  2230   unsigned int d_hash1 = dictionary()->compute_hash(constraint_name, loader_data1);
  2231   int d_index1 = dictionary()->hash_to_index(d_hash1);
  2233   unsigned int d_hash2 = dictionary()->compute_hash(constraint_name, loader_data2);
  2234   int d_index2 = dictionary()->hash_to_index(d_hash2);
  2236   MutexLocker mu_s(SystemDictionary_lock, THREAD);
  2238   // Better never do a GC while we're holding these oops
  2239   No_Safepoint_Verifier nosafepoint;
  2241   Klass* klass1 = find_class(d_index1, d_hash1, constraint_name, loader_data1);
  2242   Klass* klass2 = find_class(d_index2, d_hash2, constraint_name, loader_data2);
  2243   return constraints()->add_entry(constraint_name, klass1, class_loader1,
  2244                                   klass2, class_loader2);
  2248 // Add entry to resolution error table to record the error when the first
  2249 // attempt to resolve a reference to a class has failed.
  2250 void SystemDictionary::add_resolution_error(constantPoolHandle pool, int which, Symbol* error) {
  2251   unsigned int hash = resolution_errors()->compute_hash(pool, which);
  2252   int index = resolution_errors()->hash_to_index(hash);
  2254     MutexLocker ml(SystemDictionary_lock, Thread::current());
  2255     resolution_errors()->add_entry(index, hash, pool, which, error);
  2259 // Delete a resolution error for RedefineClasses for a constant pool is going away
  2260 void SystemDictionary::delete_resolution_error(ConstantPool* pool) {
  2261   resolution_errors()->delete_entry(pool);
  2264 // Lookup resolution error table. Returns error if found, otherwise NULL.
  2265 Symbol* SystemDictionary::find_resolution_error(constantPoolHandle pool, int which) {
  2266   unsigned int hash = resolution_errors()->compute_hash(pool, which);
  2267   int index = resolution_errors()->hash_to_index(hash);
  2269     MutexLocker ml(SystemDictionary_lock, Thread::current());
  2270     ResolutionErrorEntry* entry = resolution_errors()->find_entry(index, hash, pool, which);
  2271     return (entry != NULL) ? entry->error() : (Symbol*)NULL;
  2276 // Signature constraints ensure that callers and callees agree about
  2277 // the meaning of type names in their signatures.  This routine is the
  2278 // intake for constraints.  It collects them from several places:
  2279 //
  2280 //  * LinkResolver::resolve_method (if check_access is true) requires
  2281 //    that the resolving class (the caller) and the defining class of
  2282 //    the resolved method (the callee) agree on each type in the
  2283 //    method's signature.
  2284 //
  2285 //  * LinkResolver::resolve_interface_method performs exactly the same
  2286 //    checks.
  2287 //
  2288 //  * LinkResolver::resolve_field requires that the constant pool
  2289 //    attempting to link to a field agree with the field's defining
  2290 //    class about the type of the field signature.
  2291 //
  2292 //  * klassVtable::initialize_vtable requires that, when a class
  2293 //    overrides a vtable entry allocated by a superclass, that the
  2294 //    overriding method (i.e., the callee) agree with the superclass
  2295 //    on each type in the method's signature.
  2296 //
  2297 //  * klassItable::initialize_itable requires that, when a class fills
  2298 //    in its itables, for each non-abstract method installed in an
  2299 //    itable, the method (i.e., the callee) agree with the interface
  2300 //    on each type in the method's signature.
  2301 //
  2302 // All those methods have a boolean (check_access, checkconstraints)
  2303 // which turns off the checks.  This is used from specialized contexts
  2304 // such as bootstrapping, dumping, and debugging.
  2305 //
  2306 // No direct constraint is placed between the class and its
  2307 // supertypes.  Constraints are only placed along linked relations
  2308 // between callers and callees.  When a method overrides or implements
  2309 // an abstract method in a supertype (superclass or interface), the
  2310 // constraints are placed as if the supertype were the caller to the
  2311 // overriding method.  (This works well, since callers to the
  2312 // supertype have already established agreement between themselves and
  2313 // the supertype.)  As a result of all this, a class can disagree with
  2314 // its supertype about the meaning of a type name, as long as that
  2315 // class neither calls a relevant method of the supertype, nor is
  2316 // called (perhaps via an override) from the supertype.
  2317 //
  2318 //
  2319 // SystemDictionary::check_signature_loaders(sig, l1, l2)
  2320 //
  2321 // Make sure all class components (including arrays) in the given
  2322 // signature will be resolved to the same class in both loaders.
  2323 // Returns the name of the type that failed a loader constraint check, or
  2324 // NULL if no constraint failed.  No exception except OOME is thrown.
  2325 // Arrays are not added to the loader constraint table, their elements are.
  2326 Symbol* SystemDictionary::check_signature_loaders(Symbol* signature,
  2327                                                Handle loader1, Handle loader2,
  2328                                                bool is_method, TRAPS)  {
  2329   // Nothing to do if loaders are the same.
  2330   if (loader1() == loader2()) {
  2331     return NULL;
  2334   SignatureStream sig_strm(signature, is_method);
  2335   while (!sig_strm.is_done()) {
  2336     if (sig_strm.is_object()) {
  2337       Symbol* sig = sig_strm.as_symbol(CHECK_NULL);
  2338       if (!add_loader_constraint(sig, loader1, loader2, THREAD)) {
  2339         return sig;
  2342     sig_strm.next();
  2344   return NULL;
  2348 methodHandle SystemDictionary::find_method_handle_intrinsic(vmIntrinsics::ID iid,
  2349                                                             Symbol* signature,
  2350                                                             TRAPS) {
  2351   methodHandle empty;
  2352   assert(EnableInvokeDynamic, "");
  2353   assert(MethodHandles::is_signature_polymorphic(iid) &&
  2354          MethodHandles::is_signature_polymorphic_intrinsic(iid) &&
  2355          iid != vmIntrinsics::_invokeGeneric,
  2356          err_msg("must be a known MH intrinsic iid=%d: %s", iid, vmIntrinsics::name_at(iid)));
  2358   unsigned int hash  = invoke_method_table()->compute_hash(signature, iid);
  2359   int          index = invoke_method_table()->hash_to_index(hash);
  2360   SymbolPropertyEntry* spe = invoke_method_table()->find_entry(index, hash, signature, iid);
  2361   methodHandle m;
  2362   if (spe == NULL || spe->method() == NULL) {
  2363     spe = NULL;
  2364     // Must create lots of stuff here, but outside of the SystemDictionary lock.
  2365     m = Method::make_method_handle_intrinsic(iid, signature, CHECK_(empty));
  2366     if (!Arguments::is_interpreter_only()) {
  2367       // Generate a compiled form of the MH intrinsic.
  2368       AdapterHandlerLibrary::create_native_wrapper(m);
  2369       // Check if have the compiled code.
  2370       if (!m->has_compiled_code()) {
  2371         THROW_MSG_(vmSymbols::java_lang_VirtualMachineError(),
  2372                    "out of space in CodeCache for method handle intrinsic", empty);
  2375     // Now grab the lock.  We might have to throw away the new method,
  2376     // if a racing thread has managed to install one at the same time.
  2378       MutexLocker ml(SystemDictionary_lock, THREAD);
  2379       spe = invoke_method_table()->find_entry(index, hash, signature, iid);
  2380       if (spe == NULL)
  2381         spe = invoke_method_table()->add_entry(index, hash, signature, iid);
  2382       if (spe->method() == NULL)
  2383         spe->set_method(m());
  2387   assert(spe != NULL && spe->method() != NULL, "");
  2388   assert(Arguments::is_interpreter_only() || (spe->method()->has_compiled_code() &&
  2389          spe->method()->code()->entry_point() == spe->method()->from_compiled_entry()),
  2390          "MH intrinsic invariant");
  2391   return spe->method();
  2394 // Helper for unpacking the return value from linkMethod and linkCallSite.
  2395 static methodHandle unpack_method_and_appendix(Handle mname,
  2396                                                KlassHandle accessing_klass,
  2397                                                objArrayHandle appendix_box,
  2398                                                Handle* appendix_result,
  2399                                                TRAPS) {
  2400   methodHandle empty;
  2401   if (mname.not_null()) {
  2402     Metadata* vmtarget = java_lang_invoke_MemberName::vmtarget(mname());
  2403     if (vmtarget != NULL && vmtarget->is_method()) {
  2404       Method* m = (Method*)vmtarget;
  2405       oop appendix = appendix_box->obj_at(0);
  2406       if (TraceMethodHandles) {
  2407     #ifndef PRODUCT
  2408         tty->print("Linked method=" INTPTR_FORMAT ": ", p2i(m));
  2409         m->print();
  2410         if (appendix != NULL) { tty->print("appendix = "); appendix->print(); }
  2411         tty->cr();
  2412     #endif //PRODUCT
  2414       (*appendix_result) = Handle(THREAD, appendix);
  2415       // the target is stored in the cpCache and if a reference to this
  2416       // MethodName is dropped we need a way to make sure the
  2417       // class_loader containing this method is kept alive.
  2418       // FIXME: the appendix might also preserve this dependency.
  2419       ClassLoaderData* this_key = InstanceKlass::cast(accessing_klass())->class_loader_data();
  2420       this_key->record_dependency(m->method_holder(), CHECK_NULL); // Can throw OOM
  2421       return methodHandle(THREAD, m);
  2424   THROW_MSG_(vmSymbols::java_lang_LinkageError(), "bad value from MethodHandleNatives", empty);
  2425   return empty;
  2428 methodHandle SystemDictionary::find_method_handle_invoker(Symbol* name,
  2429                                                           Symbol* signature,
  2430                                                           KlassHandle accessing_klass,
  2431                                                           Handle *appendix_result,
  2432                                                           Handle *method_type_result,
  2433                                                           TRAPS) {
  2434   methodHandle empty;
  2435   assert(EnableInvokeDynamic, "");
  2436   assert(!THREAD->is_Compiler_thread(), "");
  2437   Handle method_type =
  2438     SystemDictionary::find_method_handle_type(signature, accessing_klass, CHECK_(empty));
  2440   KlassHandle  mh_klass = SystemDictionary::MethodHandle_klass();
  2441   int ref_kind = JVM_REF_invokeVirtual;
  2442   Handle name_str = StringTable::intern(name, CHECK_(empty));
  2443   objArrayHandle appendix_box = oopFactory::new_objArray(SystemDictionary::Object_klass(), 1, CHECK_(empty));
  2444   assert(appendix_box->obj_at(0) == NULL, "");
  2446   // This should not happen.  JDK code should take care of that.
  2447   if (accessing_klass.is_null() || method_type.is_null()) {
  2448     THROW_MSG_(vmSymbols::java_lang_InternalError(), "bad invokehandle", empty);
  2451   // call java.lang.invoke.MethodHandleNatives::linkMethod(... String, MethodType) -> MemberName
  2452   JavaCallArguments args;
  2453   args.push_oop(accessing_klass()->java_mirror());
  2454   args.push_int(ref_kind);
  2455   args.push_oop(mh_klass()->java_mirror());
  2456   args.push_oop(name_str());
  2457   args.push_oop(method_type());
  2458   args.push_oop(appendix_box());
  2459   JavaValue result(T_OBJECT);
  2460   JavaCalls::call_static(&result,
  2461                          SystemDictionary::MethodHandleNatives_klass(),
  2462                          vmSymbols::linkMethod_name(),
  2463                          vmSymbols::linkMethod_signature(),
  2464                          &args, CHECK_(empty));
  2465   Handle mname(THREAD, (oop) result.get_jobject());
  2466   (*method_type_result) = method_type;
  2467   return unpack_method_and_appendix(mname, accessing_klass, appendix_box, appendix_result, THREAD);
  2470 // Decide if we can globally cache a lookup of this class, to be returned to any client that asks.
  2471 // We must ensure that all class loaders everywhere will reach this class, for any client.
  2472 // This is a safe bet for public classes in java.lang, such as Object and String.
  2473 // We also include public classes in java.lang.invoke, because they appear frequently in system-level method types.
  2474 // Out of an abundance of caution, we do not include any other classes, not even for packages like java.util.
  2475 static bool is_always_visible_class(oop mirror) {
  2476   Klass* klass = java_lang_Class::as_Klass(mirror);
  2477   if (klass->oop_is_objArray()) {
  2478     klass = ObjArrayKlass::cast(klass)->bottom_klass(); // check element type
  2480   if (klass->oop_is_typeArray()) {
  2481     return true; // primitive array
  2483   assert(klass->oop_is_instance(), klass->external_name());
  2484   return klass->is_public() &&
  2485          (InstanceKlass::cast(klass)->is_same_class_package(SystemDictionary::Object_klass()) ||       // java.lang
  2486           InstanceKlass::cast(klass)->is_same_class_package(SystemDictionary::MethodHandle_klass()));  // java.lang.invoke
  2489 // Ask Java code to find or construct a java.lang.invoke.MethodType for the given
  2490 // signature, as interpreted relative to the given class loader.
  2491 // Because of class loader constraints, all method handle usage must be
  2492 // consistent with this loader.
  2493 Handle SystemDictionary::find_method_handle_type(Symbol* signature,
  2494                                                  KlassHandle accessing_klass,
  2495                                                  TRAPS) {
  2496   Handle empty;
  2497   vmIntrinsics::ID null_iid = vmIntrinsics::_none;  // distinct from all method handle invoker intrinsics
  2498   unsigned int hash  = invoke_method_table()->compute_hash(signature, null_iid);
  2499   int          index = invoke_method_table()->hash_to_index(hash);
  2500   SymbolPropertyEntry* spe = invoke_method_table()->find_entry(index, hash, signature, null_iid);
  2501   if (spe != NULL && spe->method_type() != NULL) {
  2502     assert(java_lang_invoke_MethodType::is_instance(spe->method_type()), "");
  2503     return Handle(THREAD, spe->method_type());
  2504   } else if (THREAD->is_Compiler_thread()) {
  2505     warning("SystemDictionary::find_method_handle_type called from compiler thread");  // FIXME
  2506     return Handle();  // do not attempt from within compiler, unless it was cached
  2509   Handle class_loader, protection_domain;
  2510   if (accessing_klass.not_null()) {
  2511     class_loader      = Handle(THREAD, InstanceKlass::cast(accessing_klass())->class_loader());
  2512     protection_domain = Handle(THREAD, InstanceKlass::cast(accessing_klass())->protection_domain());
  2514   bool can_be_cached = true;
  2515   int npts = ArgumentCount(signature).size();
  2516   objArrayHandle pts = oopFactory::new_objArray(SystemDictionary::Class_klass(), npts, CHECK_(empty));
  2517   int arg = 0;
  2518   Handle rt; // the return type from the signature
  2519   ResourceMark rm(THREAD);
  2520   for (SignatureStream ss(signature); !ss.is_done(); ss.next()) {
  2521     oop mirror = NULL;
  2522     if (can_be_cached) {
  2523       // Use neutral class loader to lookup candidate classes to be placed in the cache.
  2524       mirror = ss.as_java_mirror(Handle(), Handle(),
  2525                                  SignatureStream::ReturnNull, CHECK_(empty));
  2526       if (mirror == NULL || (ss.is_object() && !is_always_visible_class(mirror))) {
  2527         // Fall back to accessing_klass context.
  2528         can_be_cached = false;
  2531     if (!can_be_cached) {
  2532       // Resolve, throwing a real error if it doesn't work.
  2533       mirror = ss.as_java_mirror(class_loader, protection_domain,
  2534                                  SignatureStream::NCDFError, CHECK_(empty));
  2536     assert(!oopDesc::is_null(mirror), ss.as_symbol(THREAD)->as_C_string());
  2537     if (ss.at_return_type())
  2538       rt = Handle(THREAD, mirror);
  2539     else
  2540       pts->obj_at_put(arg++, mirror);
  2542     // Check accessibility.
  2543     if (ss.is_object() && accessing_klass.not_null()) {
  2544       Klass* sel_klass = java_lang_Class::as_Klass(mirror);
  2545       mirror = NULL;  // safety
  2546       // Emulate ConstantPool::verify_constant_pool_resolve.
  2547       if (sel_klass->oop_is_objArray())
  2548         sel_klass = ObjArrayKlass::cast(sel_klass)->bottom_klass();
  2549       if (sel_klass->oop_is_instance()) {
  2550         KlassHandle sel_kh(THREAD, sel_klass);
  2551         LinkResolver::check_klass_accessability(accessing_klass, sel_kh, CHECK_(empty));
  2555   assert(arg == npts, "");
  2557   // call java.lang.invoke.MethodHandleNatives::findMethodType(Class rt, Class[] pts) -> MethodType
  2558   JavaCallArguments args(Handle(THREAD, rt()));
  2559   args.push_oop(pts());
  2560   JavaValue result(T_OBJECT);
  2561   JavaCalls::call_static(&result,
  2562                          SystemDictionary::MethodHandleNatives_klass(),
  2563                          vmSymbols::findMethodHandleType_name(),
  2564                          vmSymbols::findMethodHandleType_signature(),
  2565                          &args, CHECK_(empty));
  2566   Handle method_type(THREAD, (oop) result.get_jobject());
  2568   if (can_be_cached) {
  2569     // We can cache this MethodType inside the JVM.
  2570     MutexLocker ml(SystemDictionary_lock, THREAD);
  2571     spe = invoke_method_table()->find_entry(index, hash, signature, null_iid);
  2572     if (spe == NULL)
  2573       spe = invoke_method_table()->add_entry(index, hash, signature, null_iid);
  2574     if (spe->method_type() == NULL) {
  2575       spe->set_method_type(method_type());
  2579   // report back to the caller with the MethodType
  2580   return method_type;
  2583 // Ask Java code to find or construct a method handle constant.
  2584 Handle SystemDictionary::link_method_handle_constant(KlassHandle caller,
  2585                                                      int ref_kind, //e.g., JVM_REF_invokeVirtual
  2586                                                      KlassHandle callee,
  2587                                                      Symbol* name_sym,
  2588                                                      Symbol* signature,
  2589                                                      TRAPS) {
  2590   Handle empty;
  2591   Handle name = java_lang_String::create_from_symbol(name_sym, CHECK_(empty));
  2592   Handle type;
  2593   if (signature->utf8_length() > 0 && signature->byte_at(0) == '(') {
  2594     type = find_method_handle_type(signature, caller, CHECK_(empty));
  2595   } else if (caller.is_null()) {
  2596     // This should not happen.  JDK code should take care of that.
  2597     THROW_MSG_(vmSymbols::java_lang_InternalError(), "bad MH constant", empty);
  2598   } else {
  2599     ResourceMark rm(THREAD);
  2600     SignatureStream ss(signature, false);
  2601     if (!ss.is_done()) {
  2602       oop mirror = ss.as_java_mirror(caller->class_loader(), caller->protection_domain(),
  2603                                      SignatureStream::NCDFError, CHECK_(empty));
  2604       type = Handle(THREAD, mirror);
  2605       ss.next();
  2606       if (!ss.is_done())  type = Handle();  // error!
  2609   if (type.is_null()) {
  2610     THROW_MSG_(vmSymbols::java_lang_LinkageError(), "bad signature", empty);
  2613   // call java.lang.invoke.MethodHandleNatives::linkMethodHandleConstant(Class caller, int refKind, Class callee, String name, Object type) -> MethodHandle
  2614   JavaCallArguments args;
  2615   args.push_oop(caller->java_mirror());  // the referring class
  2616   args.push_int(ref_kind);
  2617   args.push_oop(callee->java_mirror());  // the target class
  2618   args.push_oop(name());
  2619   args.push_oop(type());
  2620   JavaValue result(T_OBJECT);
  2621   JavaCalls::call_static(&result,
  2622                          SystemDictionary::MethodHandleNatives_klass(),
  2623                          vmSymbols::linkMethodHandleConstant_name(),
  2624                          vmSymbols::linkMethodHandleConstant_signature(),
  2625                          &args, CHECK_(empty));
  2626   return Handle(THREAD, (oop) result.get_jobject());
  2629 // Ask Java code to find or construct a java.lang.invoke.CallSite for the given
  2630 // name and signature, as interpreted relative to the given class loader.
  2631 methodHandle SystemDictionary::find_dynamic_call_site_invoker(KlassHandle caller,
  2632                                                               Handle bootstrap_specifier,
  2633                                                               Symbol* name,
  2634                                                               Symbol* type,
  2635                                                               Handle *appendix_result,
  2636                                                               Handle *method_type_result,
  2637                                                               TRAPS) {
  2638   methodHandle empty;
  2639   Handle bsm, info;
  2640   if (java_lang_invoke_MethodHandle::is_instance(bootstrap_specifier())) {
  2641     bsm = bootstrap_specifier;
  2642   } else {
  2643     assert(bootstrap_specifier->is_objArray(), "");
  2644     objArrayHandle args(THREAD, (objArrayOop) bootstrap_specifier());
  2645     int len = args->length();
  2646     assert(len >= 1, "");
  2647     bsm = Handle(THREAD, args->obj_at(0));
  2648     if (len > 1) {
  2649       objArrayOop args1 = oopFactory::new_objArray(SystemDictionary::Object_klass(), len-1, CHECK_(empty));
  2650       for (int i = 1; i < len; i++)
  2651         args1->obj_at_put(i-1, args->obj_at(i));
  2652       info = Handle(THREAD, args1);
  2655   guarantee(java_lang_invoke_MethodHandle::is_instance(bsm()),
  2656             "caller must supply a valid BSM");
  2658   Handle method_name = java_lang_String::create_from_symbol(name, CHECK_(empty));
  2659   Handle method_type = find_method_handle_type(type, caller, CHECK_(empty));
  2661   // This should not happen.  JDK code should take care of that.
  2662   if (caller.is_null() || method_type.is_null()) {
  2663     THROW_MSG_(vmSymbols::java_lang_InternalError(), "bad invokedynamic", empty);
  2666   objArrayHandle appendix_box = oopFactory::new_objArray(SystemDictionary::Object_klass(), 1, CHECK_(empty));
  2667   assert(appendix_box->obj_at(0) == NULL, "");
  2669   // call java.lang.invoke.MethodHandleNatives::linkCallSite(caller, bsm, name, mtype, info, &appendix)
  2670   JavaCallArguments args;
  2671   args.push_oop(caller->java_mirror());
  2672   args.push_oop(bsm());
  2673   args.push_oop(method_name());
  2674   args.push_oop(method_type());
  2675   args.push_oop(info());
  2676   args.push_oop(appendix_box);
  2677   JavaValue result(T_OBJECT);
  2678   JavaCalls::call_static(&result,
  2679                          SystemDictionary::MethodHandleNatives_klass(),
  2680                          vmSymbols::linkCallSite_name(),
  2681                          vmSymbols::linkCallSite_signature(),
  2682                          &args, CHECK_(empty));
  2683   Handle mname(THREAD, (oop) result.get_jobject());
  2684   (*method_type_result) = method_type;
  2685   return unpack_method_and_appendix(mname, caller, appendix_box, appendix_result, THREAD);
  2688 // Since the identity hash code for symbols changes when the symbols are
  2689 // moved from the regular perm gen (hash in the mark word) to the shared
  2690 // spaces (hash is the address), the classes loaded into the dictionary
  2691 // may be in the wrong buckets.
  2693 void SystemDictionary::reorder_dictionary() {
  2694   dictionary()->reorder_dictionary();
  2698 void SystemDictionary::copy_buckets(char** top, char* end) {
  2699   dictionary()->copy_buckets(top, end);
  2703 void SystemDictionary::copy_table(char** top, char* end) {
  2704   dictionary()->copy_table(top, end);
  2708 void SystemDictionary::reverse() {
  2709   dictionary()->reverse();
  2712 int SystemDictionary::number_of_classes() {
  2713   return dictionary()->number_of_entries();
  2717 // ----------------------------------------------------------------------------
  2718 void SystemDictionary::print_shared(bool details) {
  2719   shared_dictionary()->print(details);
  2722 void SystemDictionary::print(bool details) {
  2723   dictionary()->print(details);
  2725   // Placeholders
  2726   GCMutexLocker mu(SystemDictionary_lock);
  2727   placeholders()->print();
  2729   // loader constraints - print under SD_lock
  2730   constraints()->print();
  2734 void SystemDictionary::verify() {
  2735   guarantee(dictionary() != NULL, "Verify of system dictionary failed");
  2736   guarantee(constraints() != NULL,
  2737             "Verify of loader constraints failed");
  2738   guarantee(dictionary()->number_of_entries() >= 0 &&
  2739             placeholders()->number_of_entries() >= 0,
  2740             "Verify of system dictionary failed");
  2742   // Verify dictionary
  2743   dictionary()->verify();
  2745   GCMutexLocker mu(SystemDictionary_lock);
  2746   placeholders()->verify();
  2748   // Verify constraint table
  2749   guarantee(constraints() != NULL, "Verify of loader constraints failed");
  2750   constraints()->verify(dictionary(), placeholders());
  2753 #ifndef PRODUCT
  2755 // statistics code
  2756 class ClassStatistics: AllStatic {
  2757  private:
  2758   static int nclasses;        // number of classes
  2759   static int nmethods;        // number of methods
  2760   static int nmethoddata;     // number of methodData
  2761   static int class_size;      // size of class objects in words
  2762   static int method_size;     // size of method objects in words
  2763   static int debug_size;      // size of debug info in methods
  2764   static int methoddata_size; // size of methodData objects in words
  2766   static void do_class(Klass* k) {
  2767     nclasses++;
  2768     class_size += k->size();
  2769     if (k->oop_is_instance()) {
  2770       InstanceKlass* ik = (InstanceKlass*)k;
  2771       class_size += ik->methods()->size();
  2772       class_size += ik->constants()->size();
  2773       class_size += ik->local_interfaces()->size();
  2774       class_size += ik->transitive_interfaces()->size();
  2775       // We do not have to count implementors, since we only store one!
  2776       // SSS: How should these be accounted now that they have moved?
  2777       // class_size += ik->fields()->length();
  2781   static void do_method(Method* m) {
  2782     nmethods++;
  2783     method_size += m->size();
  2784     // class loader uses same objArray for empty vectors, so don't count these
  2785     if (m->has_stackmap_table()) {
  2786       method_size += m->stackmap_data()->size();
  2789     MethodData* mdo = m->method_data();
  2790     if (mdo != NULL) {
  2791       nmethoddata++;
  2792       methoddata_size += mdo->size();
  2796  public:
  2797   static void print() {
  2798     SystemDictionary::classes_do(do_class);
  2799     SystemDictionary::methods_do(do_method);
  2800     tty->print_cr("Class statistics:");
  2801     tty->print_cr("%d classes (%d bytes)", nclasses, class_size * oopSize);
  2802     tty->print_cr("%d methods (%d bytes = %d base + %d debug info)", nmethods,
  2803                   (method_size + debug_size) * oopSize, method_size * oopSize, debug_size * oopSize);
  2804     tty->print_cr("%d methoddata (%d bytes)", nmethoddata, methoddata_size * oopSize);
  2806 };
  2809 int ClassStatistics::nclasses        = 0;
  2810 int ClassStatistics::nmethods        = 0;
  2811 int ClassStatistics::nmethoddata     = 0;
  2812 int ClassStatistics::class_size      = 0;
  2813 int ClassStatistics::method_size     = 0;
  2814 int ClassStatistics::debug_size      = 0;
  2815 int ClassStatistics::methoddata_size = 0;
  2817 void SystemDictionary::print_class_statistics() {
  2818   ResourceMark rm;
  2819   ClassStatistics::print();
  2823 class MethodStatistics: AllStatic {
  2824  public:
  2825   enum {
  2826     max_parameter_size = 10
  2827   };
  2828  private:
  2830   static int _number_of_methods;
  2831   static int _number_of_final_methods;
  2832   static int _number_of_static_methods;
  2833   static int _number_of_native_methods;
  2834   static int _number_of_synchronized_methods;
  2835   static int _number_of_profiled_methods;
  2836   static int _number_of_bytecodes;
  2837   static int _parameter_size_profile[max_parameter_size];
  2838   static int _bytecodes_profile[Bytecodes::number_of_java_codes];
  2840   static void initialize() {
  2841     _number_of_methods        = 0;
  2842     _number_of_final_methods  = 0;
  2843     _number_of_static_methods = 0;
  2844     _number_of_native_methods = 0;
  2845     _number_of_synchronized_methods = 0;
  2846     _number_of_profiled_methods = 0;
  2847     _number_of_bytecodes      = 0;
  2848     for (int i = 0; i < max_parameter_size             ; i++) _parameter_size_profile[i] = 0;
  2849     for (int j = 0; j < Bytecodes::number_of_java_codes; j++) _bytecodes_profile     [j] = 0;
  2850   };
  2852   static void do_method(Method* m) {
  2853     _number_of_methods++;
  2854     // collect flag info
  2855     if (m->is_final()       ) _number_of_final_methods++;
  2856     if (m->is_static()      ) _number_of_static_methods++;
  2857     if (m->is_native()      ) _number_of_native_methods++;
  2858     if (m->is_synchronized()) _number_of_synchronized_methods++;
  2859     if (m->method_data() != NULL) _number_of_profiled_methods++;
  2860     // collect parameter size info (add one for receiver, if any)
  2861     _parameter_size_profile[MIN2(m->size_of_parameters() + (m->is_static() ? 0 : 1), max_parameter_size - 1)]++;
  2862     // collect bytecodes info
  2864       Thread *thread = Thread::current();
  2865       HandleMark hm(thread);
  2866       BytecodeStream s(methodHandle(thread, m));
  2867       Bytecodes::Code c;
  2868       while ((c = s.next()) >= 0) {
  2869         _number_of_bytecodes++;
  2870         _bytecodes_profile[c]++;
  2875  public:
  2876   static void print() {
  2877     initialize();
  2878     SystemDictionary::methods_do(do_method);
  2879     // generate output
  2880     tty->cr();
  2881     tty->print_cr("Method statistics (static):");
  2882     // flag distribution
  2883     tty->cr();
  2884     tty->print_cr("%6d final        methods  %6.1f%%", _number_of_final_methods       , _number_of_final_methods        * 100.0F / _number_of_methods);
  2885     tty->print_cr("%6d static       methods  %6.1f%%", _number_of_static_methods      , _number_of_static_methods       * 100.0F / _number_of_methods);
  2886     tty->print_cr("%6d native       methods  %6.1f%%", _number_of_native_methods      , _number_of_native_methods       * 100.0F / _number_of_methods);
  2887     tty->print_cr("%6d synchronized methods  %6.1f%%", _number_of_synchronized_methods, _number_of_synchronized_methods * 100.0F / _number_of_methods);
  2888     tty->print_cr("%6d profiled     methods  %6.1f%%", _number_of_profiled_methods, _number_of_profiled_methods * 100.0F / _number_of_methods);
  2889     // parameter size profile
  2890     tty->cr();
  2891     { int tot = 0;
  2892       int avg = 0;
  2893       for (int i = 0; i < max_parameter_size; i++) {
  2894         int n = _parameter_size_profile[i];
  2895         tot += n;
  2896         avg += n*i;
  2897         tty->print_cr("parameter size = %1d: %6d methods  %5.1f%%", i, n, n * 100.0F / _number_of_methods);
  2899       assert(tot == _number_of_methods, "should be the same");
  2900       tty->print_cr("                    %6d methods  100.0%%", _number_of_methods);
  2901       tty->print_cr("(average parameter size = %3.1f including receiver, if any)", (float)avg / _number_of_methods);
  2903     // bytecodes profile
  2904     tty->cr();
  2905     { int tot = 0;
  2906       for (int i = 0; i < Bytecodes::number_of_java_codes; i++) {
  2907         if (Bytecodes::is_defined(i)) {
  2908           Bytecodes::Code c = Bytecodes::cast(i);
  2909           int n = _bytecodes_profile[c];
  2910           tot += n;
  2911           tty->print_cr("%9d  %7.3f%%  %s", n, n * 100.0F / _number_of_bytecodes, Bytecodes::name(c));
  2914       assert(tot == _number_of_bytecodes, "should be the same");
  2915       tty->print_cr("%9d  100.000%%", _number_of_bytecodes);
  2917     tty->cr();
  2919 };
  2921 int MethodStatistics::_number_of_methods;
  2922 int MethodStatistics::_number_of_final_methods;
  2923 int MethodStatistics::_number_of_static_methods;
  2924 int MethodStatistics::_number_of_native_methods;
  2925 int MethodStatistics::_number_of_synchronized_methods;
  2926 int MethodStatistics::_number_of_profiled_methods;
  2927 int MethodStatistics::_number_of_bytecodes;
  2928 int MethodStatistics::_parameter_size_profile[MethodStatistics::max_parameter_size];
  2929 int MethodStatistics::_bytecodes_profile[Bytecodes::number_of_java_codes];
  2932 void SystemDictionary::print_method_statistics() {
  2933   MethodStatistics::print();
  2936 #endif // PRODUCT

mercurial