Skip to content

Commit f9df366

Browse files
committedFeb 5, 2021
8242300: SystemDictionary::resolve_super_or_fail() should look for the super class first
Reviewed-by: iklam, ccheung
1 parent 43ae0cf commit f9df366

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed
 

‎src/hotspot/share/classfile/systemDictionary.cpp

+13-1
Original file line numberDiff line numberDiff line change
@@ -939,7 +939,6 @@ Klass* SystemDictionary::find(Symbol* class_name,
939939
protection_domain);
940940
}
941941

942-
943942
// Look for a loaded instance or array klass by name. Do not do any loading.
944943
// return NULL in case of error.
945944
Klass* SystemDictionary::find_instance_or_array_klass(Symbol* class_name,
@@ -1230,6 +1229,19 @@ bool SystemDictionary::check_shared_class_super_type(InstanceKlass* klass, Insta
12301229
bool is_superclass, TRAPS) {
12311230
assert(super_type->is_shared(), "must be");
12321231

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+
12331245
Klass *found = resolve_super_or_fail(klass->name(), super_type->name(),
12341246
class_loader, protection_domain, is_superclass, CHECK_0);
12351247
if (found == super_type) {

0 commit comments

Comments
 (0)
Please sign in to comment.