File tree 2 files changed +10
-3
lines changed
src/hotspot/share/classfile
test/hotspot/jtreg/runtime/cds/appcds
2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -957,11 +957,17 @@ InstanceKlass* SystemDictionaryShared::get_shared_lambda_proxy_class(InstanceKla
957
957
Symbol* method_type,
958
958
Method* member_method,
959
959
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
+
960
966
if (!caller_ik->is_shared () ||
961
967
!invoked_name->is_shared () ||
962
968
!invoked_type->is_shared () ||
963
969
!method_type->is_shared () ||
964
- ! member_method->is_shared () ||
970
+ (member_method != nullptr && ! member_method->is_shared () ) ||
965
971
!instantiated_method_type->is_shared ()) {
966
972
// These can't be represented as u4 offset, but we wouldn't have archived a lambda proxy in this case anyway.
967
973
return nullptr ;
Original file line number Diff line number Diff line change @@ -61,13 +61,14 @@ public static void main(String[] args) throws Exception {
61
61
.setArchiveName (archiveName );
62
62
CDSTestUtils .createArchiveAndCheck (opts );
63
63
64
- // run with archive
64
+ // run with archive; make sure the lambda is loaded from the archive
65
65
CDSOptions runOpts = (new CDSOptions ())
66
- .addPrefix ("-cp" , appJar )
66
+ .addPrefix ("-cp" , appJar , "-Xlog:class+load" )
67
67
.setArchiveName (archiveName )
68
68
.setUseVersion (false )
69
69
.addSuffix (mainClass );
70
70
OutputAnalyzer output = CDSTestUtils .runWithArchive (runOpts );
71
+ output .shouldMatch ("LambdaInvokeVirtualApp[$][$]Lambda/.*source: shared objects file" );
71
72
output .shouldHaveExitValue (0 );
72
73
}
73
74
}
You can’t perform that action at this time.
0 commit comments