src/share/vm/classfile/systemDictionary.cpp

Tue, 22 Mar 2011 13:36:33 -0700

author
jcoomes
date
Tue, 22 Mar 2011 13:36:33 -0700
changeset 2661
b099aaf51bf8
parent 2639
8033953d67ff
child 2698
38fea01eb669
permissions
-rw-r--r--

6962931: move interned strings out of the perm gen
Reviewed-by: never, coleenp, ysr, jwilhelm

     1 /*
     2  * Copyright (c) 1997, 2011, 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/dictionary.hpp"
    27 #include "classfile/javaClasses.hpp"
    28 #include "classfile/loaderConstraints.hpp"
    29 #include "classfile/placeholders.hpp"
    30 #include "classfile/resolutionErrors.hpp"
    31 #include "classfile/systemDictionary.hpp"
    32 #include "classfile/vmSymbols.hpp"
    33 #include "interpreter/bytecodeStream.hpp"
    34 #include "interpreter/interpreter.hpp"
    35 #include "memory/gcLocker.hpp"
    36 #include "memory/oopFactory.hpp"
    37 #include "oops/instanceKlass.hpp"
    38 #include "oops/instanceRefKlass.hpp"
    39 #include "oops/klass.inline.hpp"
    40 #include "oops/methodDataOop.hpp"
    41 #include "oops/objArrayKlass.hpp"
    42 #include "oops/oop.inline.hpp"
    43 #include "oops/oop.inline2.hpp"
    44 #include "oops/typeArrayKlass.hpp"
    45 #include "prims/jvmtiEnvBase.hpp"
    46 #include "prims/methodHandles.hpp"
    47 #include "runtime/biasedLocking.hpp"
    48 #include "runtime/fieldType.hpp"
    49 #include "runtime/handles.inline.hpp"
    50 #include "runtime/java.hpp"
    51 #include "runtime/javaCalls.hpp"
    52 #include "runtime/mutexLocker.hpp"
    53 #include "runtime/signature.hpp"
    54 #include "services/classLoadingService.hpp"
    55 #include "services/threadService.hpp"
    58 Dictionary*            SystemDictionary::_dictionary          = NULL;
    59 PlaceholderTable*      SystemDictionary::_placeholders        = NULL;
    60 Dictionary*            SystemDictionary::_shared_dictionary   = NULL;
    61 LoaderConstraintTable* SystemDictionary::_loader_constraints  = NULL;
    62 ResolutionErrorTable*  SystemDictionary::_resolution_errors   = NULL;
    63 SymbolPropertyTable*   SystemDictionary::_invoke_method_table = NULL;
    66 int         SystemDictionary::_number_of_modifications = 0;
    68 oop         SystemDictionary::_system_loader_lock_obj     =  NULL;
    70 klassOop    SystemDictionary::_well_known_klasses[SystemDictionary::WKID_LIMIT]
    71                                                           =  { NULL /*, NULL...*/ };
    73 klassOop    SystemDictionary::_box_klasses[T_VOID+1]      =  { NULL /*, NULL...*/ };
    75 oop         SystemDictionary::_java_system_loader         =  NULL;
    77 bool        SystemDictionary::_has_loadClassInternal      =  false;
    78 bool        SystemDictionary::_has_checkPackageAccess     =  false;
    80 // lazily initialized klass variables
    81 volatile klassOop    SystemDictionary::_abstract_ownable_synchronizer_klass = NULL;
    84 // ----------------------------------------------------------------------------
    85 // Java-level SystemLoader
    87 oop SystemDictionary::java_system_loader() {
    88   return _java_system_loader;
    89 }
    91 void SystemDictionary::compute_java_system_loader(TRAPS) {
    92   KlassHandle system_klass(THREAD, WK_KLASS(ClassLoader_klass));
    93   JavaValue result(T_OBJECT);
    94   JavaCalls::call_static(&result,
    95                          KlassHandle(THREAD, WK_KLASS(ClassLoader_klass)),
    96                          vmSymbols::getSystemClassLoader_name(),
    97                          vmSymbols::void_classloader_signature(),
    98                          CHECK);
   100   _java_system_loader = (oop)result.get_jobject();
   101 }
   104 // ----------------------------------------------------------------------------
   105 // debugging
   107 #ifdef ASSERT
   109 // return true if class_name contains no '.' (internal format is '/')
   110 bool SystemDictionary::is_internal_format(Symbol* class_name) {
   111   if (class_name != NULL) {
   112     ResourceMark rm;
   113     char* name = class_name->as_C_string();
   114     return strchr(name, '.') == NULL;
   115   } else {
   116     return true;
   117   }
   118 }
   120 #endif
   122 // ----------------------------------------------------------------------------
   123 // Parallel class loading check
   125 bool SystemDictionary::is_parallelCapable(Handle class_loader) {
   126   if (UnsyncloadClass || class_loader.is_null()) return true;
   127   if (AlwaysLockClassLoader) return false;
   128   return java_lang_Class::parallelCapable(class_loader());
   129 }
   130 // ----------------------------------------------------------------------------
   131 // ParallelDefineClass flag does not apply to bootclass loader
   132 bool SystemDictionary::is_parallelDefine(Handle class_loader) {
   133    if (class_loader.is_null()) return false;
   134    if (AllowParallelDefineClass && java_lang_Class::parallelCapable(class_loader())) {
   135      return true;
   136    }
   137    return false;
   138 }
   139 // ----------------------------------------------------------------------------
   140 // Resolving of classes
   142 // Forwards to resolve_or_null
   144 klassOop SystemDictionary::resolve_or_fail(Symbol* class_name, Handle class_loader, Handle protection_domain, bool throw_error, TRAPS) {
   145   klassOop klass = resolve_or_null(class_name, class_loader, protection_domain, THREAD);
   146   if (HAS_PENDING_EXCEPTION || klass == NULL) {
   147     KlassHandle k_h(THREAD, klass);
   148     // can return a null klass
   149     klass = handle_resolution_exception(class_name, class_loader, protection_domain, throw_error, k_h, THREAD);
   150   }
   151   return klass;
   152 }
   154 klassOop SystemDictionary::handle_resolution_exception(Symbol* class_name, Handle class_loader, Handle protection_domain, bool throw_error, KlassHandle klass_h, TRAPS) {
   155   if (HAS_PENDING_EXCEPTION) {
   156     // If we have a pending exception we forward it to the caller, unless throw_error is true,
   157     // in which case we have to check whether the pending exception is a ClassNotFoundException,
   158     // and if so convert it to a NoClassDefFoundError
   159     // And chain the original ClassNotFoundException
   160     if (throw_error && PENDING_EXCEPTION->is_a(SystemDictionary::ClassNotFoundException_klass())) {
   161       ResourceMark rm(THREAD);
   162       assert(klass_h() == NULL, "Should not have result with exception pending");
   163       Handle e(THREAD, PENDING_EXCEPTION);
   164       CLEAR_PENDING_EXCEPTION;
   165       THROW_MSG_CAUSE_0(vmSymbols::java_lang_NoClassDefFoundError(), class_name->as_C_string(), e);
   166     } else {
   167       return NULL;
   168     }
   169   }
   170   // Class not found, throw appropriate error or exception depending on value of throw_error
   171   if (klass_h() == NULL) {
   172     ResourceMark rm(THREAD);
   173     if (throw_error) {
   174       THROW_MSG_0(vmSymbols::java_lang_NoClassDefFoundError(), class_name->as_C_string());
   175     } else {
   176       THROW_MSG_0(vmSymbols::java_lang_ClassNotFoundException(), class_name->as_C_string());
   177     }
   178   }
   179   return (klassOop)klass_h();
   180 }
   183 klassOop SystemDictionary::resolve_or_fail(Symbol* class_name,
   184                                            bool throw_error, TRAPS)
   185 {
   186   return resolve_or_fail(class_name, Handle(), Handle(), throw_error, THREAD);
   187 }
   190 // Forwards to resolve_instance_class_or_null
   192 klassOop SystemDictionary::resolve_or_null(Symbol* class_name, Handle class_loader, Handle protection_domain, TRAPS) {
   193   assert(!THREAD->is_Compiler_thread(), "Can not load classes with the Compiler thread");
   194   if (FieldType::is_array(class_name)) {
   195     return resolve_array_class_or_null(class_name, class_loader, protection_domain, CHECK_NULL);
   196   } else if (FieldType::is_obj(class_name)) {
   197     ResourceMark rm(THREAD);
   198     // Ignore wrapping L and ;.
   199     TempNewSymbol name = SymbolTable::new_symbol(class_name->as_C_string() + 1,
   200                                    class_name->utf8_length() - 2, CHECK_NULL);
   201     return resolve_instance_class_or_null(name, class_loader, protection_domain, CHECK_NULL);
   202   } else {
   203     return resolve_instance_class_or_null(class_name, class_loader, protection_domain, CHECK_NULL);
   204   }
   205 }
   207 klassOop SystemDictionary::resolve_or_null(Symbol* class_name, TRAPS) {
   208   return resolve_or_null(class_name, Handle(), Handle(), THREAD);
   209 }
   211 // Forwards to resolve_instance_class_or_null
   213 klassOop SystemDictionary::resolve_array_class_or_null(Symbol* class_name,
   214                                                        Handle class_loader,
   215                                                        Handle protection_domain,
   216                                                        TRAPS) {
   217   assert(FieldType::is_array(class_name), "must be array");
   218   klassOop k = NULL;
   219   FieldArrayInfo fd;
   220   // dimension and object_key in FieldArrayInfo are assigned as a side-effect
   221   // of this call
   222   BasicType t = FieldType::get_array_info(class_name, fd, CHECK_NULL);
   223   if (t == T_OBJECT) {
   224     // naked oop "k" is OK here -- we assign back into it
   225     k = SystemDictionary::resolve_instance_class_or_null(fd.object_key(),
   226                                                          class_loader,
   227                                                          protection_domain,
   228                                                          CHECK_NULL);
   229     if (k != NULL) {
   230       k = Klass::cast(k)->array_klass(fd.dimension(), CHECK_NULL);
   231     }
   232   } else {
   233     k = Universe::typeArrayKlassObj(t);
   234     k = typeArrayKlass::cast(k)->array_klass(fd.dimension(), CHECK_NULL);
   235   }
   236   return k;
   237 }
   240 // Must be called for any super-class or super-interface resolution
   241 // during class definition to allow class circularity checking
   242 // super-interface callers:
   243 //    parse_interfaces - for defineClass & jvmtiRedefineClasses
   244 // super-class callers:
   245 //   ClassFileParser - for defineClass & jvmtiRedefineClasses
   246 //   load_shared_class - while loading a class from shared archive
   247 //   resolve_instance_class_or_null:
   248 //     via: handle_parallel_super_load
   249 //      when resolving a class that has an existing placeholder with
   250 //      a saved superclass [i.e. a defineClass is currently in progress]
   251 //      if another thread is trying to resolve the class, it must do
   252 //      super-class checks on its own thread to catch class circularity
   253 // This last call is critical in class circularity checking for cases
   254 // where classloading is delegated to different threads and the
   255 // classloader lock is released.
   256 // Take the case: Base->Super->Base
   257 //   1. If thread T1 tries to do a defineClass of class Base
   258 //    resolve_super_or_fail creates placeholder: T1, Base (super Super)
   259 //   2. resolve_instance_class_or_null does not find SD or placeholder for Super
   260 //    so it tries to load Super
   261 //   3. If we load the class internally, or user classloader uses same thread
   262 //      loadClassFromxxx or defineClass via parseClassFile Super ...
   263 //      3.1 resolve_super_or_fail creates placeholder: T1, Super (super Base)
   264 //      3.3 resolve_instance_class_or_null Base, finds placeholder for Base
   265 //      3.4 calls resolve_super_or_fail Base
   266 //      3.5 finds T1,Base -> throws class circularity
   267 //OR 4. If T2 tries to resolve Super via defineClass Super ...
   268 //      4.1 resolve_super_or_fail creates placeholder: T2, Super (super Base)
   269 //      4.2 resolve_instance_class_or_null Base, finds placeholder for Base (super Super)
   270 //      4.3 calls resolve_super_or_fail Super in parallel on own thread T2
   271 //      4.4 finds T2, Super -> throws class circularity
   272 // Must be called, even if superclass is null, since this is
   273 // where the placeholder entry is created which claims this
   274 // thread is loading this class/classloader.
   275 klassOop SystemDictionary::resolve_super_or_fail(Symbol* child_name,
   276                                                  Symbol* class_name,
   277                                                  Handle class_loader,
   278                                                  Handle protection_domain,
   279                                                  bool is_superclass,
   280                                                  TRAPS) {
   282   // Try to get one of the well-known klasses.
   283   // They are trusted, and do not participate in circularities.
   284   if (LinkWellKnownClasses) {
   285     klassOop k = find_well_known_klass(class_name);
   286     if (k != NULL) {
   287       return k;
   288     }
   289   }
   291   // Double-check, if child class is already loaded, just return super-class,interface
   292   // Don't add a placedholder if already loaded, i.e. already in system dictionary
   293   // Make sure there's a placeholder for the *child* before resolving.
   294   // Used as a claim that this thread is currently loading superclass/classloader
   295   // Used here for ClassCircularity checks and also for heap verification
   296   // (every instanceKlass in the heap needs to be in the system dictionary
   297   // or have a placeholder).
   298   // Must check ClassCircularity before checking if super class is already loaded
   299   //
   300   // We might not already have a placeholder if this child_name was
   301   // first seen via resolve_from_stream (jni_DefineClass or JVM_DefineClass);
   302   // the name of the class might not be known until the stream is actually
   303   // parsed.
   304   // Bugs 4643874, 4715493
   305   // compute_hash can have a safepoint
   307   unsigned int d_hash = dictionary()->compute_hash(child_name, class_loader);
   308   int d_index = dictionary()->hash_to_index(d_hash);
   309   unsigned int p_hash = placeholders()->compute_hash(child_name, class_loader);
   310   int p_index = placeholders()->hash_to_index(p_hash);
   311   // can't throw error holding a lock
   312   bool child_already_loaded = false;
   313   bool throw_circularity_error = false;
   314   {
   315     MutexLocker mu(SystemDictionary_lock, THREAD);
   316     klassOop childk = find_class(d_index, d_hash, child_name, class_loader);
   317     klassOop quicksuperk;
   318     // to support // loading: if child done loading, just return superclass
   319     // if class_name, & class_loader don't match:
   320     // if initial define, SD update will give LinkageError
   321     // if redefine: compare_class_versions will give HIERARCHY_CHANGED
   322     // so we don't throw an exception here.
   323     // see: nsk redefclass014 & java.lang.instrument Instrument032
   324     if ((childk != NULL ) && (is_superclass) &&
   325        ((quicksuperk = instanceKlass::cast(childk)->super()) != NULL) &&
   327          ((Klass::cast(quicksuperk)->name() == class_name) &&
   328             (Klass::cast(quicksuperk)->class_loader()  == class_loader()))) {
   329            return quicksuperk;
   330     } else {
   331       PlaceholderEntry* probe = placeholders()->get_entry(p_index, p_hash, child_name, class_loader);
   332       if (probe && probe->check_seen_thread(THREAD, PlaceholderTable::LOAD_SUPER)) {
   333           throw_circularity_error = true;
   334       }
   335     }
   336     if (!throw_circularity_error) {
   337       PlaceholderEntry* newprobe = placeholders()->find_and_add(p_index, p_hash, child_name, class_loader, PlaceholderTable::LOAD_SUPER, class_name, THREAD);
   338     }
   339   }
   340   if (throw_circularity_error) {
   341       ResourceMark rm(THREAD);
   342       THROW_MSG_0(vmSymbols::java_lang_ClassCircularityError(), child_name->as_C_string());
   343   }
   345 // java.lang.Object should have been found above
   346   assert(class_name != NULL, "null super class for resolving");
   347   // Resolve the super class or interface, check results on return
   348   klassOop superk = NULL;
   349   superk = SystemDictionary::resolve_or_null(class_name,
   350                                                  class_loader,
   351                                                  protection_domain,
   352                                                  THREAD);
   354   KlassHandle superk_h(THREAD, superk);
   356   // Note: clean up of placeholders currently in callers of
   357   // resolve_super_or_fail - either at update_dictionary time
   358   // or on error
   359   {
   360   MutexLocker mu(SystemDictionary_lock, THREAD);
   361    PlaceholderEntry* probe = placeholders()->get_entry(p_index, p_hash, child_name, class_loader);
   362    if (probe != NULL) {
   363       probe->remove_seen_thread(THREAD, PlaceholderTable::LOAD_SUPER);
   364    }
   365   }
   366   if (HAS_PENDING_EXCEPTION || superk_h() == NULL) {
   367     // can null superk
   368     superk_h = KlassHandle(THREAD, handle_resolution_exception(class_name, class_loader, protection_domain, true, superk_h, THREAD));
   369   }
   371   return superk_h();
   372 }
   374 void SystemDictionary::validate_protection_domain(instanceKlassHandle klass,
   375                                                   Handle class_loader,
   376                                                   Handle protection_domain,
   377                                                   TRAPS) {
   378   if(!has_checkPackageAccess()) return;
   380   // Now we have to call back to java to check if the initating class has access
   381   JavaValue result(T_VOID);
   382   if (TraceProtectionDomainVerification) {
   383     // Print out trace information
   384     tty->print_cr("Checking package access");
   385     tty->print(" - class loader:      "); class_loader()->print_value_on(tty);      tty->cr();
   386     tty->print(" - protection domain: "); protection_domain()->print_value_on(tty); tty->cr();
   387     tty->print(" - loading:           "); klass()->print_value_on(tty);             tty->cr();
   388   }
   390   assert(class_loader() != NULL, "should not have non-null protection domain for null classloader");
   392   KlassHandle system_loader(THREAD, SystemDictionary::ClassLoader_klass());
   393   JavaCalls::call_special(&result,
   394                          class_loader,
   395                          system_loader,
   396                          vmSymbols::checkPackageAccess_name(),
   397                          vmSymbols::class_protectiondomain_signature(),
   398                          Handle(THREAD, klass->java_mirror()),
   399                          protection_domain,
   400                          THREAD);
   402   if (TraceProtectionDomainVerification) {
   403     if (HAS_PENDING_EXCEPTION) {
   404       tty->print_cr(" -> DENIED !!!!!!!!!!!!!!!!!!!!!");
   405     } else {
   406      tty->print_cr(" -> granted");
   407     }
   408     tty->cr();
   409   }
   411   if (HAS_PENDING_EXCEPTION) return;
   413   // If no exception has been thrown, we have validated the protection domain
   414   // Insert the protection domain of the initiating class into the set.
   415   {
   416     // We recalculate the entry here -- we've called out to java since
   417     // the last time it was calculated.
   418     Symbol*  kn = klass->name();
   419     unsigned int d_hash = dictionary()->compute_hash(kn, class_loader);
   420     int d_index = dictionary()->hash_to_index(d_hash);
   422     MutexLocker mu(SystemDictionary_lock, THREAD);
   423     {
   424       // Note that we have an entry, and entries can be deleted only during GC,
   425       // so we cannot allow GC to occur while we're holding this entry.
   427       // We're using a No_Safepoint_Verifier to catch any place where we
   428       // might potentially do a GC at all.
   429       // SystemDictionary::do_unloading() asserts that classes are only
   430       // unloaded at a safepoint.
   431       No_Safepoint_Verifier nosafepoint;
   432       dictionary()->add_protection_domain(d_index, d_hash, klass, class_loader,
   433                                           protection_domain, THREAD);
   434     }
   435   }
   436 }
   438 // We only get here if this thread finds that another thread
   439 // has already claimed the placeholder token for the current operation,
   440 // but that other thread either never owned or gave up the
   441 // object lock
   442 // Waits on SystemDictionary_lock to indicate placeholder table updated
   443 // On return, caller must recheck placeholder table state
   444 //
   445 // We only get here if
   446 //  1) custom classLoader, i.e. not bootstrap classloader
   447 //  2) UnsyncloadClass not set
   448 //  3) custom classLoader has broken the class loader objectLock
   449 //     so another thread got here in parallel
   450 //
   451 // lockObject must be held.
   452 // Complicated dance due to lock ordering:
   453 // Must first release the classloader object lock to
   454 // allow initial definer to complete the class definition
   455 // and to avoid deadlock
   456 // Reclaim classloader lock object with same original recursion count
   457 // Must release SystemDictionary_lock after notify, since
   458 // class loader lock must be claimed before SystemDictionary_lock
   459 // to prevent deadlocks
   460 //
   461 // The notify allows applications that did an untimed wait() on
   462 // the classloader object lock to not hang.
   463 void SystemDictionary::double_lock_wait(Handle lockObject, TRAPS) {
   464   assert_lock_strong(SystemDictionary_lock);
   466   bool calledholdinglock
   467       = ObjectSynchronizer::current_thread_holds_lock((JavaThread*)THREAD, lockObject);
   468   assert(calledholdinglock,"must hold lock for notify");
   469   assert((!(lockObject() == _system_loader_lock_obj) && !is_parallelCapable(lockObject)), "unexpected double_lock_wait");
   470   ObjectSynchronizer::notifyall(lockObject, THREAD);
   471   intptr_t recursions =  ObjectSynchronizer::complete_exit(lockObject, THREAD);
   472   SystemDictionary_lock->wait();
   473   SystemDictionary_lock->unlock();
   474   ObjectSynchronizer::reenter(lockObject, recursions, THREAD);
   475   SystemDictionary_lock->lock();
   476 }
   478 // If the class in is in the placeholder table, class loading is in progress
   479 // For cases where the application changes threads to load classes, it
   480 // is critical to ClassCircularity detection that we try loading
   481 // the superclass on the same thread internally, so we do parallel
   482 // super class loading here.
   483 // This also is critical in cases where the original thread gets stalled
   484 // even in non-circularity situations.
   485 // Note: only one thread can define the class, but multiple can resolve
   486 // Note: must call resolve_super_or_fail even if null super -
   487 // to force placeholder entry creation for this class for circularity detection
   488 // Caller must check for pending exception
   489 // Returns non-null klassOop if other thread has completed load
   490 // and we are done,
   491 // If return null klassOop and no pending exception, the caller must load the class
   492 instanceKlassHandle SystemDictionary::handle_parallel_super_load(
   493     Symbol* name, Symbol* superclassname, Handle class_loader,
   494     Handle protection_domain, Handle lockObject, TRAPS) {
   496   instanceKlassHandle nh = instanceKlassHandle(); // null Handle
   497   unsigned int d_hash = dictionary()->compute_hash(name, class_loader);
   498   int d_index = dictionary()->hash_to_index(d_hash);
   499   unsigned int p_hash = placeholders()->compute_hash(name, class_loader);
   500   int p_index = placeholders()->hash_to_index(p_hash);
   502   // superk is not used, resolve_super called for circularity check only
   503   // This code is reached in two situations. One if this thread
   504   // is loading the same class twice (e.g. ClassCircularity, or
   505   // java.lang.instrument).
   506   // The second is if another thread started the resolve_super first
   507   // and has not yet finished.
   508   // In both cases the original caller will clean up the placeholder
   509   // entry on error.
   510   klassOop superk = SystemDictionary::resolve_super_or_fail(name,
   511                                                           superclassname,
   512                                                           class_loader,
   513                                                           protection_domain,
   514                                                           true,
   515                                                           CHECK_(nh));
   516   // We don't redefine the class, so we just need to clean up if there
   517   // was not an error (don't want to modify any system dictionary
   518   // data structures).
   519   {
   520     MutexLocker mu(SystemDictionary_lock, THREAD);
   521     placeholders()->find_and_remove(p_index, p_hash, name, class_loader, THREAD);
   522     SystemDictionary_lock->notify_all();
   523   }
   525   // parallelCapable class loaders do NOT wait for parallel superclass loads to complete
   526   // Serial class loaders and bootstrap classloader do wait for superclass loads
   527  if (!class_loader.is_null() && is_parallelCapable(class_loader)) {
   528     MutexLocker mu(SystemDictionary_lock, THREAD);
   529     // Check if classloading completed while we were loading superclass or waiting
   530     klassOop check = find_class(d_index, d_hash, name, class_loader);
   531     if (check != NULL) {
   532       // Klass is already loaded, so just return it
   533       return(instanceKlassHandle(THREAD, check));
   534     } else {
   535       return nh;
   536     }
   537   }
   539   // must loop to both handle other placeholder updates
   540   // and spurious notifications
   541   bool super_load_in_progress = true;
   542   PlaceholderEntry* placeholder;
   543   while (super_load_in_progress) {
   544     MutexLocker mu(SystemDictionary_lock, THREAD);
   545     // Check if classloading completed while we were loading superclass or waiting
   546     klassOop check = find_class(d_index, d_hash, name, class_loader);
   547     if (check != NULL) {
   548       // Klass is already loaded, so just return it
   549       return(instanceKlassHandle(THREAD, check));
   550     } else {
   551       placeholder = placeholders()->get_entry(p_index, p_hash, name, class_loader);
   552       if (placeholder && placeholder->super_load_in_progress() ){
   553         // Before UnsyncloadClass:
   554         // We only get here if the application has released the
   555         // classloader lock when another thread was in the middle of loading a
   556         // superclass/superinterface for this class, and now
   557         // this thread is also trying to load this class.
   558         // To minimize surprises, the first thread that started to
   559         // load a class should be the one to complete the loading
   560         // with the classfile it initially expected.
   561         // This logic has the current thread wait once it has done
   562         // all the superclass/superinterface loading it can, until
   563         // the original thread completes the class loading or fails
   564         // If it completes we will use the resulting instanceKlass
   565         // which we will find below in the systemDictionary.
   566         // We also get here for parallel bootstrap classloader
   567         if (class_loader.is_null()) {
   568           SystemDictionary_lock->wait();
   569         } else {
   570           double_lock_wait(lockObject, THREAD);
   571         }
   572       } else {
   573         // If not in SD and not in PH, other thread's load must have failed
   574         super_load_in_progress = false;
   575       }
   576     }
   577   }
   578   return (nh);
   579 }
   582 klassOop SystemDictionary::resolve_instance_class_or_null(Symbol* name, Handle class_loader, Handle protection_domain, TRAPS) {
   583   assert(name != NULL && !FieldType::is_array(name) &&
   584          !FieldType::is_obj(name), "invalid class name");
   586   // UseNewReflection
   587   // Fix for 4474172; see evaluation for more details
   588   class_loader = Handle(THREAD, java_lang_ClassLoader::non_reflection_class_loader(class_loader()));
   590   // Do lookup to see if class already exist and the protection domain
   591   // has the right access
   592   unsigned int d_hash = dictionary()->compute_hash(name, class_loader);
   593   int d_index = dictionary()->hash_to_index(d_hash);
   594   klassOop probe = dictionary()->find(d_index, d_hash, name, class_loader,
   595                                       protection_domain, THREAD);
   596   if (probe != NULL) return probe;
   599   // Non-bootstrap class loaders will call out to class loader and
   600   // define via jvm/jni_DefineClass which will acquire the
   601   // class loader object lock to protect against multiple threads
   602   // defining the class in parallel by accident.
   603   // This lock must be acquired here so the waiter will find
   604   // any successful result in the SystemDictionary and not attempt
   605   // the define
   606   // ParallelCapable Classloaders and the bootstrap classloader,
   607   // or all classloaders with UnsyncloadClass do not acquire lock here
   608   bool DoObjectLock = true;
   609   if (is_parallelCapable(class_loader)) {
   610     DoObjectLock = false;
   611   }
   613   unsigned int p_hash = placeholders()->compute_hash(name, class_loader);
   614   int p_index = placeholders()->hash_to_index(p_hash);
   616   // Class is not in SystemDictionary so we have to do loading.
   617   // Make sure we are synchronized on the class loader before we proceed
   618   Handle lockObject = compute_loader_lock_object(class_loader, THREAD);
   619   check_loader_lock_contention(lockObject, THREAD);
   620   ObjectLocker ol(lockObject, THREAD, DoObjectLock);
   622   // Check again (after locking) if class already exist in SystemDictionary
   623   bool class_has_been_loaded   = false;
   624   bool super_load_in_progress  = false;
   625   bool havesupername = false;
   626   instanceKlassHandle k;
   627   PlaceholderEntry* placeholder;
   628   Symbol* superclassname = NULL;
   630   {
   631     MutexLocker mu(SystemDictionary_lock, THREAD);
   632     klassOop check = find_class(d_index, d_hash, name, class_loader);
   633     if (check != NULL) {
   634       // Klass is already loaded, so just return it
   635       class_has_been_loaded = true;
   636       k = instanceKlassHandle(THREAD, check);
   637     } else {
   638       placeholder = placeholders()->get_entry(p_index, p_hash, name, class_loader);
   639       if (placeholder && placeholder->super_load_in_progress()) {
   640          super_load_in_progress = true;
   641          if (placeholder->havesupername() == true) {
   642            superclassname = placeholder->supername();
   643            havesupername = true;
   644          }
   645       }
   646     }
   647   }
   649   // If the class in is in the placeholder table, class loading is in progress
   650   if (super_load_in_progress && havesupername==true) {
   651     k = SystemDictionary::handle_parallel_super_load(name, superclassname,
   652         class_loader, protection_domain, lockObject, THREAD);
   653     if (HAS_PENDING_EXCEPTION) {
   654       return NULL;
   655     }
   656     if (!k.is_null()) {
   657       class_has_been_loaded = true;
   658     }
   659   }
   661   if (!class_has_been_loaded) {
   663     // add placeholder entry to record loading instance class
   664     // Five cases:
   665     // All cases need to prevent modifying bootclasssearchpath
   666     // in parallel with a classload of same classname
   667     // Redefineclasses uses existence of the placeholder for the duration
   668     // of the class load to prevent concurrent redefinition of not completely
   669     // defined classes.
   670     // case 1. traditional classloaders that rely on the classloader object lock
   671     //   - no other need for LOAD_INSTANCE
   672     // case 2. traditional classloaders that break the classloader object lock
   673     //    as a deadlock workaround. Detection of this case requires that
   674     //    this check is done while holding the classloader object lock,
   675     //    and that lock is still held when calling classloader's loadClass.
   676     //    For these classloaders, we ensure that the first requestor
   677     //    completes the load and other requestors wait for completion.
   678     // case 3. UnsyncloadClass - don't use objectLocker
   679     //    With this flag, we allow parallel classloading of a
   680     //    class/classloader pair
   681     // case4. Bootstrap classloader - don't own objectLocker
   682     //    This classloader supports parallelism at the classloader level,
   683     //    but only allows a single load of a class/classloader pair.
   684     //    No performance benefit and no deadlock issues.
   685     // case 5. parallelCapable user level classloaders - without objectLocker
   686     //    Allow parallel classloading of a class/classloader pair
   687     bool throw_circularity_error = false;
   688     {
   689       MutexLocker mu(SystemDictionary_lock, THREAD);
   690       if (class_loader.is_null() || !is_parallelCapable(class_loader)) {
   691         PlaceholderEntry* oldprobe = placeholders()->get_entry(p_index, p_hash, name, class_loader);
   692         if (oldprobe) {
   693           // only need check_seen_thread once, not on each loop
   694           // 6341374 java/lang/Instrument with -Xcomp
   695           if (oldprobe->check_seen_thread(THREAD, PlaceholderTable::LOAD_INSTANCE)) {
   696             throw_circularity_error = true;
   697           } else {
   698             // case 1: traditional: should never see load_in_progress.
   699             while (!class_has_been_loaded && oldprobe && oldprobe->instance_load_in_progress()) {
   701               // case 4: bootstrap classloader: prevent futile classloading,
   702               // wait on first requestor
   703               if (class_loader.is_null()) {
   704                 SystemDictionary_lock->wait();
   705               } else {
   706               // case 2: traditional with broken classloader lock. wait on first
   707               // requestor.
   708                 double_lock_wait(lockObject, THREAD);
   709               }
   710               // Check if classloading completed while we were waiting
   711               klassOop check = find_class(d_index, d_hash, name, class_loader);
   712               if (check != NULL) {
   713                 // Klass is already loaded, so just return it
   714                 k = instanceKlassHandle(THREAD, check);
   715                 class_has_been_loaded = true;
   716               }
   717               // check if other thread failed to load and cleaned up
   718               oldprobe = placeholders()->get_entry(p_index, p_hash, name, class_loader);
   719             }
   720           }
   721         }
   722       }
   723       // All cases: add LOAD_INSTANCE
   724       // case 3: UnsyncloadClass || case 5: parallelCapable: allow competing threads to try
   725       // LOAD_INSTANCE in parallel
   726       // add placeholder entry even if error - callers will remove on error
   727       if (!throw_circularity_error && !class_has_been_loaded) {
   728         PlaceholderEntry* newprobe = placeholders()->find_and_add(p_index, p_hash, name, class_loader, PlaceholderTable::LOAD_INSTANCE, NULL, THREAD);
   729         // For class loaders that do not acquire the classloader object lock,
   730         // if they did not catch another thread holding LOAD_INSTANCE,
   731         // need a check analogous to the acquire ObjectLocker/find_class
   732         // i.e. now that we hold the LOAD_INSTANCE token on loading this class/CL
   733         // one final check if the load has already completed
   734         // class loaders holding the ObjectLock shouldn't find the class here
   735         klassOop check = find_class(d_index, d_hash, name, class_loader);
   736         if (check != NULL) {
   737         // Klass is already loaded, so just return it
   738           k = instanceKlassHandle(THREAD, check);
   739           class_has_been_loaded = true;
   740           newprobe->remove_seen_thread(THREAD, PlaceholderTable::LOAD_INSTANCE);
   741           placeholders()->find_and_remove(p_index, p_hash, name, class_loader, THREAD);
   742           SystemDictionary_lock->notify_all();
   743         }
   744       }
   745     }
   746     // must throw error outside of owning lock
   747     if (throw_circularity_error) {
   748       ResourceMark rm(THREAD);
   749       THROW_MSG_0(vmSymbols::java_lang_ClassCircularityError(), name->as_C_string());
   750     }
   752     if (!class_has_been_loaded) {
   754       // Do actual loading
   755       k = load_instance_class(name, class_loader, THREAD);
   757       // For UnsyncloadClass only
   758       // If they got a linkageError, check if a parallel class load succeeded.
   759       // If it did, then for bytecode resolution the specification requires
   760       // that we return the same result we did for the other thread, i.e. the
   761       // successfully loaded instanceKlass
   762       // Should not get here for classloaders that support parallelism
   763       // with the new cleaner mechanism, even with AllowParallelDefineClass
   764       // Bootstrap goes through here to allow for an extra guarantee check
   765       if (UnsyncloadClass || (class_loader.is_null())) {
   766         if (k.is_null() && HAS_PENDING_EXCEPTION
   767           && PENDING_EXCEPTION->is_a(SystemDictionary::LinkageError_klass())) {
   768           MutexLocker mu(SystemDictionary_lock, THREAD);
   769           klassOop check = find_class(d_index, d_hash, name, class_loader);
   770           if (check != NULL) {
   771             // Klass is already loaded, so just use it
   772             k = instanceKlassHandle(THREAD, check);
   773             CLEAR_PENDING_EXCEPTION;
   774             guarantee((!class_loader.is_null()), "dup definition for bootstrap loader?");
   775           }
   776         }
   777       }
   779       // clean up placeholder entries for success or error
   780       // This cleans up LOAD_INSTANCE entries
   781       // It also cleans up LOAD_SUPER entries on errors from
   782       // calling load_instance_class
   783       {
   784         MutexLocker mu(SystemDictionary_lock, THREAD);
   785         PlaceholderEntry* probe = placeholders()->get_entry(p_index, p_hash, name, class_loader);
   786         if (probe != NULL) {
   787           probe->remove_seen_thread(THREAD, PlaceholderTable::LOAD_INSTANCE);
   788           placeholders()->find_and_remove(p_index, p_hash, name, class_loader, THREAD);
   789           SystemDictionary_lock->notify_all();
   790         }
   791       }
   793       // If everything was OK (no exceptions, no null return value), and
   794       // class_loader is NOT the defining loader, do a little more bookkeeping.
   795       if (!HAS_PENDING_EXCEPTION && !k.is_null() &&
   796         k->class_loader() != class_loader()) {
   798         check_constraints(d_index, d_hash, k, class_loader, false, THREAD);
   800         // Need to check for a PENDING_EXCEPTION again; check_constraints
   801         // can throw and doesn't use the CHECK macro.
   802         if (!HAS_PENDING_EXCEPTION) {
   803           { // Grabbing the Compile_lock prevents systemDictionary updates
   804             // during compilations.
   805             MutexLocker mu(Compile_lock, THREAD);
   806             update_dictionary(d_index, d_hash, p_index, p_hash,
   807                             k, class_loader, THREAD);
   808           }
   809           if (JvmtiExport::should_post_class_load()) {
   810             Thread *thread = THREAD;
   811             assert(thread->is_Java_thread(), "thread->is_Java_thread()");
   812             JvmtiExport::post_class_load((JavaThread *) thread, k());
   813           }
   814         }
   815       }
   816       if (HAS_PENDING_EXCEPTION || k.is_null()) {
   817         // On error, clean up placeholders
   818         {
   819           MutexLocker mu(SystemDictionary_lock, THREAD);
   820           placeholders()->find_and_remove(p_index, p_hash, name, class_loader, THREAD);
   821           SystemDictionary_lock->notify_all();
   822         }
   823         return NULL;
   824       }
   825     }
   826   }
   828 #ifdef ASSERT
   829   {
   830     Handle loader (THREAD, k->class_loader());
   831     MutexLocker mu(SystemDictionary_lock, THREAD);
   832     oop kk = find_class(name, loader);
   833     assert(kk == k(), "should be present in dictionary");
   834   }
   835 #endif
   837   // return if the protection domain in NULL
   838   if (protection_domain() == NULL) return k();
   840   // Check the protection domain has the right access
   841   {
   842     MutexLocker mu(SystemDictionary_lock, THREAD);
   843     // Note that we have an entry, and entries can be deleted only during GC,
   844     // so we cannot allow GC to occur while we're holding this entry.
   845     // We're using a No_Safepoint_Verifier to catch any place where we
   846     // might potentially do a GC at all.
   847     // SystemDictionary::do_unloading() asserts that classes are only
   848     // unloaded at a safepoint.
   849     No_Safepoint_Verifier nosafepoint;
   850     if (dictionary()->is_valid_protection_domain(d_index, d_hash, name,
   851                                                  class_loader,
   852                                                  protection_domain)) {
   853       return k();
   854     }
   855   }
   857   // Verify protection domain. If it fails an exception is thrown
   858   validate_protection_domain(k, class_loader, protection_domain, CHECK_(klassOop(NULL)));
   860   return k();
   861 }
   864 // This routine does not lock the system dictionary.
   865 //
   866 // Since readers don't hold a lock, we must make sure that system
   867 // dictionary entries are only removed at a safepoint (when only one
   868 // thread is running), and are added to in a safe way (all links must
   869 // be updated in an MT-safe manner).
   870 //
   871 // Callers should be aware that an entry could be added just after
   872 // _dictionary->bucket(index) is read here, so the caller will not see
   873 // the new entry.
   875 klassOop SystemDictionary::find(Symbol* class_name,
   876                                 Handle class_loader,
   877                                 Handle protection_domain,
   878                                 TRAPS) {
   880   // UseNewReflection
   881   // The result of this call should be consistent with the result
   882   // of the call to resolve_instance_class_or_null().
   883   // See evaluation 6790209 and 4474172 for more details.
   884   class_loader = Handle(THREAD, java_lang_ClassLoader::non_reflection_class_loader(class_loader()));
   886   unsigned int d_hash = dictionary()->compute_hash(class_name, class_loader);
   887   int d_index = dictionary()->hash_to_index(d_hash);
   889   {
   890     // Note that we have an entry, and entries can be deleted only during GC,
   891     // so we cannot allow GC to occur while we're holding this entry.
   892     // We're using a No_Safepoint_Verifier to catch any place where we
   893     // might potentially do a GC at all.
   894     // SystemDictionary::do_unloading() asserts that classes are only
   895     // unloaded at a safepoint.
   896     No_Safepoint_Verifier nosafepoint;
   897     return dictionary()->find(d_index, d_hash, class_name, class_loader,
   898                               protection_domain, THREAD);
   899   }
   900 }
   903 // Look for a loaded instance or array klass by name.  Do not do any loading.
   904 // return NULL in case of error.
   905 klassOop SystemDictionary::find_instance_or_array_klass(Symbol* class_name,
   906                                                         Handle class_loader,
   907                                                         Handle protection_domain,
   908                                                         TRAPS) {
   909   klassOop k = NULL;
   910   assert(class_name != NULL, "class name must be non NULL");
   912   // Try to get one of the well-known klasses.
   913   if (LinkWellKnownClasses) {
   914     k = find_well_known_klass(class_name);
   915     if (k != NULL) {
   916       return k;
   917     }
   918   }
   920   if (FieldType::is_array(class_name)) {
   921     // The name refers to an array.  Parse the name.
   922     // dimension and object_key in FieldArrayInfo are assigned as a
   923     // side-effect of this call
   924     FieldArrayInfo fd;
   925     BasicType t = FieldType::get_array_info(class_name, fd, CHECK_(NULL));
   926     if (t != T_OBJECT) {
   927       k = Universe::typeArrayKlassObj(t);
   928     } else {
   929       k = SystemDictionary::find(fd.object_key(), class_loader, protection_domain, THREAD);
   930     }
   931     if (k != NULL) {
   932       k = Klass::cast(k)->array_klass_or_null(fd.dimension());
   933     }
   934   } else {
   935     k = find(class_name, class_loader, protection_domain, THREAD);
   936   }
   937   return k;
   938 }
   940 // Quick range check for names of well-known classes:
   941 static Symbol* wk_klass_name_limits[2] = {NULL, NULL};
   943 #ifndef PRODUCT
   944 static int find_wkk_calls, find_wkk_probes, find_wkk_wins;
   945 // counts for "hello world": 3983, 1616, 1075
   946 //  => 60% hit after limit guard, 25% total win rate
   947 #endif
   949 klassOop SystemDictionary::find_well_known_klass(Symbol* class_name) {
   950   // A bounds-check on class_name will quickly get a negative result.
   951   NOT_PRODUCT(find_wkk_calls++);
   952   if (class_name >= wk_klass_name_limits[0] &&
   953       class_name <= wk_klass_name_limits[1]) {
   954     NOT_PRODUCT(find_wkk_probes++);
   955     vmSymbols::SID sid = vmSymbols::find_sid(class_name);
   956     if (sid != vmSymbols::NO_SID) {
   957       klassOop k = NULL;
   958       switch (sid) {
   959         #define WK_KLASS_CASE(name, symbol, ignore_option) \
   960         case vmSymbols::VM_SYMBOL_ENUM_NAME(symbol): \
   961           k = WK_KLASS(name); break;
   962         WK_KLASSES_DO(WK_KLASS_CASE)
   963         #undef WK_KLASS_CASE
   964       }
   965       NOT_PRODUCT(if (k != NULL)  find_wkk_wins++);
   966       return k;
   967     }
   968   }
   969   return NULL;
   970 }
   972 // Note: this method is much like resolve_from_stream, but
   973 // updates no supplemental data structures.
   974 // TODO consolidate the two methods with a helper routine?
   975 klassOop SystemDictionary::parse_stream(Symbol* class_name,
   976                                         Handle class_loader,
   977                                         Handle protection_domain,
   978                                         ClassFileStream* st,
   979                                         KlassHandle host_klass,
   980                                         GrowableArray<Handle>* cp_patches,
   981                                         TRAPS) {
   982   TempNewSymbol parsed_name = NULL;
   984   // Parse the stream. Note that we do this even though this klass might
   985   // already be present in the SystemDictionary, otherwise we would not
   986   // throw potential ClassFormatErrors.
   987   //
   988   // Note: "name" is updated.
   989   // Further note:  a placeholder will be added for this class when
   990   //   super classes are loaded (resolve_super_or_fail). We expect this
   991   //   to be called for all classes but java.lang.Object; and we preload
   992   //   java.lang.Object through resolve_or_fail, not this path.
   994   instanceKlassHandle k = ClassFileParser(st).parseClassFile(class_name,
   995                                                              class_loader,
   996                                                              protection_domain,
   997                                                              host_klass,
   998                                                              cp_patches,
   999                                                              parsed_name,
  1000                                                              true,
  1001                                                              THREAD);
  1003   // We don't redefine the class, so we just need to clean up whether there
  1004   // was an error or not (don't want to modify any system dictionary
  1005   // data structures).
  1006   // Parsed name could be null if we threw an error before we got far
  1007   // enough along to parse it -- in that case, there is nothing to clean up.
  1008   if (parsed_name != NULL) {
  1009     unsigned int p_hash = placeholders()->compute_hash(parsed_name,
  1010                                                        class_loader);
  1011     int p_index = placeholders()->hash_to_index(p_hash);
  1013     MutexLocker mu(SystemDictionary_lock, THREAD);
  1014     placeholders()->find_and_remove(p_index, p_hash, parsed_name, class_loader, THREAD);
  1015     SystemDictionary_lock->notify_all();
  1019   if (host_klass.not_null() && k.not_null()) {
  1020     assert(AnonymousClasses, "");
  1021     // If it's anonymous, initialize it now, since nobody else will.
  1022     k->set_host_klass(host_klass());
  1025       MutexLocker mu_r(Compile_lock, THREAD);
  1027       // Add to class hierarchy, initialize vtables, and do possible
  1028       // deoptimizations.
  1029       add_to_hierarchy(k, CHECK_NULL); // No exception, but can block
  1031       // But, do not add to system dictionary.
  1034     k->eager_initialize(THREAD);
  1036     // notify jvmti
  1037     if (JvmtiExport::should_post_class_load()) {
  1038         assert(THREAD->is_Java_thread(), "thread->is_Java_thread()");
  1039         JvmtiExport::post_class_load((JavaThread *) THREAD, k());
  1043   return k();
  1046 // Add a klass to the system from a stream (called by jni_DefineClass and
  1047 // JVM_DefineClass).
  1048 // Note: class_name can be NULL. In that case we do not know the name of
  1049 // the class until we have parsed the stream.
  1051 klassOop SystemDictionary::resolve_from_stream(Symbol* class_name,
  1052                                                Handle class_loader,
  1053                                                Handle protection_domain,
  1054                                                ClassFileStream* st,
  1055                                                bool verify,
  1056                                                TRAPS) {
  1058   // Classloaders that support parallelism, e.g. bootstrap classloader,
  1059   // or all classloaders with UnsyncloadClass do not acquire lock here
  1060   bool DoObjectLock = true;
  1061   if (is_parallelCapable(class_loader)) {
  1062     DoObjectLock = false;
  1065   // Make sure we are synchronized on the class loader before we proceed
  1066   Handle lockObject = compute_loader_lock_object(class_loader, THREAD);
  1067   check_loader_lock_contention(lockObject, THREAD);
  1068   ObjectLocker ol(lockObject, THREAD, DoObjectLock);
  1070   TempNewSymbol parsed_name = NULL;
  1072   // Parse the stream. Note that we do this even though this klass might
  1073   // already be present in the SystemDictionary, otherwise we would not
  1074   // throw potential ClassFormatErrors.
  1075   //
  1076   // Note: "name" is updated.
  1077   // Further note:  a placeholder will be added for this class when
  1078   //   super classes are loaded (resolve_super_or_fail). We expect this
  1079   //   to be called for all classes but java.lang.Object; and we preload
  1080   //   java.lang.Object through resolve_or_fail, not this path.
  1082   instanceKlassHandle k = ClassFileParser(st).parseClassFile(class_name,
  1083                                                              class_loader,
  1084                                                              protection_domain,
  1085                                                              parsed_name,
  1086                                                              verify,
  1087                                                              THREAD);
  1089   const char* pkg = "java/";
  1090   if (!HAS_PENDING_EXCEPTION &&
  1091       !class_loader.is_null() &&
  1092       parsed_name != NULL &&
  1093       !strncmp((const char*)parsed_name->bytes(), pkg, strlen(pkg))) {
  1094     // It is illegal to define classes in the "java." package from
  1095     // JVM_DefineClass or jni_DefineClass unless you're the bootclassloader
  1096     ResourceMark rm(THREAD);
  1097     char* name = parsed_name->as_C_string();
  1098     char* index = strrchr(name, '/');
  1099     *index = '\0'; // chop to just the package name
  1100     while ((index = strchr(name, '/')) != NULL) {
  1101       *index = '.'; // replace '/' with '.' in package name
  1103     const char* fmt = "Prohibited package name: %s";
  1104     size_t len = strlen(fmt) + strlen(name);
  1105     char* message = NEW_RESOURCE_ARRAY(char, len);
  1106     jio_snprintf(message, len, fmt, name);
  1107     Exceptions::_throw_msg(THREAD_AND_LOCATION,
  1108       vmSymbols::java_lang_SecurityException(), message);
  1111   if (!HAS_PENDING_EXCEPTION) {
  1112     assert(parsed_name != NULL, "Sanity");
  1113     assert(class_name == NULL || class_name == parsed_name, "name mismatch");
  1114     // Verification prevents us from creating names with dots in them, this
  1115     // asserts that that's the case.
  1116     assert(is_internal_format(parsed_name),
  1117            "external class name format used internally");
  1119     // Add class just loaded
  1120     // If a class loader supports parallel classloading handle parallel define requests
  1121     // find_or_define_instance_class may return a different instanceKlass
  1122     if (is_parallelCapable(class_loader)) {
  1123       k = find_or_define_instance_class(class_name, class_loader, k, THREAD);
  1124     } else {
  1125       define_instance_class(k, THREAD);
  1129   // If parsing the class file or define_instance_class failed, we
  1130   // need to remove the placeholder added on our behalf. But we
  1131   // must make sure parsed_name is valid first (it won't be if we had
  1132   // a format error before the class was parsed far enough to
  1133   // find the name).
  1134   if (HAS_PENDING_EXCEPTION && parsed_name != NULL) {
  1135     unsigned int p_hash = placeholders()->compute_hash(parsed_name,
  1136                                                        class_loader);
  1137     int p_index = placeholders()->hash_to_index(p_hash);
  1139     MutexLocker mu(SystemDictionary_lock, THREAD);
  1140     placeholders()->find_and_remove(p_index, p_hash, parsed_name, class_loader, THREAD);
  1141     SystemDictionary_lock->notify_all();
  1143     return NULL;
  1146   // Make sure that we didn't leave a place holder in the
  1147   // SystemDictionary; this is only done on success
  1148   debug_only( {
  1149     if (!HAS_PENDING_EXCEPTION) {
  1150       assert(parsed_name != NULL, "parsed_name is still null?");
  1151       Symbol*  h_name    = k->name();
  1152       Handle h_loader (THREAD, k->class_loader());
  1154       MutexLocker mu(SystemDictionary_lock, THREAD);
  1156       klassOop check = find_class(parsed_name, class_loader);
  1157       assert(check == k(), "should be present in the dictionary");
  1159       klassOop check2 = find_class(h_name, h_loader);
  1160       assert(check == check2, "name inconsistancy in SystemDictionary");
  1162   } );
  1164   return k();
  1168 void SystemDictionary::set_shared_dictionary(HashtableBucket* t, int length,
  1169                                              int number_of_entries) {
  1170   assert(length == _nof_buckets * sizeof(HashtableBucket),
  1171          "bad shared dictionary size.");
  1172   _shared_dictionary = new Dictionary(_nof_buckets, t, number_of_entries);
  1176 // If there is a shared dictionary, then find the entry for the
  1177 // given shared system class, if any.
  1179 klassOop SystemDictionary::find_shared_class(Symbol* class_name) {
  1180   if (shared_dictionary() != NULL) {
  1181     unsigned int d_hash = dictionary()->compute_hash(class_name, Handle());
  1182     int d_index = dictionary()->hash_to_index(d_hash);
  1183     return shared_dictionary()->find_shared_class(d_index, d_hash, class_name);
  1184   } else {
  1185     return NULL;
  1190 // Load a class from the shared spaces (found through the shared system
  1191 // dictionary).  Force the superclass and all interfaces to be loaded.
  1192 // Update the class definition to include sibling classes and no
  1193 // subclasses (yet).  [Classes in the shared space are not part of the
  1194 // object hierarchy until loaded.]
  1196 instanceKlassHandle SystemDictionary::load_shared_class(
  1197                  Symbol* class_name, Handle class_loader, TRAPS) {
  1198   instanceKlassHandle ik (THREAD, find_shared_class(class_name));
  1199   return load_shared_class(ik, class_loader, THREAD);
  1202 // Note well!  Changes to this method may affect oop access order
  1203 // in the shared archive.  Please take care to not make changes that
  1204 // adversely affect cold start time by changing the oop access order
  1205 // that is specified in dump.cpp MarkAndMoveOrderedReadOnly and
  1206 // MarkAndMoveOrderedReadWrite closures.
  1207 instanceKlassHandle SystemDictionary::load_shared_class(
  1208                  instanceKlassHandle ik, Handle class_loader, TRAPS) {
  1209   assert(class_loader.is_null(), "non-null classloader for shared class?");
  1210   if (ik.not_null()) {
  1211     instanceKlassHandle nh = instanceKlassHandle(); // null Handle
  1212     Symbol*  class_name = ik->name();
  1214     // Found the class, now load the superclass and interfaces.  If they
  1215     // are shared, add them to the main system dictionary and reset
  1216     // their hierarchy references (supers, subs, and interfaces).
  1218     if (ik->super() != NULL) {
  1219       Symbol*  cn = ik->super()->klass_part()->name();
  1220       resolve_super_or_fail(class_name, cn,
  1221                             class_loader, Handle(), true, CHECK_(nh));
  1224     objArrayHandle interfaces (THREAD, ik->local_interfaces());
  1225     int num_interfaces = interfaces->length();
  1226     for (int index = 0; index < num_interfaces; index++) {
  1227       klassOop k = klassOop(interfaces->obj_at(index));
  1229       // Note: can not use instanceKlass::cast here because
  1230       // interfaces' instanceKlass's C++ vtbls haven't been
  1231       // reinitialized yet (they will be once the interface classes
  1232       // are loaded)
  1233       Symbol*  name  = k->klass_part()->name();
  1234       resolve_super_or_fail(class_name, name, class_loader, Handle(), false, CHECK_(nh));
  1237     // Adjust methods to recover missing data.  They need addresses for
  1238     // interpreter entry points and their default native method address
  1239     // must be reset.
  1241     // Updating methods must be done under a lock so multiple
  1242     // threads don't update these in parallel
  1243     // Shared classes are all currently loaded by the bootstrap
  1244     // classloader, so this will never cause a deadlock on
  1245     // a custom class loader lock.
  1248       Handle lockObject = compute_loader_lock_object(class_loader, THREAD);
  1249       check_loader_lock_contention(lockObject, THREAD);
  1250       ObjectLocker ol(lockObject, THREAD, true);
  1252       objArrayHandle methods (THREAD, ik->methods());
  1253       int num_methods = methods->length();
  1254       for (int index2 = 0; index2 < num_methods; ++index2) {
  1255         methodHandle m(THREAD, methodOop(methods->obj_at(index2)));
  1256         m()->link_method(m, CHECK_(nh));
  1260     if (TraceClassLoading) {
  1261       ResourceMark rm;
  1262       tty->print("[Loaded %s", ik->external_name());
  1263       tty->print(" from shared objects file");
  1264       tty->print_cr("]");
  1266     // notify a class loaded from shared object
  1267     ClassLoadingService::notify_class_loaded(instanceKlass::cast(ik()),
  1268                                              true /* shared class */);
  1270   return ik;
  1273 #ifdef KERNEL
  1274 // Some classes on the bootstrap class path haven't been installed on the
  1275 // system yet.  Call the DownloadManager method to make them appear in the
  1276 // bootstrap class path and try again to load the named class.
  1277 // Note that with delegation class loaders all classes in another loader will
  1278 // first try to call this so it'd better be fast!!
  1279 static instanceKlassHandle download_and_retry_class_load(
  1280                                                     Symbol* class_name,
  1281                                                     TRAPS) {
  1283   klassOop dlm = SystemDictionary::sun_jkernel_DownloadManager_klass();
  1284   instanceKlassHandle nk;
  1286   // If download manager class isn't loaded just return.
  1287   if (dlm == NULL) return nk;
  1289   { HandleMark hm(THREAD);
  1290     ResourceMark rm(THREAD);
  1291     Handle s = java_lang_String::create_from_symbol(class_name, CHECK_(nk));
  1292     Handle class_string = java_lang_String::externalize_classname(s, CHECK_(nk));
  1294     // return value
  1295     JavaValue result(T_OBJECT);
  1297     // Call the DownloadManager.  We assume that it has a lock because
  1298     // multiple classes could be not found and downloaded at the same time.
  1299     // class sun.misc.DownloadManager;
  1300     // public static String getBootClassPathEntryForClass(String className);
  1301     JavaCalls::call_static(&result,
  1302                        KlassHandle(THREAD, dlm),
  1303                        vmSymbols::getBootClassPathEntryForClass_name(),
  1304                        vmSymbols::string_string_signature(),
  1305                        class_string,
  1306                        CHECK_(nk));
  1308     // Get result.string and add to bootclasspath
  1309     assert(result.get_type() == T_OBJECT, "just checking");
  1310     oop obj = (oop) result.get_jobject();
  1311     if (obj == NULL) { return nk; }
  1313     Handle h_obj(THREAD, obj);
  1314     char* new_class_name = java_lang_String::as_platform_dependent_str(h_obj,
  1315                                                                   CHECK_(nk));
  1317     // lock the loader
  1318     // we use this lock because JVMTI does.
  1319     Handle loader_lock(THREAD, SystemDictionary::system_loader_lock());
  1321     ObjectLocker ol(loader_lock, THREAD);
  1322     // add the file to the bootclasspath
  1323     ClassLoader::update_class_path_entry_list(new_class_name, true);
  1324   } // end HandleMark
  1326   if (TraceClassLoading) {
  1327     ClassLoader::print_bootclasspath();
  1329   return ClassLoader::load_classfile(class_name, CHECK_(nk));
  1331 #endif // KERNEL
  1334 instanceKlassHandle SystemDictionary::load_instance_class(Symbol* class_name, Handle class_loader, TRAPS) {
  1335   instanceKlassHandle nh = instanceKlassHandle(); // null Handle
  1336   if (class_loader.is_null()) {
  1338     // Search the shared system dictionary for classes preloaded into the
  1339     // shared spaces.
  1340     instanceKlassHandle k;
  1342       PerfTraceTime vmtimer(ClassLoader::perf_shared_classload_time());
  1343       k = load_shared_class(class_name, class_loader, THREAD);
  1346     if (k.is_null()) {
  1347       // Use VM class loader
  1348       PerfTraceTime vmtimer(ClassLoader::perf_sys_classload_time());
  1349       k = ClassLoader::load_classfile(class_name, CHECK_(nh));
  1352 #ifdef KERNEL
  1353     // If the VM class loader has failed to load the class, call the
  1354     // DownloadManager class to make it magically appear on the classpath
  1355     // and try again.  This is only configured with the Kernel VM.
  1356     if (k.is_null()) {
  1357       k = download_and_retry_class_load(class_name, CHECK_(nh));
  1359 #endif // KERNEL
  1361     // find_or_define_instance_class may return a different instanceKlass
  1362     if (!k.is_null()) {
  1363       k = find_or_define_instance_class(class_name, class_loader, k, CHECK_(nh));
  1365     return k;
  1366   } else {
  1367     // Use user specified class loader to load class. Call loadClass operation on class_loader.
  1368     ResourceMark rm(THREAD);
  1370     assert(THREAD->is_Java_thread(), "must be a JavaThread");
  1371     JavaThread* jt = (JavaThread*) THREAD;
  1373     PerfClassTraceTime vmtimer(ClassLoader::perf_app_classload_time(),
  1374                                ClassLoader::perf_app_classload_selftime(),
  1375                                ClassLoader::perf_app_classload_count(),
  1376                                jt->get_thread_stat()->perf_recursion_counts_addr(),
  1377                                jt->get_thread_stat()->perf_timers_addr(),
  1378                                PerfClassTraceTime::CLASS_LOAD);
  1380     Handle s = java_lang_String::create_from_symbol(class_name, CHECK_(nh));
  1381     // Translate to external class name format, i.e., convert '/' chars to '.'
  1382     Handle string = java_lang_String::externalize_classname(s, CHECK_(nh));
  1384     JavaValue result(T_OBJECT);
  1386     KlassHandle spec_klass (THREAD, SystemDictionary::ClassLoader_klass());
  1388     // Call public unsynchronized loadClass(String) directly for all class loaders
  1389     // for parallelCapable class loaders. JDK >=7, loadClass(String, boolean) will
  1390     // acquire a class-name based lock rather than the class loader object lock.
  1391     // JDK < 7 already acquire the class loader lock in loadClass(String, boolean),
  1392     // so the call to loadClassInternal() was not required.
  1393     //
  1394     // UnsyncloadClass flag means both call loadClass(String) and do
  1395     // not acquire the class loader lock even for class loaders that are
  1396     // not parallelCapable. This was a risky transitional
  1397     // flag for diagnostic purposes only. It is risky to call
  1398     // custom class loaders without synchronization.
  1399     // WARNING If a custom class loader does NOT synchronizer findClass, or callers of
  1400     // findClass, the UnsyncloadClass flag risks unexpected timing bugs in the field.
  1401     // Do NOT assume this will be supported in future releases.
  1402     //
  1403     // Added MustCallLoadClassInternal in case we discover in the field
  1404     // a customer that counts on this call
  1405     if (MustCallLoadClassInternal && has_loadClassInternal()) {
  1406       JavaCalls::call_special(&result,
  1407                               class_loader,
  1408                               spec_klass,
  1409                               vmSymbols::loadClassInternal_name(),
  1410                               vmSymbols::string_class_signature(),
  1411                               string,
  1412                               CHECK_(nh));
  1413     } else {
  1414       JavaCalls::call_virtual(&result,
  1415                               class_loader,
  1416                               spec_klass,
  1417                               vmSymbols::loadClass_name(),
  1418                               vmSymbols::string_class_signature(),
  1419                               string,
  1420                               CHECK_(nh));
  1423     assert(result.get_type() == T_OBJECT, "just checking");
  1424     oop obj = (oop) result.get_jobject();
  1426     // Primitive classes return null since forName() can not be
  1427     // used to obtain any of the Class objects representing primitives or void
  1428     if ((obj != NULL) && !(java_lang_Class::is_primitive(obj))) {
  1429       instanceKlassHandle k =
  1430                 instanceKlassHandle(THREAD, java_lang_Class::as_klassOop(obj));
  1431       // For user defined Java class loaders, check that the name returned is
  1432       // the same as that requested.  This check is done for the bootstrap
  1433       // loader when parsing the class file.
  1434       if (class_name == k->name()) {
  1435         return k;
  1438     // Class is not found or has the wrong name, return NULL
  1439     return nh;
  1443 void SystemDictionary::define_instance_class(instanceKlassHandle k, TRAPS) {
  1445   Handle class_loader_h(THREAD, k->class_loader());
  1447  // for bootstrap and other parallel classloaders don't acquire lock,
  1448  // use placeholder token
  1449  // If a parallelCapable class loader calls define_instance_class instead of
  1450  // find_or_define_instance_class to get here, we have a timing
  1451  // hole with systemDictionary updates and check_constraints
  1452  if (!class_loader_h.is_null() && !is_parallelCapable(class_loader_h)) {
  1453     assert(ObjectSynchronizer::current_thread_holds_lock((JavaThread*)THREAD,
  1454          compute_loader_lock_object(class_loader_h, THREAD)),
  1455          "define called without lock");
  1458   // Check class-loading constraints. Throw exception if violation is detected.
  1459   // Grabs and releases SystemDictionary_lock
  1460   // The check_constraints/find_class call and update_dictionary sequence
  1461   // must be "atomic" for a specific class/classloader pair so we never
  1462   // define two different instanceKlasses for that class/classloader pair.
  1463   // Existing classloaders will call define_instance_class with the
  1464   // classloader lock held
  1465   // Parallel classloaders will call find_or_define_instance_class
  1466   // which will require a token to perform the define class
  1467   Symbol*  name_h = k->name();
  1468   unsigned int d_hash = dictionary()->compute_hash(name_h, class_loader_h);
  1469   int d_index = dictionary()->hash_to_index(d_hash);
  1470   check_constraints(d_index, d_hash, k, class_loader_h, true, CHECK);
  1472   // Register class just loaded with class loader (placed in Vector)
  1473   // Note we do this before updating the dictionary, as this can
  1474   // fail with an OutOfMemoryError (if it does, we will *not* put this
  1475   // class in the dictionary and will not update the class hierarchy).
  1476   if (k->class_loader() != NULL) {
  1477     methodHandle m(THREAD, Universe::loader_addClass_method());
  1478     JavaValue result(T_VOID);
  1479     JavaCallArguments args(class_loader_h);
  1480     args.push_oop(Handle(THREAD, k->java_mirror()));
  1481     JavaCalls::call(&result, m, &args, CHECK);
  1484   // Add the new class. We need recompile lock during update of CHA.
  1486     unsigned int p_hash = placeholders()->compute_hash(name_h, class_loader_h);
  1487     int p_index = placeholders()->hash_to_index(p_hash);
  1489     MutexLocker mu_r(Compile_lock, THREAD);
  1491     // Add to class hierarchy, initialize vtables, and do possible
  1492     // deoptimizations.
  1493     add_to_hierarchy(k, CHECK); // No exception, but can block
  1495     // Add to systemDictionary - so other classes can see it.
  1496     // Grabs and releases SystemDictionary_lock
  1497     update_dictionary(d_index, d_hash, p_index, p_hash,
  1498                       k, class_loader_h, THREAD);
  1500   k->eager_initialize(THREAD);
  1502   // notify jvmti
  1503   if (JvmtiExport::should_post_class_load()) {
  1504       assert(THREAD->is_Java_thread(), "thread->is_Java_thread()");
  1505       JvmtiExport::post_class_load((JavaThread *) THREAD, k());
  1510 // Support parallel classloading
  1511 // All parallel class loaders, including bootstrap classloader
  1512 // lock a placeholder entry for this class/class_loader pair
  1513 // to allow parallel defines of different classes for this class loader
  1514 // With AllowParallelDefine flag==true, in case they do not synchronize around
  1515 // FindLoadedClass/DefineClass, calls, we check for parallel
  1516 // loading for them, wait if a defineClass is in progress
  1517 // and return the initial requestor's results
  1518 // This flag does not apply to the bootstrap classloader.
  1519 // With AllowParallelDefine flag==false, call through to define_instance_class
  1520 // which will throw LinkageError: duplicate class definition.
  1521 // False is the requested default.
  1522 // For better performance, the class loaders should synchronize
  1523 // findClass(), i.e. FindLoadedClass/DefineClassIfAbsent or they
  1524 // potentially waste time reading and parsing the bytestream.
  1525 // Note: VM callers should ensure consistency of k/class_name,class_loader
  1526 instanceKlassHandle SystemDictionary::find_or_define_instance_class(Symbol* class_name, Handle class_loader, instanceKlassHandle k, TRAPS) {
  1528   instanceKlassHandle nh = instanceKlassHandle(); // null Handle
  1529   Symbol*  name_h = k->name(); // passed in class_name may be null
  1531   unsigned int d_hash = dictionary()->compute_hash(name_h, class_loader);
  1532   int d_index = dictionary()->hash_to_index(d_hash);
  1534 // Hold SD lock around find_class and placeholder creation for DEFINE_CLASS
  1535   unsigned int p_hash = placeholders()->compute_hash(name_h, class_loader);
  1536   int p_index = placeholders()->hash_to_index(p_hash);
  1537   PlaceholderEntry* probe;
  1540     MutexLocker mu(SystemDictionary_lock, THREAD);
  1541     // First check if class already defined
  1542     if (UnsyncloadClass || (is_parallelDefine(class_loader))) {
  1543       klassOop check = find_class(d_index, d_hash, name_h, class_loader);
  1544       if (check != NULL) {
  1545         return(instanceKlassHandle(THREAD, check));
  1549     // Acquire define token for this class/classloader
  1550     probe = placeholders()->find_and_add(p_index, p_hash, name_h, class_loader, PlaceholderTable::DEFINE_CLASS, NULL, THREAD);
  1551     // Wait if another thread defining in parallel
  1552     // All threads wait - even those that will throw duplicate class: otherwise
  1553     // caller is surprised by LinkageError: duplicate, but findLoadedClass fails
  1554     // if other thread has not finished updating dictionary
  1555     while (probe->definer() != NULL) {
  1556       SystemDictionary_lock->wait();
  1558     // Only special cases allow parallel defines and can use other thread's results
  1559     // Other cases fall through, and may run into duplicate defines
  1560     // caught by finding an entry in the SystemDictionary
  1561     if ((UnsyncloadClass || is_parallelDefine(class_loader)) && (probe->instanceKlass() != NULL)) {
  1562         probe->remove_seen_thread(THREAD, PlaceholderTable::DEFINE_CLASS);
  1563         placeholders()->find_and_remove(p_index, p_hash, name_h, class_loader, THREAD);
  1564         SystemDictionary_lock->notify_all();
  1565 #ifdef ASSERT
  1566         klassOop check = find_class(d_index, d_hash, name_h, class_loader);
  1567         assert(check != NULL, "definer missed recording success");
  1568 #endif
  1569         return(instanceKlassHandle(THREAD, probe->instanceKlass()));
  1570     } else {
  1571       // This thread will define the class (even if earlier thread tried and had an error)
  1572       probe->set_definer(THREAD);
  1576   define_instance_class(k, THREAD);
  1578   Handle linkage_exception = Handle(); // null handle
  1580   // definer must notify any waiting threads
  1582     MutexLocker mu(SystemDictionary_lock, THREAD);
  1583     PlaceholderEntry* probe = placeholders()->get_entry(p_index, p_hash, name_h, class_loader);
  1584     assert(probe != NULL, "DEFINE_CLASS placeholder lost?");
  1585     if (probe != NULL) {
  1586       if (HAS_PENDING_EXCEPTION) {
  1587         linkage_exception = Handle(THREAD,PENDING_EXCEPTION);
  1588         CLEAR_PENDING_EXCEPTION;
  1589       } else {
  1590         probe->set_instanceKlass(k());
  1592       probe->set_definer(NULL);
  1593       probe->remove_seen_thread(THREAD, PlaceholderTable::DEFINE_CLASS);
  1594       placeholders()->find_and_remove(p_index, p_hash, name_h, class_loader, THREAD);
  1595       SystemDictionary_lock->notify_all();
  1599   // Can't throw exception while holding lock due to rank ordering
  1600   if (linkage_exception() != NULL) {
  1601     THROW_OOP_(linkage_exception(), nh); // throws exception and returns
  1604   return k;
  1606 Handle SystemDictionary::compute_loader_lock_object(Handle class_loader, TRAPS) {
  1607   // If class_loader is NULL we synchronize on _system_loader_lock_obj
  1608   if (class_loader.is_null()) {
  1609     return Handle(THREAD, _system_loader_lock_obj);
  1610   } else {
  1611     return class_loader;
  1615 // This method is added to check how often we have to wait to grab loader
  1616 // lock. The results are being recorded in the performance counters defined in
  1617 // ClassLoader::_sync_systemLoaderLockContentionRate and
  1618 // ClassLoader::_sync_nonSystemLoaderLockConteionRate.
  1619 void SystemDictionary::check_loader_lock_contention(Handle loader_lock, TRAPS) {
  1620   if (!UsePerfData) {
  1621     return;
  1624   assert(!loader_lock.is_null(), "NULL lock object");
  1626   if (ObjectSynchronizer::query_lock_ownership((JavaThread*)THREAD, loader_lock)
  1627       == ObjectSynchronizer::owner_other) {
  1628     // contention will likely happen, so increment the corresponding
  1629     // contention counter.
  1630     if (loader_lock() == _system_loader_lock_obj) {
  1631       ClassLoader::sync_systemLoaderLockContentionRate()->inc();
  1632     } else {
  1633       ClassLoader::sync_nonSystemLoaderLockContentionRate()->inc();
  1638 // ----------------------------------------------------------------------------
  1639 // Lookup
  1641 klassOop SystemDictionary::find_class(int index, unsigned int hash,
  1642                                       Symbol* class_name,
  1643                                       Handle class_loader) {
  1644   assert_locked_or_safepoint(SystemDictionary_lock);
  1645   assert (index == dictionary()->index_for(class_name, class_loader),
  1646           "incorrect index?");
  1648   klassOop k = dictionary()->find_class(index, hash, class_name, class_loader);
  1649   return k;
  1653 // Basic find on classes in the midst of being loaded
  1654 Symbol* SystemDictionary::find_placeholder(Symbol* class_name,
  1655                                            Handle class_loader) {
  1656   assert_locked_or_safepoint(SystemDictionary_lock);
  1657   unsigned int p_hash = placeholders()->compute_hash(class_name, class_loader);
  1658   int p_index = placeholders()->hash_to_index(p_hash);
  1659   return placeholders()->find_entry(p_index, p_hash, class_name, class_loader);
  1663 // Used for assertions and verification only
  1664 klassOop SystemDictionary::find_class(Symbol* class_name, Handle class_loader) {
  1665   #ifndef ASSERT
  1666   guarantee(VerifyBeforeGC   ||
  1667             VerifyDuringGC   ||
  1668             VerifyBeforeExit ||
  1669             VerifyAfterGC, "too expensive");
  1670   #endif
  1671   assert_locked_or_safepoint(SystemDictionary_lock);
  1673   // First look in the loaded class array
  1674   unsigned int d_hash = dictionary()->compute_hash(class_name, class_loader);
  1675   int d_index = dictionary()->hash_to_index(d_hash);
  1676   return find_class(d_index, d_hash, class_name, class_loader);
  1680 // Get the next class in the diictionary.
  1681 klassOop SystemDictionary::try_get_next_class() {
  1682   return dictionary()->try_get_next_class();
  1686 // ----------------------------------------------------------------------------
  1687 // Update hierachy. This is done before the new klass has been added to the SystemDictionary. The Recompile_lock
  1688 // is held, to ensure that the compiler is not using the class hierachy, and that deoptimization will kick in
  1689 // before a new class is used.
  1691 void SystemDictionary::add_to_hierarchy(instanceKlassHandle k, TRAPS) {
  1692   assert(k.not_null(), "just checking");
  1693   assert_locked_or_safepoint(Compile_lock);
  1695   // Link into hierachy. Make sure the vtables are initialized before linking into
  1696   k->append_to_sibling_list();                    // add to superklass/sibling list
  1697   k->process_interfaces(THREAD);                  // handle all "implements" declarations
  1698   k->set_init_state(instanceKlass::loaded);
  1699   // Now flush all code that depended on old class hierarchy.
  1700   // Note: must be done *after* linking k into the hierarchy (was bug 12/9/97)
  1701   // Also, first reinitialize vtable because it may have gotten out of synch
  1702   // while the new class wasn't connected to the class hierarchy.
  1703   Universe::flush_dependents_on(k);
  1707 // ----------------------------------------------------------------------------
  1708 // GC support
  1710 // Following roots during mark-sweep is separated in two phases.
  1711 //
  1712 // The first phase follows preloaded classes and all other system
  1713 // classes, since these will never get unloaded anyway.
  1714 //
  1715 // The second phase removes (unloads) unreachable classes from the
  1716 // system dictionary and follows the remaining classes' contents.
  1718 void SystemDictionary::always_strong_oops_do(OopClosure* blk) {
  1719   // Follow preloaded classes/mirrors and system loader object
  1720   blk->do_oop(&_java_system_loader);
  1721   preloaded_oops_do(blk);
  1722   always_strong_classes_do(blk);
  1726 void SystemDictionary::always_strong_classes_do(OopClosure* blk) {
  1727   // Follow all system classes and temporary placeholders in dictionary
  1728   dictionary()->always_strong_classes_do(blk);
  1730   // Placeholders. These are *always* strong roots, as they
  1731   // represent classes we're actively loading.
  1732   placeholders_do(blk);
  1734   // Visit extra methods
  1735   invoke_method_table()->oops_do(blk);
  1739 void SystemDictionary::placeholders_do(OopClosure* blk) {
  1740   placeholders()->oops_do(blk);
  1744 bool SystemDictionary::do_unloading(BoolObjectClosure* is_alive) {
  1745   bool result = dictionary()->do_unloading(is_alive);
  1746   constraints()->purge_loader_constraints(is_alive);
  1747   resolution_errors()->purge_resolution_errors(is_alive);
  1748   return result;
  1752 // The mirrors are scanned by shared_oops_do() which is
  1753 // not called by oops_do().  In order to process oops in
  1754 // a necessary order, shared_oops_do() is call by
  1755 // Universe::oops_do().
  1756 void SystemDictionary::oops_do(OopClosure* f) {
  1757   // Adjust preloaded classes and system loader object
  1758   f->do_oop(&_java_system_loader);
  1759   preloaded_oops_do(f);
  1761   lazily_loaded_oops_do(f);
  1763   // Adjust dictionary
  1764   dictionary()->oops_do(f);
  1766   // Visit extra methods
  1767   invoke_method_table()->oops_do(f);
  1769   // Partially loaded classes
  1770   placeholders()->oops_do(f);
  1772   // Adjust constraint table
  1773   constraints()->oops_do(f);
  1775   // Adjust resolution error table
  1776   resolution_errors()->oops_do(f);
  1780 void SystemDictionary::preloaded_oops_do(OopClosure* f) {
  1781   for (int k = (int)FIRST_WKID; k < (int)WKID_LIMIT; k++) {
  1782     f->do_oop((oop*) &_well_known_klasses[k]);
  1786     for (int i = 0; i < T_VOID+1; i++) {
  1787       if (_box_klasses[i] != NULL) {
  1788         assert(i >= T_BOOLEAN, "checking");
  1789         f->do_oop((oop*) &_box_klasses[i]);
  1794   // The basic type mirrors would have already been processed in
  1795   // Universe::oops_do(), via a call to shared_oops_do(), so should
  1796   // not be processed again.
  1798   f->do_oop((oop*) &_system_loader_lock_obj);
  1799   FilteredFieldsMap::klasses_oops_do(f);
  1802 void SystemDictionary::lazily_loaded_oops_do(OopClosure* f) {
  1803   f->do_oop((oop*) &_abstract_ownable_synchronizer_klass);
  1806 // Just the classes from defining class loaders
  1807 // Don't iterate over placeholders
  1808 void SystemDictionary::classes_do(void f(klassOop)) {
  1809   dictionary()->classes_do(f);
  1812 // Added for initialize_itable_for_klass
  1813 //   Just the classes from defining class loaders
  1814 // Don't iterate over placeholders
  1815 void SystemDictionary::classes_do(void f(klassOop, TRAPS), TRAPS) {
  1816   dictionary()->classes_do(f, CHECK);
  1819 //   All classes, and their class loaders
  1820 // Don't iterate over placeholders
  1821 void SystemDictionary::classes_do(void f(klassOop, oop)) {
  1822   dictionary()->classes_do(f);
  1825 //   All classes, and their class loaders
  1826 //   (added for helpers that use HandleMarks and ResourceMarks)
  1827 // Don't iterate over placeholders
  1828 void SystemDictionary::classes_do(void f(klassOop, oop, TRAPS), TRAPS) {
  1829   dictionary()->classes_do(f, CHECK);
  1832 void SystemDictionary::placeholders_do(void f(Symbol*, oop)) {
  1833   placeholders()->entries_do(f);
  1836 void SystemDictionary::methods_do(void f(methodOop)) {
  1837   dictionary()->methods_do(f);
  1838   invoke_method_table()->methods_do(f);
  1841 // ----------------------------------------------------------------------------
  1842 // Lazily load klasses
  1844 void SystemDictionary::load_abstract_ownable_synchronizer_klass(TRAPS) {
  1845   assert(JDK_Version::is_gte_jdk16x_version(), "Must be JDK 1.6 or later");
  1847   // if multiple threads calling this function, only one thread will load
  1848   // the class.  The other threads will find the loaded version once the
  1849   // class is loaded.
  1850   klassOop aos = _abstract_ownable_synchronizer_klass;
  1851   if (aos == NULL) {
  1852     klassOop k = resolve_or_fail(vmSymbols::java_util_concurrent_locks_AbstractOwnableSynchronizer(), true, CHECK);
  1853     // Force a fence to prevent any read before the write completes
  1854     OrderAccess::fence();
  1855     _abstract_ownable_synchronizer_klass = k;
  1859 // ----------------------------------------------------------------------------
  1860 // Initialization
  1862 void SystemDictionary::initialize(TRAPS) {
  1863   // Allocate arrays
  1864   assert(dictionary() == NULL,
  1865          "SystemDictionary should only be initialized once");
  1866   _dictionary          = new Dictionary(_nof_buckets);
  1867   _placeholders        = new PlaceholderTable(_nof_buckets);
  1868   _number_of_modifications = 0;
  1869   _loader_constraints  = new LoaderConstraintTable(_loader_constraint_size);
  1870   _resolution_errors   = new ResolutionErrorTable(_resolution_error_size);
  1871   _invoke_method_table = new SymbolPropertyTable(_invoke_method_size);
  1873   // Allocate private object used as system class loader lock
  1874   _system_loader_lock_obj = oopFactory::new_system_objArray(0, CHECK);
  1875   // Initialize basic classes
  1876   initialize_preloaded_classes(CHECK);
  1879 // Compact table of directions on the initialization of klasses:
  1880 static const short wk_init_info[] = {
  1881   #define WK_KLASS_INIT_INFO(name, symbol, option) \
  1882     ( ((int)vmSymbols::VM_SYMBOL_ENUM_NAME(symbol) \
  1883           << SystemDictionary::CEIL_LG_OPTION_LIMIT) \
  1884       | (int)SystemDictionary::option ),
  1885   WK_KLASSES_DO(WK_KLASS_INIT_INFO)
  1886   #undef WK_KLASS_INIT_INFO
  1888 };
  1890 Symbol* SystemDictionary::find_backup_symbol(Symbol* symbol,
  1891                                              const char* from_prefix,
  1892                                              const char* to_prefix) {
  1893   assert(AllowTransitionalJSR292, "");  // delete this subroutine
  1894   Symbol* backup_symbol = NULL;
  1895   size_t from_len = strlen(from_prefix);
  1896   if (strncmp((const char*) symbol->base(), from_prefix, from_len) != 0)
  1897     return NULL;
  1898   char buf[100];
  1899   size_t to_len = strlen(to_prefix);
  1900   size_t tail_len = symbol->utf8_length() - from_len;
  1901   size_t new_len = to_len + tail_len;
  1902   guarantee(new_len < sizeof(buf), "buf too small");
  1903   memcpy(buf, to_prefix, to_len);
  1904   memcpy(buf + to_len, symbol->base() + from_len, tail_len);
  1905   buf[new_len] = '\0';
  1906   vmSymbols::SID backup_sid = vmSymbols::find_sid(buf);
  1907   if (backup_sid != vmSymbols::NO_SID) {
  1908     backup_symbol = vmSymbols::symbol_at(backup_sid);
  1910   return backup_symbol;
  1913 Symbol* SystemDictionary::find_backup_class_name(Symbol* symbol) {
  1914   assert(AllowTransitionalJSR292, "");  // delete this subroutine
  1915   if (symbol == NULL)  return NULL;
  1916   Symbol* backup_symbol = find_backup_symbol(symbol, "java/lang/invoke/", "java/dyn/");  // AllowTransitionalJSR292 ONLY
  1917   if (backup_symbol == NULL)
  1918     backup_symbol = find_backup_symbol(symbol, "java/dyn/", "sun/dyn/");  // AllowTransitionalJSR292 ONLY
  1919   return backup_symbol;
  1922 Symbol* SystemDictionary::find_backup_signature(Symbol* symbol) {
  1923   assert(AllowTransitionalJSR292, "");  // delete this subroutine
  1924   if (symbol == NULL)  return NULL;
  1925   return find_backup_symbol(symbol, "Ljava/lang/invoke/", "Ljava/dyn/");
  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   klassOop*    klassp = &_well_known_klasses[id];
  1934   bool pre_load = (init_opt < SystemDictionary::Opt);
  1935   bool try_load = true;
  1936   if (init_opt == SystemDictionary::Opt_Kernel) {
  1937 #ifndef KERNEL
  1938     try_load = false;
  1939 #endif //KERNEL
  1941   Symbol* backup_symbol = NULL;  // symbol to try if the current symbol fails
  1942   if (init_opt == SystemDictionary::Pre_JSR292) {
  1943     if (!EnableMethodHandles)  try_load = false;  // do not bother to load such classes
  1944     if (AllowTransitionalJSR292) {
  1945       backup_symbol = find_backup_class_name(symbol);
  1946       if (try_load && PreferTransitionalJSR292) {
  1947         while (backup_symbol != NULL) {
  1948           (*klassp) = resolve_or_null(backup_symbol, CHECK_0); // try backup early
  1949           if (TraceMethodHandles) {
  1950             ResourceMark rm;
  1951             tty->print_cr("MethodHandles: try backup first for %s => %s (%s)",
  1952                           symbol->as_C_string(), backup_symbol->as_C_string(),
  1953                           ((*klassp) == NULL) ? "no such class" : "backup load succeeded");
  1955           if ((*klassp) != NULL)  return true;
  1956           backup_symbol = find_backup_class_name(backup_symbol);  // find next backup
  1961   if ((*klassp) != NULL)  return true;
  1962   if (!try_load)          return false;
  1963   while (symbol != NULL) {
  1964     bool must_load = (pre_load && (backup_symbol == NULL));
  1965     if (must_load) {
  1966       (*klassp) = resolve_or_fail(symbol, true, CHECK_0); // load required class
  1967     } else {
  1968       (*klassp) = resolve_or_null(symbol,       CHECK_0); // load optional klass
  1970     if ((*klassp) != NULL)  return true;
  1971     // Go around again.  Example of long backup sequence:
  1972     // java.lang.invoke.MemberName, java.dyn.MemberName, sun.dyn.MemberName, ONLY if AllowTransitionalJSR292
  1973     if (TraceMethodHandles && (backup_symbol != NULL)) {
  1974       ResourceMark rm;
  1975       tty->print_cr("MethodHandles: backup for %s => %s",
  1976                     symbol->as_C_string(), backup_symbol->as_C_string());
  1978     symbol = backup_symbol;
  1979     if (AllowTransitionalJSR292)
  1980       backup_symbol = find_backup_class_name(symbol);
  1982   return false;
  1985 void SystemDictionary::initialize_wk_klasses_until(WKID limit_id, WKID &start_id, TRAPS) {
  1986   assert((int)start_id <= (int)limit_id, "IDs are out of order!");
  1987   for (int id = (int)start_id; id < (int)limit_id; id++) {
  1988     assert(id >= (int)FIRST_WKID && id < (int)WKID_LIMIT, "oob");
  1989     int info = wk_init_info[id - FIRST_WKID];
  1990     int sid  = (info >> CEIL_LG_OPTION_LIMIT);
  1991     int opt  = (info & right_n_bits(CEIL_LG_OPTION_LIMIT));
  1993     initialize_wk_klass((WKID)id, opt, CHECK);
  1995     // Update limits, so find_well_known_klass can be very fast:
  1996     Symbol* s = vmSymbols::symbol_at((vmSymbols::SID)sid);
  1997     if (wk_klass_name_limits[1] == NULL) {
  1998       wk_klass_name_limits[0] = wk_klass_name_limits[1] = s;
  1999     } else if (wk_klass_name_limits[1] < s) {
  2000       wk_klass_name_limits[1] = s;
  2001     } else if (wk_klass_name_limits[0] > s) {
  2002       wk_klass_name_limits[0] = s;
  2006   // move the starting value forward to the limit:
  2007   start_id = limit_id;
  2011 void SystemDictionary::initialize_preloaded_classes(TRAPS) {
  2012   assert(WK_KLASS(Object_klass) == NULL, "preloaded classes should only be initialized once");
  2013   // Preload commonly used klasses
  2014   WKID scan = FIRST_WKID;
  2015   // first do Object, String, Class
  2016   initialize_wk_klasses_through(WK_KLASS_ENUM_NAME(Class_klass), scan, CHECK);
  2018   debug_only(instanceKlass::verify_class_klass_nonstatic_oop_maps(WK_KLASS(Class_klass)));
  2020   // Fixup mirrors for classes loaded before java.lang.Class.
  2021   // These calls iterate over the objects currently in the perm gen
  2022   // so calling them at this point is matters (not before when there
  2023   // are fewer objects and not later after there are more objects
  2024   // in the perm gen.
  2025   Universe::initialize_basic_type_mirrors(CHECK);
  2026   Universe::fixup_mirrors(CHECK);
  2028   // do a bunch more:
  2029   initialize_wk_klasses_through(WK_KLASS_ENUM_NAME(Reference_klass), scan, CHECK);
  2031   // Preload ref klasses and set reference types
  2032   instanceKlass::cast(WK_KLASS(Reference_klass))->set_reference_type(REF_OTHER);
  2033   instanceRefKlass::update_nonstatic_oop_maps(WK_KLASS(Reference_klass));
  2035   initialize_wk_klasses_through(WK_KLASS_ENUM_NAME(PhantomReference_klass), scan, CHECK);
  2036   instanceKlass::cast(WK_KLASS(SoftReference_klass))->set_reference_type(REF_SOFT);
  2037   instanceKlass::cast(WK_KLASS(WeakReference_klass))->set_reference_type(REF_WEAK);
  2038   instanceKlass::cast(WK_KLASS(FinalReference_klass))->set_reference_type(REF_FINAL);
  2039   instanceKlass::cast(WK_KLASS(PhantomReference_klass))->set_reference_type(REF_PHANTOM);
  2041   WKID meth_group_start = WK_KLASS_ENUM_NAME(MethodHandle_klass);
  2042   WKID meth_group_end   = WK_KLASS_ENUM_NAME(WrongMethodTypeException_klass);
  2043   initialize_wk_klasses_until(meth_group_start, scan, CHECK);
  2044   if (EnableMethodHandles) {
  2045     initialize_wk_klasses_through(meth_group_end, scan, CHECK);
  2047   if (_well_known_klasses[meth_group_start] == NULL) {
  2048     // Skip the rest of the method handle classes, if MethodHandle is not loaded.
  2049     scan = WKID(meth_group_end+1);
  2051   WKID indy_group_start = WK_KLASS_ENUM_NAME(Linkage_klass);
  2052   WKID indy_group_end   = WK_KLASS_ENUM_NAME(CallSite_klass);
  2053   initialize_wk_klasses_until(indy_group_start, scan, CHECK);
  2054   if (EnableInvokeDynamic) {
  2055     initialize_wk_klasses_through(indy_group_end, scan, CHECK);
  2057   if (_well_known_klasses[indy_group_start] == NULL) {
  2058     // Skip the rest of the dynamic typing classes, if Linkage is not loaded.
  2059     scan = WKID(indy_group_end+1);
  2062   initialize_wk_klasses_until(WKID_LIMIT, scan, CHECK);
  2064   _box_klasses[T_BOOLEAN] = WK_KLASS(Boolean_klass);
  2065   _box_klasses[T_CHAR]    = WK_KLASS(Character_klass);
  2066   _box_klasses[T_FLOAT]   = WK_KLASS(Float_klass);
  2067   _box_klasses[T_DOUBLE]  = WK_KLASS(Double_klass);
  2068   _box_klasses[T_BYTE]    = WK_KLASS(Byte_klass);
  2069   _box_klasses[T_SHORT]   = WK_KLASS(Short_klass);
  2070   _box_klasses[T_INT]     = WK_KLASS(Integer_klass);
  2071   _box_klasses[T_LONG]    = WK_KLASS(Long_klass);
  2072   //_box_klasses[T_OBJECT]  = WK_KLASS(object_klass);
  2073   //_box_klasses[T_ARRAY]   = WK_KLASS(object_klass);
  2075 #ifdef KERNEL
  2076   if (sun_jkernel_DownloadManager_klass() == NULL) {
  2077     warning("Cannot find sun/jkernel/DownloadManager");
  2079 #endif // KERNEL
  2081   { // Compute whether we should use loadClass or loadClassInternal when loading classes.
  2082     methodOop method = instanceKlass::cast(ClassLoader_klass())->find_method(vmSymbols::loadClassInternal_name(), vmSymbols::string_class_signature());
  2083     _has_loadClassInternal = (method != NULL);
  2085   { // Compute whether we should use checkPackageAccess or NOT
  2086     methodOop method = instanceKlass::cast(ClassLoader_klass())->find_method(vmSymbols::checkPackageAccess_name(), vmSymbols::class_protectiondomain_signature());
  2087     _has_checkPackageAccess = (method != NULL);
  2091 // Tells if a given klass is a box (wrapper class, such as java.lang.Integer).
  2092 // If so, returns the basic type it holds.  If not, returns T_OBJECT.
  2093 BasicType SystemDictionary::box_klass_type(klassOop k) {
  2094   assert(k != NULL, "");
  2095   for (int i = T_BOOLEAN; i < T_VOID+1; i++) {
  2096     if (_box_klasses[i] == k)
  2097       return (BasicType)i;
  2099   return T_OBJECT;
  2102 KlassHandle SystemDictionaryHandles::box_klass(BasicType t) {
  2103   if (t >= T_BOOLEAN && t <= T_VOID)
  2104     return KlassHandle(&SystemDictionary::_box_klasses[t], true);
  2105   else
  2106     return KlassHandle();
  2109 // Constraints on class loaders. The details of the algorithm can be
  2110 // found in the OOPSLA'98 paper "Dynamic Class Loading in the Java
  2111 // Virtual Machine" by Sheng Liang and Gilad Bracha.  The basic idea is
  2112 // that the system dictionary needs to maintain a set of contraints that
  2113 // must be satisfied by all classes in the dictionary.
  2114 // if defining is true, then LinkageError if already in systemDictionary
  2115 // if initiating loader, then ok if instanceKlass matches existing entry
  2117 void SystemDictionary::check_constraints(int d_index, unsigned int d_hash,
  2118                                          instanceKlassHandle k,
  2119                                          Handle class_loader, bool defining,
  2120                                          TRAPS) {
  2121   const char *linkage_error = NULL;
  2123     Symbol*  name  = k->name();
  2124     MutexLocker mu(SystemDictionary_lock, THREAD);
  2126     klassOop check = find_class(d_index, d_hash, name, class_loader);
  2127     if (check != (klassOop)NULL) {
  2128       // if different instanceKlass - duplicate class definition,
  2129       // else - ok, class loaded by a different thread in parallel,
  2130       // we should only have found it if it was done loading and ok to use
  2131       // system dictionary only holds instance classes, placeholders
  2132       // also holds array classes
  2134       assert(check->klass_part()->oop_is_instance(), "noninstance in systemdictionary");
  2135       if ((defining == true) || (k() != check)) {
  2136         linkage_error = "loader (instance of  %s): attempted  duplicate class "
  2137           "definition for name: \"%s\"";
  2138       } else {
  2139         return;
  2143 #ifdef ASSERT
  2144     Symbol* ph_check = find_placeholder(name, class_loader);
  2145     assert(ph_check == NULL || ph_check == name, "invalid symbol");
  2146 #endif
  2148     if (linkage_error == NULL) {
  2149       if (constraints()->check_or_update(k, class_loader, name) == false) {
  2150         linkage_error = "loader constraint violation: loader (instance of %s)"
  2151           " previously initiated loading for a different type with name \"%s\"";
  2156   // Throw error now if needed (cannot throw while holding
  2157   // SystemDictionary_lock because of rank ordering)
  2159   if (linkage_error) {
  2160     ResourceMark rm(THREAD);
  2161     const char* class_loader_name = loader_name(class_loader());
  2162     char* type_name = k->name()->as_C_string();
  2163     size_t buflen = strlen(linkage_error) + strlen(class_loader_name) +
  2164       strlen(type_name);
  2165     char* buf = NEW_RESOURCE_ARRAY_IN_THREAD(THREAD, char, buflen);
  2166     jio_snprintf(buf, buflen, linkage_error, class_loader_name, type_name);
  2167     THROW_MSG(vmSymbols::java_lang_LinkageError(), buf);
  2172 // Update system dictionary - done after check_constraint and add_to_hierachy
  2173 // have been called.
  2174 void SystemDictionary::update_dictionary(int d_index, unsigned int d_hash,
  2175                                          int p_index, unsigned int p_hash,
  2176                                          instanceKlassHandle k,
  2177                                          Handle class_loader,
  2178                                          TRAPS) {
  2179   // Compile_lock prevents systemDictionary updates during compilations
  2180   assert_locked_or_safepoint(Compile_lock);
  2181   Symbol*  name  = k->name();
  2184   MutexLocker mu1(SystemDictionary_lock, THREAD);
  2186   // See whether biased locking is enabled and if so set it for this
  2187   // klass.
  2188   // Note that this must be done past the last potential blocking
  2189   // point / safepoint. We enable biased locking lazily using a
  2190   // VM_Operation to iterate the SystemDictionary and installing the
  2191   // biasable mark word into each instanceKlass's prototype header.
  2192   // To avoid race conditions where we accidentally miss enabling the
  2193   // optimization for one class in the process of being added to the
  2194   // dictionary, we must not safepoint after the test of
  2195   // BiasedLocking::enabled().
  2196   if (UseBiasedLocking && BiasedLocking::enabled()) {
  2197     // Set biased locking bit for all loaded classes; it will be
  2198     // cleared if revocation occurs too often for this type
  2199     // NOTE that we must only do this when the class is initally
  2200     // defined, not each time it is referenced from a new class loader
  2201     if (k->class_loader() == class_loader()) {
  2202       k->set_prototype_header(markOopDesc::biased_locking_prototype());
  2206   // Check for a placeholder. If there, remove it and make a
  2207   // new system dictionary entry.
  2208   placeholders()->find_and_remove(p_index, p_hash, name, class_loader, THREAD);
  2209   klassOop sd_check = find_class(d_index, d_hash, name, class_loader);
  2210   if (sd_check == NULL) {
  2211     dictionary()->add_klass(name, class_loader, k);
  2212     notice_modification();
  2214 #ifdef ASSERT
  2215   sd_check = find_class(d_index, d_hash, name, class_loader);
  2216   assert (sd_check != NULL, "should have entry in system dictionary");
  2217 // Changed to allow PH to remain to complete class circularity checking
  2218 // while only one thread can define a class at one time, multiple
  2219 // classes can resolve the superclass for a class at one time,
  2220 // and the placeholder is used to track that
  2221 //  Symbol* ph_check = find_placeholder(name, class_loader);
  2222 //  assert (ph_check == NULL, "should not have a placeholder entry");
  2223 #endif
  2224     SystemDictionary_lock->notify_all();
  2229 // Try to find a class name using the loader constraints.  The
  2230 // loader constraints might know about a class that isn't fully loaded
  2231 // yet and these will be ignored.
  2232 klassOop SystemDictionary::find_constrained_instance_or_array_klass(
  2233                     Symbol* class_name, Handle class_loader, TRAPS) {
  2235   // First see if it has been loaded directly.
  2236   // Force the protection domain to be null.  (This removes protection checks.)
  2237   Handle no_protection_domain;
  2238   klassOop klass = find_instance_or_array_klass(class_name, class_loader,
  2239                                                 no_protection_domain, CHECK_NULL);
  2240   if (klass != NULL)
  2241     return klass;
  2243   // Now look to see if it has been loaded elsewhere, and is subject to
  2244   // a loader constraint that would require this loader to return the
  2245   // klass that is already loaded.
  2246   if (FieldType::is_array(class_name)) {
  2247     // For array classes, their klassOops are not kept in the
  2248     // constraint table. The element klassOops are.
  2249     FieldArrayInfo fd;
  2250     BasicType t = FieldType::get_array_info(class_name, fd, CHECK_(NULL));
  2251     if (t != T_OBJECT) {
  2252       klass = Universe::typeArrayKlassObj(t);
  2253     } else {
  2254       MutexLocker mu(SystemDictionary_lock, THREAD);
  2255       klass = constraints()->find_constrained_klass(fd.object_key(), class_loader);
  2257     // If element class already loaded, allocate array klass
  2258     if (klass != NULL) {
  2259       klass = Klass::cast(klass)->array_klass_or_null(fd.dimension());
  2261   } else {
  2262     MutexLocker mu(SystemDictionary_lock, THREAD);
  2263     // Non-array classes are easy: simply check the constraint table.
  2264     klass = constraints()->find_constrained_klass(class_name, class_loader);
  2267   return klass;
  2271 bool SystemDictionary::add_loader_constraint(Symbol* class_name,
  2272                                              Handle class_loader1,
  2273                                              Handle class_loader2,
  2274                                              Thread* THREAD) {
  2275   Symbol* constraint_name = NULL;
  2276   if (!FieldType::is_array(class_name)) {
  2277     constraint_name = class_name;
  2278   } else {
  2279     // For array classes, their klassOops are not kept in the
  2280     // constraint table. The element classes are.
  2281     FieldArrayInfo fd;
  2282     BasicType t = FieldType::get_array_info(class_name, fd, CHECK_(false));
  2283     // primitive types always pass
  2284     if (t != T_OBJECT) {
  2285       return true;
  2286     } else {
  2287       constraint_name = fd.object_key();
  2290   unsigned int d_hash1 = dictionary()->compute_hash(constraint_name, class_loader1);
  2291   int d_index1 = dictionary()->hash_to_index(d_hash1);
  2293   unsigned int d_hash2 = dictionary()->compute_hash(constraint_name, class_loader2);
  2294   int d_index2 = dictionary()->hash_to_index(d_hash2);
  2296   MutexLocker mu_s(SystemDictionary_lock, THREAD);
  2298   // Better never do a GC while we're holding these oops
  2299   No_Safepoint_Verifier nosafepoint;
  2301   klassOop klass1 = find_class(d_index1, d_hash1, constraint_name, class_loader1);
  2302   klassOop klass2 = find_class(d_index2, d_hash2, constraint_name, class_loader2);
  2303   return constraints()->add_entry(constraint_name, klass1, class_loader1,
  2304                                   klass2, class_loader2);
  2308 // Add entry to resolution error table to record the error when the first
  2309 // attempt to resolve a reference to a class has failed.
  2310 void SystemDictionary::add_resolution_error(constantPoolHandle pool, int which, Symbol* error) {
  2311   unsigned int hash = resolution_errors()->compute_hash(pool, which);
  2312   int index = resolution_errors()->hash_to_index(hash);
  2314     MutexLocker ml(SystemDictionary_lock, Thread::current());
  2315     resolution_errors()->add_entry(index, hash, pool, which, error);
  2319 // Lookup resolution error table. Returns error if found, otherwise NULL.
  2320 Symbol* SystemDictionary::find_resolution_error(constantPoolHandle pool, int which) {
  2321   unsigned int hash = resolution_errors()->compute_hash(pool, which);
  2322   int index = resolution_errors()->hash_to_index(hash);
  2324     MutexLocker ml(SystemDictionary_lock, Thread::current());
  2325     ResolutionErrorEntry* entry = resolution_errors()->find_entry(index, hash, pool, which);
  2326     return (entry != NULL) ? entry->error() : (Symbol*)NULL;
  2331 // Signature constraints ensure that callers and callees agree about
  2332 // the meaning of type names in their signatures.  This routine is the
  2333 // intake for constraints.  It collects them from several places:
  2334 //
  2335 //  * LinkResolver::resolve_method (if check_access is true) requires
  2336 //    that the resolving class (the caller) and the defining class of
  2337 //    the resolved method (the callee) agree on each type in the
  2338 //    method's signature.
  2339 //
  2340 //  * LinkResolver::resolve_interface_method performs exactly the same
  2341 //    checks.
  2342 //
  2343 //  * LinkResolver::resolve_field requires that the constant pool
  2344 //    attempting to link to a field agree with the field's defining
  2345 //    class about the type of the field signature.
  2346 //
  2347 //  * klassVtable::initialize_vtable requires that, when a class
  2348 //    overrides a vtable entry allocated by a superclass, that the
  2349 //    overriding method (i.e., the callee) agree with the superclass
  2350 //    on each type in the method's signature.
  2351 //
  2352 //  * klassItable::initialize_itable requires that, when a class fills
  2353 //    in its itables, for each non-abstract method installed in an
  2354 //    itable, the method (i.e., the callee) agree with the interface
  2355 //    on each type in the method's signature.
  2356 //
  2357 // All those methods have a boolean (check_access, checkconstraints)
  2358 // which turns off the checks.  This is used from specialized contexts
  2359 // such as bootstrapping, dumping, and debugging.
  2360 //
  2361 // No direct constraint is placed between the class and its
  2362 // supertypes.  Constraints are only placed along linked relations
  2363 // between callers and callees.  When a method overrides or implements
  2364 // an abstract method in a supertype (superclass or interface), the
  2365 // constraints are placed as if the supertype were the caller to the
  2366 // overriding method.  (This works well, since callers to the
  2367 // supertype have already established agreement between themselves and
  2368 // the supertype.)  As a result of all this, a class can disagree with
  2369 // its supertype about the meaning of a type name, as long as that
  2370 // class neither calls a relevant method of the supertype, nor is
  2371 // called (perhaps via an override) from the supertype.
  2372 //
  2373 //
  2374 // SystemDictionary::check_signature_loaders(sig, l1, l2)
  2375 //
  2376 // Make sure all class components (including arrays) in the given
  2377 // signature will be resolved to the same class in both loaders.
  2378 // Returns the name of the type that failed a loader constraint check, or
  2379 // NULL if no constraint failed. The returned C string needs cleaning up
  2380 // with a ResourceMark in the caller.  No exception except OOME is thrown.
  2381 // Arrays are not added to the loader constraint table, their elements are.
  2382 char* SystemDictionary::check_signature_loaders(Symbol* signature,
  2383                                                Handle loader1, Handle loader2,
  2384                                                bool is_method, TRAPS)  {
  2385   // Nothing to do if loaders are the same.
  2386   if (loader1() == loader2()) {
  2387     return NULL;
  2390   ResourceMark rm(THREAD);
  2391   SignatureStream sig_strm(signature, is_method);
  2392   while (!sig_strm.is_done()) {
  2393     if (sig_strm.is_object()) {
  2394       Symbol* s = sig_strm.as_symbol(CHECK_NULL);
  2395       Symbol*  sig  = s;
  2396       if (!add_loader_constraint(sig, loader1, loader2, THREAD)) {
  2397         return sig->as_C_string();
  2400     sig_strm.next();
  2402   return NULL;
  2406 methodOop SystemDictionary::find_method_handle_invoke(Symbol* name,
  2407                                                       Symbol* signature,
  2408                                                       KlassHandle accessing_klass,
  2409                                                       TRAPS) {
  2410   if (!EnableMethodHandles)  return NULL;
  2411   vmSymbols::SID name_id = vmSymbols::find_sid(name);
  2412   assert(name_id != vmSymbols::NO_SID, "must be a known name");
  2413   unsigned int hash  = invoke_method_table()->compute_hash(signature, name_id);
  2414   int          index = invoke_method_table()->hash_to_index(hash);
  2415   SymbolPropertyEntry* spe = invoke_method_table()->find_entry(index, hash, signature, name_id);
  2416   methodHandle non_cached_result;
  2417   if (spe == NULL || spe->property_oop() == NULL) {
  2418     spe = NULL;
  2419     // Must create lots of stuff here, but outside of the SystemDictionary lock.
  2420     if (THREAD->is_Compiler_thread())
  2421       return NULL;              // do not attempt from within compiler
  2422     bool for_invokeGeneric = (name_id == vmSymbols::VM_SYMBOL_ENUM_NAME(invokeGeneric_name));
  2423     if (AllowInvokeForInvokeGeneric && name_id == vmSymbols::VM_SYMBOL_ENUM_NAME(invoke_name))
  2424       for_invokeGeneric = true;
  2425     bool found_on_bcp = false;
  2426     Handle mt = find_method_handle_type(signature, accessing_klass,
  2427                                         for_invokeGeneric,
  2428                                         found_on_bcp, CHECK_NULL);
  2429     KlassHandle  mh_klass = SystemDictionaryHandles::MethodHandle_klass();
  2430     methodHandle m = methodOopDesc::make_invoke_method(mh_klass, name, signature,
  2431                                                        mt, CHECK_NULL);
  2432     // Now grab the lock.  We might have to throw away the new method,
  2433     // if a racing thread has managed to install one at the same time.
  2434     if (found_on_bcp) {
  2435       MutexLocker ml(SystemDictionary_lock, Thread::current());
  2436       spe = invoke_method_table()->find_entry(index, hash, signature, name_id);
  2437       if (spe == NULL)
  2438         spe = invoke_method_table()->add_entry(index, hash, signature, name_id);
  2439       if (spe->property_oop() == NULL)
  2440         spe->set_property_oop(m());
  2441     } else {
  2442       non_cached_result = m;
  2445   if (spe != NULL && spe->property_oop() != NULL) {
  2446     assert(spe->property_oop()->is_method(), "");
  2447     return (methodOop) spe->property_oop();
  2448   } else {
  2449     return non_cached_result();
  2453 // Ask Java code to find or construct a java.lang.invoke.MethodType for the given
  2454 // signature, as interpreted relative to the given class loader.
  2455 // Because of class loader constraints, all method handle usage must be
  2456 // consistent with this loader.
  2457 Handle SystemDictionary::find_method_handle_type(Symbol* signature,
  2458                                                  KlassHandle accessing_klass,
  2459                                                  bool for_invokeGeneric,
  2460                                                  bool& return_bcp_flag,
  2461                                                  TRAPS) {
  2462   Handle class_loader, protection_domain;
  2463   bool is_on_bcp = true;  // keep this true as long as we can materialize from the boot classloader
  2464   Handle empty;
  2465   int npts = ArgumentCount(signature).size();
  2466   objArrayHandle pts = oopFactory::new_objArray(SystemDictionary::Class_klass(), npts, CHECK_(empty));
  2467   int arg = 0;
  2468   Handle rt;                            // the return type from the signature
  2469   ResourceMark rm(THREAD);
  2470   for (SignatureStream ss(signature); !ss.is_done(); ss.next()) {
  2471     oop mirror = NULL;
  2472     if (is_on_bcp) {
  2473       mirror = ss.as_java_mirror(class_loader, protection_domain,
  2474                                  SignatureStream::ReturnNull, CHECK_(empty));
  2475       if (mirror == NULL) {
  2476         // fall back from BCP to accessing_klass
  2477         if (accessing_klass.not_null()) {
  2478           class_loader      = Handle(THREAD, instanceKlass::cast(accessing_klass())->class_loader());
  2479           protection_domain = Handle(THREAD, instanceKlass::cast(accessing_klass())->protection_domain());
  2481         is_on_bcp = false;
  2484     if (!is_on_bcp) {
  2485       // Resolve, throwing a real error if it doesn't work.
  2486       mirror = ss.as_java_mirror(class_loader, protection_domain,
  2487                                  SignatureStream::NCDFError, CHECK_(empty));
  2489     if (ss.at_return_type())
  2490       rt = Handle(THREAD, mirror);
  2491     else
  2492       pts->obj_at_put(arg++, mirror);
  2493     // Check accessibility.
  2494     if (ss.is_object() && accessing_klass.not_null()) {
  2495       klassOop sel_klass = java_lang_Class::as_klassOop(mirror);
  2496       // Emulate constantPoolOopDesc::verify_constant_pool_resolve.
  2497       if (Klass::cast(sel_klass)->oop_is_objArray())
  2498         sel_klass = objArrayKlass::cast(sel_klass)->bottom_klass();
  2499       if (Klass::cast(sel_klass)->oop_is_instance()) {
  2500         KlassHandle sel_kh(THREAD, sel_klass);
  2501         LinkResolver::check_klass_accessability(accessing_klass, sel_kh, CHECK_(empty));
  2505   assert(arg == npts, "");
  2507   // call java.lang.invoke.MethodHandleNatives::findMethodType(Class rt, Class[] pts) -> MethodType
  2508   JavaCallArguments args(Handle(THREAD, rt()));
  2509   args.push_oop(pts());
  2510   JavaValue result(T_OBJECT);
  2511   Symbol* findMethodHandleType_signature = vmSymbols::findMethodHandleType_signature();
  2512   if (AllowTransitionalJSR292 && SystemDictionaryHandles::MethodType_klass()->name() == vmSymbols::java_dyn_MethodType()) {
  2513     findMethodHandleType_signature = vmSymbols::findMethodHandleType_TRANS_signature();
  2515   JavaCalls::call_static(&result,
  2516                          SystemDictionary::MethodHandleNatives_klass(),
  2517                          vmSymbols::findMethodHandleType_name(),
  2518                          findMethodHandleType_signature,
  2519                          &args, CHECK_(empty));
  2520   Handle method_type(THREAD, (oop) result.get_jobject());
  2522   if (for_invokeGeneric) {
  2523     // call java.lang.invoke.MethodHandleNatives::notifyGenericMethodType(MethodType) -> void
  2524     JavaCallArguments args(Handle(THREAD, method_type()));
  2525     JavaValue no_result(T_VOID);
  2526     Symbol* notifyGenericMethodType_signature = vmSymbols::notifyGenericMethodType_signature();
  2527     if (AllowTransitionalJSR292 && SystemDictionaryHandles::MethodType_klass()->name() == vmSymbols::java_dyn_MethodType()) {
  2528       notifyGenericMethodType_signature = vmSymbols::notifyGenericMethodType_TRANS_signature();
  2530     JavaCalls::call_static(&no_result,
  2531                            SystemDictionary::MethodHandleNatives_klass(),
  2532                            vmSymbols::notifyGenericMethodType_name(),
  2533                            notifyGenericMethodType_signature,
  2534                            &args, THREAD);
  2535     if (HAS_PENDING_EXCEPTION) {
  2536       // If the notification fails, just kill it.
  2537       CLEAR_PENDING_EXCEPTION;
  2541   // report back to the caller with the MethodType and the "on_bcp" flag
  2542   return_bcp_flag = is_on_bcp;
  2543   return method_type;
  2546 // Ask Java code to find or construct a method handle constant.
  2547 Handle SystemDictionary::link_method_handle_constant(KlassHandle caller,
  2548                                                      int ref_kind, //e.g., JVM_REF_invokeVirtual
  2549                                                      KlassHandle callee,
  2550                                                      Symbol* name_sym,
  2551                                                      Symbol* signature,
  2552                                                      TRAPS) {
  2553   Handle empty;
  2554   Handle name = java_lang_String::create_from_symbol(name_sym, CHECK_(empty));
  2555   Handle type;
  2556   if (signature->utf8_length() > 0 && signature->byte_at(0) == '(') {
  2557     bool ignore_is_on_bcp = false;
  2558     type = find_method_handle_type(signature, caller, false, ignore_is_on_bcp, CHECK_(empty));
  2559   } else {
  2560     ResourceMark rm(THREAD);
  2561     SignatureStream ss(signature, false);
  2562     if (!ss.is_done()) {
  2563       oop mirror = ss.as_java_mirror(caller->class_loader(), caller->protection_domain(),
  2564                                      SignatureStream::NCDFError, CHECK_(empty));
  2565       type = Handle(THREAD, mirror);
  2566       ss.next();
  2567       if (!ss.is_done())  type = Handle();  // error!
  2570   if (type.is_null()) {
  2571     THROW_MSG_(vmSymbols::java_lang_LinkageError(), "bad signature", empty);
  2574   // call java.lang.invoke.MethodHandleNatives::linkMethodHandleConstant(Class caller, int refKind, Class callee, String name, Object type) -> MethodHandle
  2575   JavaCallArguments args;
  2576   args.push_oop(caller->java_mirror());  // the referring class
  2577   args.push_int(ref_kind);
  2578   args.push_oop(callee->java_mirror());  // the target class
  2579   args.push_oop(name());
  2580   args.push_oop(type());
  2581   JavaValue result(T_OBJECT);
  2582   Symbol* linkMethodHandleConstant_signature = vmSymbols::linkMethodHandleConstant_signature();
  2583   if (AllowTransitionalJSR292 && SystemDictionaryHandles::MethodHandle_klass()->name() == vmSymbols::java_dyn_MethodHandle()) {
  2584     linkMethodHandleConstant_signature = vmSymbols::linkMethodHandleConstant_TRANS_signature();
  2586   JavaCalls::call_static(&result,
  2587                          SystemDictionary::MethodHandleNatives_klass(),
  2588                          vmSymbols::linkMethodHandleConstant_name(),
  2589                          linkMethodHandleConstant_signature,
  2590                          &args, CHECK_(empty));
  2591   return Handle(THREAD, (oop) result.get_jobject());
  2594 // Ask Java code to find or construct a java.lang.invoke.CallSite for the given
  2595 // name and signature, as interpreted relative to the given class loader.
  2596 Handle SystemDictionary::make_dynamic_call_site(Handle bootstrap_method,
  2597                                                 Symbol* name,
  2598                                                 methodHandle signature_invoker,
  2599                                                 Handle info,
  2600                                                 methodHandle caller_method,
  2601                                                 int caller_bci,
  2602                                                 TRAPS) {
  2603   Handle empty;
  2604   guarantee(bootstrap_method.not_null() &&
  2605             java_lang_invoke_MethodHandle::is_instance(bootstrap_method()),
  2606             "caller must supply a valid BSM");
  2608   Handle caller_mname = MethodHandles::new_MemberName(CHECK_(empty));
  2609   MethodHandles::init_MemberName(caller_mname(), caller_method());
  2611   // call java.lang.invoke.MethodHandleNatives::makeDynamicCallSite(bootm, name, mtype, info, caller_mname, caller_pos)
  2612   oop name_str_oop = StringTable::intern(name, CHECK_(empty)); // not a handle!
  2613   JavaCallArguments args(Handle(THREAD, bootstrap_method()));
  2614   args.push_oop(name_str_oop);
  2615   args.push_oop(signature_invoker->method_handle_type());
  2616   args.push_oop(info());
  2617   args.push_oop(caller_mname());
  2618   args.push_int(caller_bci);
  2619   JavaValue result(T_OBJECT);
  2620   Symbol* makeDynamicCallSite_signature = vmSymbols::makeDynamicCallSite_signature();
  2621   if (AllowTransitionalJSR292 && SystemDictionaryHandles::MethodHandleNatives_klass()->name() == vmSymbols::sun_dyn_MethodHandleNatives()) {
  2622     makeDynamicCallSite_signature = vmSymbols::makeDynamicCallSite_TRANS_signature();
  2624   if (AllowTransitionalJSR292 && SystemDictionaryHandles::MethodHandleNatives_klass()->name() == vmSymbols::java_dyn_MethodHandleNatives()) {
  2625     makeDynamicCallSite_signature = vmSymbols::makeDynamicCallSite_TRANS2_signature();
  2627   JavaCalls::call_static(&result,
  2628                          SystemDictionary::MethodHandleNatives_klass(),
  2629                          vmSymbols::makeDynamicCallSite_name(),
  2630                          makeDynamicCallSite_signature,
  2631                          &args, CHECK_(empty));
  2632   oop call_site_oop = (oop) result.get_jobject();
  2633   assert(call_site_oop->is_oop()
  2634          /*&& java_lang_invoke_CallSite::is_instance(call_site_oop)*/, "must be sane");
  2635   if (TraceMethodHandles) {
  2636 #ifndef PRODUCT
  2637     tty->print_cr("Linked invokedynamic bci=%d site="INTPTR_FORMAT":", caller_bci, call_site_oop);
  2638     call_site_oop->print();
  2639     tty->cr();
  2640 #endif //PRODUCT
  2642   return call_site_oop;
  2645 Handle SystemDictionary::find_bootstrap_method(methodHandle caller_method, int caller_bci,
  2646                                                int cache_index,
  2647                                                Handle& argument_info_result,
  2648                                                TRAPS) {
  2649   Handle empty;
  2651   constantPoolHandle pool;
  2653     klassOop caller = caller_method->method_holder();
  2654     if (!Klass::cast(caller)->oop_is_instance())  return empty;
  2655     pool = constantPoolHandle(THREAD, instanceKlass::cast(caller)->constants());
  2658   int constant_pool_index = pool->cache()->entry_at(cache_index)->constant_pool_index();
  2659   constantTag tag = pool->tag_at(constant_pool_index);
  2661   if (tag.is_invoke_dynamic()) {
  2662     // JVM_CONSTANT_InvokeDynamic is an ordered pair of [bootm, name&type], plus optional arguments
  2663     // The bootm, being a JVM_CONSTANT_MethodHandle, has its own cache entry.
  2664     int bsm_index = pool->invoke_dynamic_bootstrap_method_ref_index_at(constant_pool_index);
  2665     if (bsm_index != 0) {
  2666       int bsm_index_in_cache = pool->cache()->entry_at(cache_index)->bootstrap_method_index_in_cache();
  2667       DEBUG_ONLY(int bsm_index_2 = pool->cache()->entry_at(bsm_index_in_cache)->constant_pool_index());
  2668       assert(bsm_index == bsm_index_2, "BSM constant lifted to cache");
  2669       if (TraceMethodHandles) {
  2670         tty->print_cr("resolving bootstrap method for "PTR_FORMAT" at %d at cache[%d]CP[%d]...",
  2671                       (intptr_t) caller_method(), caller_bci, cache_index, constant_pool_index);
  2673       oop bsm_oop = pool->resolve_cached_constant_at(bsm_index_in_cache, CHECK_(empty));
  2674       if (TraceMethodHandles) {
  2675         tty->print_cr("bootstrap method for "PTR_FORMAT" at %d retrieved as "PTR_FORMAT":",
  2676                       (intptr_t) caller_method(), caller_bci, (intptr_t) bsm_oop);
  2678       assert(bsm_oop->is_oop(), "must be sane");
  2679       // caller must verify that it is of type MethodHandle
  2680       Handle bsm(THREAD, bsm_oop);
  2681       bsm_oop = NULL;  // safety
  2683       // Extract the optional static arguments.
  2684       Handle argument_info;  // either null, or one arg, or Object[]{arg...}
  2685       int argc = pool->invoke_dynamic_argument_count_at(constant_pool_index);
  2686       if (TraceInvokeDynamic) {
  2687         tty->print_cr("find_bootstrap_method: [%d/%d] CONSTANT_InvokeDynamic: %d[%d]",
  2688                       constant_pool_index, cache_index, bsm_index, argc);
  2690       if (argc > 0) {
  2691         objArrayHandle arg_array;
  2692         if (argc > 1) {
  2693           objArrayOop arg_array_oop = oopFactory::new_objArray(SystemDictionary::Object_klass(), argc, CHECK_(empty));
  2694           arg_array = objArrayHandle(THREAD, arg_array_oop);
  2695           argument_info = arg_array;
  2697         for (int arg_i = 0; arg_i < argc; arg_i++) {
  2698           int arg_index = pool->invoke_dynamic_argument_index_at(constant_pool_index, arg_i);
  2699           oop arg_oop = pool->resolve_possibly_cached_constant_at(arg_index, CHECK_(empty));
  2700           if (arg_array.is_null()) {
  2701             argument_info = Handle(THREAD, arg_oop);
  2702           } else {
  2703             arg_array->obj_at_put(arg_i, arg_oop);
  2708       argument_info_result = argument_info;  // return argument_info to caller
  2709       return bsm;
  2711     // else null BSM; fall through
  2712   } else if (tag.is_name_and_type()) {
  2713     // JSR 292 EDR does not have JVM_CONSTANT_InvokeDynamic
  2714     // a bare name&type defaults its BSM to null, so fall through...
  2715   } else {
  2716     ShouldNotReachHere();  // verifier does not allow this
  2719   // Fall through to pick up the per-class bootstrap method.
  2720   // This mechanism may go away in the PFD.
  2721   assert(AllowTransitionalJSR292, "else the verifier should have stopped us already");
  2722   argument_info_result = empty;  // return no argument_info to caller
  2723   oop bsm_oop = instanceKlass::cast(caller_method->method_holder())->bootstrap_method();
  2724   if (bsm_oop != NULL) {
  2725     if (TraceMethodHandles) {
  2726       tty->print_cr("bootstrap method for "PTR_FORMAT" registered as "PTR_FORMAT":",
  2727                     (intptr_t) caller_method(), (intptr_t) bsm_oop);
  2729     assert(bsm_oop->is_oop(), "must be sane");
  2730     return Handle(THREAD, bsm_oop);
  2733   return empty;
  2736 // Since the identity hash code for symbols changes when the symbols are
  2737 // moved from the regular perm gen (hash in the mark word) to the shared
  2738 // spaces (hash is the address), the classes loaded into the dictionary
  2739 // may be in the wrong buckets.
  2741 void SystemDictionary::reorder_dictionary() {
  2742   dictionary()->reorder_dictionary();
  2746 void SystemDictionary::copy_buckets(char** top, char* end) {
  2747   dictionary()->copy_buckets(top, end);
  2751 void SystemDictionary::copy_table(char** top, char* end) {
  2752   dictionary()->copy_table(top, end);
  2756 void SystemDictionary::reverse() {
  2757   dictionary()->reverse();
  2760 int SystemDictionary::number_of_classes() {
  2761   return dictionary()->number_of_entries();
  2765 // ----------------------------------------------------------------------------
  2766 #ifndef PRODUCT
  2768 void SystemDictionary::print() {
  2769   dictionary()->print();
  2771   // Placeholders
  2772   GCMutexLocker mu(SystemDictionary_lock);
  2773   placeholders()->print();
  2775   // loader constraints - print under SD_lock
  2776   constraints()->print();
  2779 #endif
  2781 void SystemDictionary::verify() {
  2782   guarantee(dictionary() != NULL, "Verify of system dictionary failed");
  2783   guarantee(constraints() != NULL,
  2784             "Verify of loader constraints failed");
  2785   guarantee(dictionary()->number_of_entries() >= 0 &&
  2786             placeholders()->number_of_entries() >= 0,
  2787             "Verify of system dictionary failed");
  2789   // Verify dictionary
  2790   dictionary()->verify();
  2792   GCMutexLocker mu(SystemDictionary_lock);
  2793   placeholders()->verify();
  2795   // Verify constraint table
  2796   guarantee(constraints() != NULL, "Verify of loader constraints failed");
  2797   constraints()->verify(dictionary(), placeholders());
  2801 void SystemDictionary::verify_obj_klass_present(Handle obj,
  2802                                                 Symbol* class_name,
  2803                                                 Handle class_loader) {
  2804   GCMutexLocker mu(SystemDictionary_lock);
  2805   Symbol* name;
  2807   klassOop probe = find_class(class_name, class_loader);
  2808   if (probe == NULL) {
  2809     probe = SystemDictionary::find_shared_class(class_name);
  2810     if (probe == NULL) {
  2811       name = find_placeholder(class_name, class_loader);
  2814   guarantee(probe != NULL || name != NULL,
  2815             "Loaded klasses should be in SystemDictionary");
  2818 #ifndef PRODUCT
  2820 // statistics code
  2821 class ClassStatistics: AllStatic {
  2822  private:
  2823   static int nclasses;        // number of classes
  2824   static int nmethods;        // number of methods
  2825   static int nmethoddata;     // number of methodData
  2826   static int class_size;      // size of class objects in words
  2827   static int method_size;     // size of method objects in words
  2828   static int debug_size;      // size of debug info in methods
  2829   static int methoddata_size; // size of methodData objects in words
  2831   static void do_class(klassOop k) {
  2832     nclasses++;
  2833     class_size += k->size();
  2834     if (k->klass_part()->oop_is_instance()) {
  2835       instanceKlass* ik = (instanceKlass*)k->klass_part();
  2836       class_size += ik->methods()->size();
  2837       class_size += ik->constants()->size();
  2838       class_size += ik->local_interfaces()->size();
  2839       class_size += ik->transitive_interfaces()->size();
  2840       // We do not have to count implementors, since we only store one!
  2841       class_size += ik->fields()->size();
  2845   static void do_method(methodOop m) {
  2846     nmethods++;
  2847     method_size += m->size();
  2848     // class loader uses same objArray for empty vectors, so don't count these
  2849     if (m->exception_table()->length() != 0)   method_size += m->exception_table()->size();
  2850     if (m->has_stackmap_table()) {
  2851       method_size += m->stackmap_data()->size();
  2854     methodDataOop mdo = m->method_data();
  2855     if (mdo != NULL) {
  2856       nmethoddata++;
  2857       methoddata_size += mdo->size();
  2861  public:
  2862   static void print() {
  2863     SystemDictionary::classes_do(do_class);
  2864     SystemDictionary::methods_do(do_method);
  2865     tty->print_cr("Class statistics:");
  2866     tty->print_cr("%d classes (%d bytes)", nclasses, class_size * oopSize);
  2867     tty->print_cr("%d methods (%d bytes = %d base + %d debug info)", nmethods,
  2868                   (method_size + debug_size) * oopSize, method_size * oopSize, debug_size * oopSize);
  2869     tty->print_cr("%d methoddata (%d bytes)", nmethoddata, methoddata_size * oopSize);
  2871 };
  2874 int ClassStatistics::nclasses        = 0;
  2875 int ClassStatistics::nmethods        = 0;
  2876 int ClassStatistics::nmethoddata     = 0;
  2877 int ClassStatistics::class_size      = 0;
  2878 int ClassStatistics::method_size     = 0;
  2879 int ClassStatistics::debug_size      = 0;
  2880 int ClassStatistics::methoddata_size = 0;
  2882 void SystemDictionary::print_class_statistics() {
  2883   ResourceMark rm;
  2884   ClassStatistics::print();
  2888 class MethodStatistics: AllStatic {
  2889  public:
  2890   enum {
  2891     max_parameter_size = 10
  2892   };
  2893  private:
  2895   static int _number_of_methods;
  2896   static int _number_of_final_methods;
  2897   static int _number_of_static_methods;
  2898   static int _number_of_native_methods;
  2899   static int _number_of_synchronized_methods;
  2900   static int _number_of_profiled_methods;
  2901   static int _number_of_bytecodes;
  2902   static int _parameter_size_profile[max_parameter_size];
  2903   static int _bytecodes_profile[Bytecodes::number_of_java_codes];
  2905   static void initialize() {
  2906     _number_of_methods        = 0;
  2907     _number_of_final_methods  = 0;
  2908     _number_of_static_methods = 0;
  2909     _number_of_native_methods = 0;
  2910     _number_of_synchronized_methods = 0;
  2911     _number_of_profiled_methods = 0;
  2912     _number_of_bytecodes      = 0;
  2913     for (int i = 0; i < max_parameter_size             ; i++) _parameter_size_profile[i] = 0;
  2914     for (int j = 0; j < Bytecodes::number_of_java_codes; j++) _bytecodes_profile     [j] = 0;
  2915   };
  2917   static void do_method(methodOop m) {
  2918     _number_of_methods++;
  2919     // collect flag info
  2920     if (m->is_final()       ) _number_of_final_methods++;
  2921     if (m->is_static()      ) _number_of_static_methods++;
  2922     if (m->is_native()      ) _number_of_native_methods++;
  2923     if (m->is_synchronized()) _number_of_synchronized_methods++;
  2924     if (m->method_data() != NULL) _number_of_profiled_methods++;
  2925     // collect parameter size info (add one for receiver, if any)
  2926     _parameter_size_profile[MIN2(m->size_of_parameters() + (m->is_static() ? 0 : 1), max_parameter_size - 1)]++;
  2927     // collect bytecodes info
  2929       Thread *thread = Thread::current();
  2930       HandleMark hm(thread);
  2931       BytecodeStream s(methodHandle(thread, m));
  2932       Bytecodes::Code c;
  2933       while ((c = s.next()) >= 0) {
  2934         _number_of_bytecodes++;
  2935         _bytecodes_profile[c]++;
  2940  public:
  2941   static void print() {
  2942     initialize();
  2943     SystemDictionary::methods_do(do_method);
  2944     // generate output
  2945     tty->cr();
  2946     tty->print_cr("Method statistics (static):");
  2947     // flag distribution
  2948     tty->cr();
  2949     tty->print_cr("%6d final        methods  %6.1f%%", _number_of_final_methods       , _number_of_final_methods        * 100.0F / _number_of_methods);
  2950     tty->print_cr("%6d static       methods  %6.1f%%", _number_of_static_methods      , _number_of_static_methods       * 100.0F / _number_of_methods);
  2951     tty->print_cr("%6d native       methods  %6.1f%%", _number_of_native_methods      , _number_of_native_methods       * 100.0F / _number_of_methods);
  2952     tty->print_cr("%6d synchronized methods  %6.1f%%", _number_of_synchronized_methods, _number_of_synchronized_methods * 100.0F / _number_of_methods);
  2953     tty->print_cr("%6d profiled     methods  %6.1f%%", _number_of_profiled_methods, _number_of_profiled_methods * 100.0F / _number_of_methods);
  2954     // parameter size profile
  2955     tty->cr();
  2956     { int tot = 0;
  2957       int avg = 0;
  2958       for (int i = 0; i < max_parameter_size; i++) {
  2959         int n = _parameter_size_profile[i];
  2960         tot += n;
  2961         avg += n*i;
  2962         tty->print_cr("parameter size = %1d: %6d methods  %5.1f%%", i, n, n * 100.0F / _number_of_methods);
  2964       assert(tot == _number_of_methods, "should be the same");
  2965       tty->print_cr("                    %6d methods  100.0%%", _number_of_methods);
  2966       tty->print_cr("(average parameter size = %3.1f including receiver, if any)", (float)avg / _number_of_methods);
  2968     // bytecodes profile
  2969     tty->cr();
  2970     { int tot = 0;
  2971       for (int i = 0; i < Bytecodes::number_of_java_codes; i++) {
  2972         if (Bytecodes::is_defined(i)) {
  2973           Bytecodes::Code c = Bytecodes::cast(i);
  2974           int n = _bytecodes_profile[c];
  2975           tot += n;
  2976           tty->print_cr("%9d  %7.3f%%  %s", n, n * 100.0F / _number_of_bytecodes, Bytecodes::name(c));
  2979       assert(tot == _number_of_bytecodes, "should be the same");
  2980       tty->print_cr("%9d  100.000%%", _number_of_bytecodes);
  2982     tty->cr();
  2984 };
  2986 int MethodStatistics::_number_of_methods;
  2987 int MethodStatistics::_number_of_final_methods;
  2988 int MethodStatistics::_number_of_static_methods;
  2989 int MethodStatistics::_number_of_native_methods;
  2990 int MethodStatistics::_number_of_synchronized_methods;
  2991 int MethodStatistics::_number_of_profiled_methods;
  2992 int MethodStatistics::_number_of_bytecodes;
  2993 int MethodStatistics::_parameter_size_profile[MethodStatistics::max_parameter_size];
  2994 int MethodStatistics::_bytecodes_profile[Bytecodes::number_of_java_codes];
  2997 void SystemDictionary::print_method_statistics() {
  2998   MethodStatistics::print();
  3001 #endif // PRODUCT

mercurial