< prev index next >

src/share/vm/oops/arrayKlass.cpp

Print this page

        

*** 103,113 **** // During bootstrapping, before java.base is defined, the module_entry may not be present yet. // These classes will be put on a fixup list and their module fields will be patched once // java.base is defined. assert((module_entry != NULL) || ((module_entry == NULL) && !ModuleEntryTable::javabase_defined()), ! "module entry not available post java.base definition"); oop module = (module_entry != NULL) ? JNIHandles::resolve(module_entry->module()) : (oop)NULL; java_lang_Class::create_mirror(k, Handle(THREAD, k->class_loader()), Handle(THREAD, module), Handle(NULL), CHECK); } GrowableArray<Klass*>* ArrayKlass::compute_secondary_supers(int num_extra_slots) { --- 103,113 ---- // During bootstrapping, before java.base is defined, the module_entry may not be present yet. // These classes will be put on a fixup list and their module fields will be patched once // java.base is defined. assert((module_entry != NULL) || ((module_entry == NULL) && !ModuleEntryTable::javabase_defined()), ! "module entry not available post " JAVA_BASE_NAME " definition"); oop module = (module_entry != NULL) ? JNIHandles::resolve(module_entry->module()) : (oop)NULL; java_lang_Class::create_mirror(k, Handle(THREAD, k->class_loader()), Handle(THREAD, module), Handle(NULL), CHECK); } GrowableArray<Klass*>* ArrayKlass::compute_secondary_supers(int num_extra_slots) {
< prev index next >