@@ -636,7 +636,7 @@ void VM_PopulateDumpSharedSpace::doit() {
636
636
DEBUG_ONLY (SystemDictionaryShared::NoClassLoadingMark nclm);
637
637
638
638
_pending_method_handle_intrinsics = new (mtClassShared) GrowableArray<Method*>(256 , mtClassShared);
639
- if (CDSConfig::is_dumping_aot_linked_classes ()) {
639
+ if (CDSConfig::is_dumping_method_handles ()) {
640
640
// When dumping AOT-linked classes, some classes may have direct references to a method handle
641
641
// intrinsic. The easiest thing is to save all of them into the AOT cache.
642
642
SystemDictionary::get_all_method_handle_intrinsics (_pending_method_handle_intrinsics);
@@ -985,7 +985,7 @@ void MetaspaceShared::preload_and_dump_impl(StaticArchiveBuilder& builder, TRAPS
985
985
HeapShared::reset_archived_object_states (CHECK);
986
986
}
987
987
988
- if (CDSConfig::is_dumping_invokedynamic ()) {
988
+ if (CDSConfig::is_dumping_method_handles ()) {
989
989
// This assert means that the MethodType and MethodTypeForm tables won't be
990
990
// updated concurrently when we are saving their contents into a side table.
991
991
assert (CDSConfig::allow_only_single_java_thread (), " Required" );
@@ -995,12 +995,15 @@ void MetaspaceShared::preload_and_dump_impl(StaticArchiveBuilder& builder, TRAPS
995
995
vmSymbols::createArchivedObjects (),
996
996
vmSymbols::void_method_signature (),
997
997
CHECK);
998
+ }
998
999
1000
+ if (CDSConfig::is_initing_classes_at_dump_time ()) {
999
1001
// java.lang.Class::reflectionFactory cannot be archived yet. We set this field
1000
1002
// to null, and it will be initialized again at runtime.
1001
1003
log_debug (cds)(" Resetting Class::reflectionFactory" );
1002
1004
TempNewSymbol method_name = SymbolTable::new_symbol (" resetArchivedStates" );
1003
1005
Symbol* method_sig = vmSymbols::void_method_signature ();
1006
+ JavaValue result (T_VOID);
1004
1007
JavaCalls::call_static (&result, vmClasses::Class_klass (),
1005
1008
method_name, method_sig, CHECK);
1006
1009
0 commit comments