src/share/vm/classfile/systemDictionary.cpp

Print this page

        

*** 1241,1268 **** tty->print(" by %s", loader_data->loader_name()); } tty->print_cr("]"); } - #if INCLUDE_CDS if (DumpLoadedClassList != NULL && classlist_file->is_open()) { // Only dump the classes that can be stored into CDS archive if (SystemDictionaryShared::is_sharing_possible(loader_data)) { ResourceMark rm(THREAD); classlist_file->print_cr("%s", ik->name()->as_C_string()); classlist_file->flush(); } } - #endif // notify a class loaded from shared object ClassLoadingService::notify_class_loaded(InstanceKlass::cast(ik()), true /* shared class */); } return ik; } ! #endif instanceKlassHandle SystemDictionary::load_instance_class(Symbol* class_name, Handle class_loader, TRAPS) { instanceKlassHandle nh = instanceKlassHandle(); // null Handle if (class_loader.is_null()) { --- 1241,1266 ---- tty->print(" by %s", loader_data->loader_name()); } tty->print_cr("]"); } if (DumpLoadedClassList != NULL && classlist_file->is_open()) { // Only dump the classes that can be stored into CDS archive if (SystemDictionaryShared::is_sharing_possible(loader_data)) { ResourceMark rm(THREAD); classlist_file->print_cr("%s", ik->name()->as_C_string()); classlist_file->flush(); } } // notify a class loaded from shared object ClassLoadingService::notify_class_loaded(InstanceKlass::cast(ik()), true /* shared class */); } return ik; } ! #endif // INCLUDE_CDS instanceKlassHandle SystemDictionary::load_instance_class(Symbol* class_name, Handle class_loader, TRAPS) { instanceKlassHandle nh = instanceKlassHandle(); // null Handle if (class_loader.is_null()) {