Skip to content

Commit 0b9e749

Browse files
committedDec 9, 2024
8345390: [ubsan] systemDictionaryShared.cpp:964: member call on null pointer
Reviewed-by: mbaesken, kbarrett
1 parent eff20a3 commit 0b9e749

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed
 

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

+7-1
Original file line numberDiff line numberDiff line change
@@ -957,11 +957,17 @@ InstanceKlass* SystemDictionaryShared::get_shared_lambda_proxy_class(InstanceKla
957957
Symbol* method_type,
958958
Method* member_method,
959959
Symbol* instantiated_method_type) {
960+
assert(caller_ik != nullptr, "sanity");
961+
assert(invoked_name != nullptr, "sanity");
962+
assert(invoked_type != nullptr, "sanity");
963+
assert(method_type != nullptr, "sanity");
964+
assert(instantiated_method_type != nullptr, "sanity");
965+
960966
if (!caller_ik->is_shared() ||
961967
!invoked_name->is_shared() ||
962968
!invoked_type->is_shared() ||
963969
!method_type->is_shared() ||
964-
!member_method->is_shared() ||
970+
(member_method != nullptr && !member_method->is_shared()) ||
965971
!instantiated_method_type->is_shared()) {
966972
// These can't be represented as u4 offset, but we wouldn't have archived a lambda proxy in this case anyway.
967973
return nullptr;

‎test/hotspot/jtreg/runtime/cds/appcds/LambdaInvokeVirtual.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,14 @@ public static void main(String[] args) throws Exception {
6161
.setArchiveName(archiveName);
6262
CDSTestUtils.createArchiveAndCheck(opts);
6363

64-
// run with archive
64+
// run with archive; make sure the lambda is loaded from the archive
6565
CDSOptions runOpts = (new CDSOptions())
66-
.addPrefix("-cp", appJar)
66+
.addPrefix("-cp", appJar, "-Xlog:class+load")
6767
.setArchiveName(archiveName)
6868
.setUseVersion(false)
6969
.addSuffix(mainClass);
7070
OutputAnalyzer output = CDSTestUtils.runWithArchive(runOpts);
71+
output.shouldMatch("LambdaInvokeVirtualApp[$][$]Lambda/.*source: shared objects file");
7172
output.shouldHaveExitValue(0);
7273
}
7374
}

0 commit comments

Comments
 (0)
Please sign in to comment.