@@ -939,7 +939,6 @@ Klass* SystemDictionary::find(Symbol* class_name,
939
939
protection_domain);
940
940
}
941
941
942
-
943
942
// Look for a loaded instance or array klass by name. Do not do any loading.
944
943
// return NULL in case of error.
945
944
Klass* SystemDictionary::find_instance_or_array_klass (Symbol* class_name,
@@ -1230,6 +1229,19 @@ bool SystemDictionary::check_shared_class_super_type(InstanceKlass* klass, Insta
1230
1229
bool is_superclass, TRAPS) {
1231
1230
assert (super_type->is_shared (), " must be" );
1232
1231
1232
+ // Quick check if the super type has been already loaded.
1233
+ // + Don't do it for unregistered classes -- they can be unloaded so
1234
+ // super_type->class_loader_data() could be stale.
1235
+ // + Don't check if loader data is NULL, ie. the super_type isn't fully loaded.
1236
+ if (!super_type->is_shared_unregistered_class () && super_type->class_loader_data () != NULL ) {
1237
+ // Check if the super class is loaded by the current class_loader
1238
+ Symbol* name = super_type->name ();
1239
+ Klass* check = find (name, class_loader, protection_domain, CHECK_0);
1240
+ if (check == super_type) {
1241
+ return true ;
1242
+ }
1243
+ }
1244
+
1233
1245
Klass *found = resolve_super_or_fail (klass->name (), super_type->name (),
1234
1246
class_loader, protection_domain, is_superclass, CHECK_0);
1235
1247
if (found == super_type) {
0 commit comments