Skip to content

Commit b985347

Browse files
committedFeb 4, 2025
8348349: Refactor CDSConfig::is_dumping_heap()
Reviewed-by: ccheung, matsaave
1 parent beb43e2 commit b985347

File tree

12 files changed

+75
-59
lines changed

12 files changed

+75
-59
lines changed
 

‎src/hotspot/share/cds/archiveHeapWriter.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ static FillersTable* _fillers;
7878
static int _num_native_ptrs = 0;
7979

8080
void ArchiveHeapWriter::init() {
81-
if (HeapShared::can_write()) {
81+
if (CDSConfig::is_dumping_heap()) {
8282
Universe::heap()->collect(GCCause::_java_lang_system_gc);
8383

8484
_buffer_offset_to_source_obj_table = new BufferOffsetToSourceObjectTable(/*size (prime)*/36137, /*max size*/1 * M);
@@ -99,7 +99,7 @@ void ArchiveHeapWriter::add_source_obj(oop src_obj) {
9999

100100
void ArchiveHeapWriter::write(GrowableArrayCHeap<oop, mtClassShared>* roots,
101101
ArchiveHeapInfo* heap_info) {
102-
assert(HeapShared::can_write(), "sanity");
102+
assert(CDSConfig::is_dumping_heap(), "sanity");
103103
allocate_buffer();
104104
copy_source_objs_to_buffer(roots);
105105
set_requested_address(heap_info);

‎src/hotspot/share/cds/cdsConfig.cpp

+46-2
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ bool CDSConfig::_is_using_full_module_graph = true;
4646
bool CDSConfig::_has_aot_linked_classes = false;
4747
bool CDSConfig::_has_archived_invokedynamic = false;
4848
bool CDSConfig::_old_cds_flags_used = false;
49+
bool CDSConfig::_disable_heap_dumping = false;
4950

5051
char* CDSConfig::_default_archive_path = nullptr;
5152
char* CDSConfig::_static_archive_path = nullptr;
@@ -532,10 +533,53 @@ bool CDSConfig::current_thread_is_vm_or_dumper() {
532533
return t != nullptr && (t->is_VM_thread() || t == _dumper_thread);
533534
}
534535

536+
// If an incompatible VM options is found, return a text message that explains why
537+
static const char* check_options_incompatible_with_dumping_heap() {
535538
#if INCLUDE_CDS_JAVA_HEAP
539+
if (!UseCompressedClassPointers) {
540+
return "UseCompressedClassPointers must be true";
541+
}
542+
543+
// Almost all GCs support heap region dump, except ZGC (so far).
544+
if (UseZGC) {
545+
return "ZGC is not supported";
546+
}
547+
548+
return nullptr;
549+
#else
550+
return "JVM not configured for writing Java heap objects";
551+
#endif
552+
}
553+
554+
void CDSConfig::log_reasons_for_not_dumping_heap() {
555+
const char* reason;
556+
557+
assert(!is_dumping_heap(), "sanity");
558+
559+
if (_disable_heap_dumping) {
560+
reason = "Programmatically disabled";
561+
} else {
562+
reason = check_options_incompatible_with_dumping_heap();
563+
}
564+
565+
assert(reason != nullptr, "sanity");
566+
log_info(cds)("Archived java heap is not supported: %s", reason);
567+
}
568+
569+
#if INCLUDE_CDS_JAVA_HEAP
570+
bool CDSConfig::are_vm_options_incompatible_with_dumping_heap() {
571+
return check_options_incompatible_with_dumping_heap() != nullptr;
572+
}
573+
574+
536575
bool CDSConfig::is_dumping_heap() {
537-
// heap dump is not supported in dynamic dump
538-
return is_dumping_static_archive() && HeapShared::can_write();
576+
if (!is_dumping_static_archive() // heap dump is not supported in dynamic dump
577+
|| are_vm_options_incompatible_with_dumping_heap()
578+
|| _disable_heap_dumping) {
579+
return false;
580+
}
581+
582+
return true;
539583
}
540584

541585
bool CDSConfig::is_loading_heap() {

‎src/hotspot/share/cds/cdsConfig.hpp

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2023, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2023, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -46,6 +46,7 @@ class CDSConfig : public AllStatic {
4646
static char* _dynamic_archive_path;
4747

4848
static bool _old_cds_flags_used;
49+
static bool _disable_heap_dumping;
4950

5051
static JavaThread* _dumper_thread;
5152
#endif
@@ -116,6 +117,10 @@ class CDSConfig : public AllStatic {
116117

117118
// --- Archived java objects
118119

120+
static bool are_vm_options_incompatible_with_dumping_heap() NOT_CDS_JAVA_HEAP_RETURN_(true);
121+
static void log_reasons_for_not_dumping_heap();
122+
123+
static void disable_heap_dumping() { CDS_ONLY(_disable_heap_dumping = true); }
119124
static bool is_dumping_heap() NOT_CDS_JAVA_HEAP_RETURN_(false);
120125
static bool is_loading_heap() NOT_CDS_JAVA_HEAP_RETURN_(false);
121126
static bool is_initing_classes_at_dump_time() NOT_CDS_JAVA_HEAP_RETURN_(false);

‎src/hotspot/share/cds/filemap.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1601,7 +1601,7 @@ void FileMapInfo::write_region(int region, char* base, size_t size,
16011601
// This is an unused region (e.g., a heap region when !INCLUDE_CDS_JAVA_HEAP)
16021602
requested_base = nullptr;
16031603
} else if (HeapShared::is_heap_region(region)) {
1604-
assert(HeapShared::can_write(), "sanity");
1604+
assert(CDSConfig::is_dumping_heap(), "sanity");
16051605
#if INCLUDE_CDS_JAVA_HEAP
16061606
assert(!CDSConfig::is_dumping_dynamic_archive(), "must be");
16071607
requested_base = (char*)ArchiveHeapWriter::requested_address();

‎src/hotspot/share/cds/heapShared.cpp

+3-7
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ struct ArchivableStaticFieldInfo {
8686
}
8787
};
8888

89-
bool HeapShared::_disable_writing = false;
9089
DumpedInternedStrings *HeapShared::_dumped_interned_strings = nullptr;
9190

9291
size_t HeapShared::_alloc_count[HeapShared::ALLOC_STAT_SLOTS];
@@ -236,9 +235,6 @@ int HeapShared::append_root(oop obj) {
236235
objArrayOop HeapShared::root_segment(int segment_idx) {
237236
if (CDSConfig::is_dumping_heap()) {
238237
assert(Thread::current() == (Thread*)VMThread::vm_thread(), "should be in vm thread");
239-
if (!HeapShared::can_write()) {
240-
return nullptr;
241-
}
242238
} else {
243239
assert(CDSConfig::is_using_archive(), "must be");
244240
}
@@ -714,7 +710,7 @@ void HeapShared::scan_java_class(Klass* orig_k) {
714710
}
715711

716712
void HeapShared::archive_subgraphs() {
717-
assert(HeapShared::can_write(), "must be");
713+
assert(CDSConfig::is_dumping_heap(), "must be");
718714

719715
archive_object_subgraphs(archive_subgraph_entry_fields,
720716
false /* is_full_module_graph */);
@@ -1874,7 +1870,7 @@ void HeapShared::init_subgraph_entry_fields(ArchivableStaticFieldInfo fields[],
18741870
}
18751871

18761872
void HeapShared::init_subgraph_entry_fields(TRAPS) {
1877-
assert(HeapShared::can_write(), "must be");
1873+
assert(CDSConfig::is_dumping_heap(), "must be");
18781874
_dump_time_subgraph_info_table = new (mtClass)DumpTimeKlassSubGraphInfoTable();
18791875
init_subgraph_entry_fields(archive_subgraph_entry_fields, CHECK);
18801876
if (CDSConfig::is_dumping_full_module_graph()) {
@@ -1963,7 +1959,7 @@ void HeapShared::initialize_test_class_from_archive(JavaThread* current) {
19631959
#endif
19641960

19651961
void HeapShared::init_for_dumping(TRAPS) {
1966-
if (HeapShared::can_write()) {
1962+
if (CDSConfig::is_dumping_heap()) {
19671963
setup_test_class(ArchiveHeapTestClass);
19681964
_dumped_interned_strings = new (mtClass)DumpedInternedStrings(INITIAL_TABLE_SIZE, MAX_TABLE_SIZE);
19691965
init_subgraph_entry_fields(CHECK);

‎src/hotspot/share/cds/heapShared.hpp

+1-22
Original file line numberDiff line numberDiff line change
@@ -143,26 +143,6 @@ class HeapShared: AllStatic {
143143
friend class VerifySharedOopClosure;
144144

145145
public:
146-
// Can this VM write a heap region into the CDS archive?
147-
static bool can_write() {
148-
CDS_JAVA_HEAP_ONLY(
149-
if (_disable_writing) {
150-
return false;
151-
}
152-
// Need compressed class pointers for heap region dump.
153-
if (!UseCompressedClassPointers) {
154-
return false;
155-
}
156-
// Almost all GCs support heap region dump, except ZGC (so far).
157-
return !UseZGC;
158-
)
159-
NOT_CDS_JAVA_HEAP(return false;)
160-
}
161-
162-
static void disable_writing() {
163-
CDS_JAVA_HEAP_ONLY(_disable_writing = true;)
164-
}
165-
166146
static bool is_subgraph_root_class(InstanceKlass* ik);
167147

168148
// Scratch objects for archiving Klass::java_mirror()
@@ -173,7 +153,6 @@ class HeapShared: AllStatic {
173153

174154
private:
175155
#if INCLUDE_CDS_JAVA_HEAP
176-
static bool _disable_writing;
177156
static DumpedInternedStrings *_dumped_interned_strings;
178157

179158
// statistics
@@ -377,7 +356,6 @@ class HeapShared: AllStatic {
377356
}
378357

379358
static int archive_exception_instance(oop exception);
380-
static void write_heap(ArchiveHeapInfo* heap_info);
381359

382360
static bool archive_reachable_objects_from(int level,
383361
KlassSubGraphInfo* subgraph_info,
@@ -424,6 +402,7 @@ class HeapShared: AllStatic {
424402
#endif // INCLUDE_CDS_JAVA_HEAP
425403

426404
public:
405+
static void write_heap(ArchiveHeapInfo* heap_info) NOT_CDS_JAVA_HEAP_RETURN;
427406
static objArrayOop scratch_resolved_references(ConstantPool* src);
428407
static void add_scratch_resolved_references(ConstantPool* src, objArrayOop dest) NOT_CDS_JAVA_HEAP_RETURN;
429408
static void init_scratch_objects(TRAPS) NOT_CDS_JAVA_HEAP_RETURN;

‎src/hotspot/share/cds/metaspaceShared.cpp

+8-14
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ class VM_PopulateDumpSharedSpace : public VM_Operation {
552552
FileMapInfo* _map_info;
553553
StaticArchiveBuilder& _builder;
554554

555-
void dump_java_heap_objects(GrowableArray<Klass*>* klasses) NOT_CDS_JAVA_HEAP_RETURN;
555+
void dump_java_heap_objects();
556556
void dump_shared_symbol_table(GrowableArray<Symbol*>* symbols) {
557557
log_info(cds)("Dumping symbol table ...");
558558
SymbolTable::write_to_archive(symbols);
@@ -653,7 +653,7 @@ void VM_PopulateDumpSharedSpace::doit() {
653653
MutexLocker ml(DumpTimeTable_lock, Mutex::_no_safepoint_check_flag);
654654

655655
#if INCLUDE_CDS_JAVA_HEAP
656-
if (HeapShared::can_write() && _extra_interned_strings != nullptr) {
656+
if (CDSConfig::is_dumping_heap() && _extra_interned_strings != nullptr) {
657657
for (int i = 0; i < _extra_interned_strings->length(); i ++) {
658658
OopHandle string = _extra_interned_strings->at(i);
659659
HeapShared::add_to_dumped_interned_strings(string.resolve());
@@ -675,7 +675,7 @@ void VM_PopulateDumpSharedSpace::doit() {
675675
_builder.make_klasses_shareable();
676676
MetaspaceShared::make_method_handle_intrinsics_shareable();
677677

678-
dump_java_heap_objects(_builder.klasses());
678+
dump_java_heap_objects();
679679
dump_shared_symbol_table(_builder.symbols());
680680

681681
char* early_serialized_data = dump_early_read_only_tables();
@@ -1043,19 +1043,13 @@ bool MetaspaceShared::try_link_class(JavaThread* current, InstanceKlass* ik) {
10431043
}
10441044
}
10451045

1046-
#if INCLUDE_CDS_JAVA_HEAP
1047-
void VM_PopulateDumpSharedSpace::dump_java_heap_objects(GrowableArray<Klass*>* klasses) {
1048-
if (!HeapShared::can_write()) {
1049-
log_info(cds)(
1050-
"Archived java heap is not supported as UseG1GC "
1051-
"and UseCompressedClassPointers are required."
1052-
"Current settings: UseG1GC=%s, UseCompressedClassPointers=%s.",
1053-
BOOL_TO_STR(UseG1GC), BOOL_TO_STR(UseCompressedClassPointers));
1054-
return;
1046+
void VM_PopulateDumpSharedSpace::dump_java_heap_objects() {
1047+
if (CDSConfig::is_dumping_heap()) {
1048+
HeapShared::write_heap(&_heap_info);
1049+
} else {
1050+
CDSConfig::log_reasons_for_not_dumping_heap();
10551051
}
1056-
HeapShared::write_heap(&_heap_info);
10571052
}
1058-
#endif // INCLUDE_CDS_JAVA_HEAP
10591053

10601054
void MetaspaceShared::set_shared_metaspace_range(void* base, void *static_top, void* top) {
10611055
assert(base <= static_top && static_top <= top, "must be");

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ void ClassLoaderExt::record_result(const s2 classpath_index, InstanceKlass* resu
341341
ResourceMark rm;
342342
log_warning(cds)("CDS heap objects cannot be written because class %s maybe modified by ClassFileLoadHook.",
343343
result->external_name());
344-
HeapShared::disable_writing();
344+
CDSConfig::disable_heap_dumping();
345345
}
346346
#endif // INCLUDE_CDS_JAVA_HEAP
347347
}

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1012,7 +1012,7 @@ void StringTable::verify_secondary_array_index_bits() {
10121012
// [1] Store it into _shared_strings_array. Encode its position as a 32-bit index.
10131013
// [2] Store the index and hashcode into _shared_table.
10141014
oop StringTable::init_shared_strings_array(const DumpedInternedStrings* dumped_interned_strings) {
1015-
assert(HeapShared::can_write(), "must be");
1015+
assert(CDSConfig::is_dumping_heap(), "must be");
10161016
objArrayOop array = (objArrayOop)(_shared_strings_array.resolve());
10171017

10181018
verify_secondary_array_index_bits();

‎src/hotspot/share/prims/whitebox.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2188,7 +2188,7 @@ WB_ENTRY(jboolean, WB_IsJVMCISupportedByGC(JNIEnv* env))
21882188
WB_END
21892189

21902190
WB_ENTRY(jboolean, WB_CanWriteJavaHeapArchive(JNIEnv* env))
2191-
return HeapShared::can_write();
2191+
return !CDSConfig::are_vm_options_incompatible_with_dumping_heap();
21922192
WB_END
21932193

21942194

‎test/hotspot/jtreg/runtime/cds/appcds/sharedStrings/IncompatibleOptions.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -78,10 +78,6 @@
7878
import jdk.test.whitebox.gc.GC;
7979

8080
public class IncompatibleOptions {
81-
static final String COOPS_DUMP_WARNING =
82-
"Cannot dump shared archive when UseCompressedOops or UseCompressedClassPointers is off";
83-
static final String GC_WARNING =
84-
"Archived java heap is not supported";
8581
static final String OBJ_ALIGNMENT_MISMATCH =
8682
"The shared archive file's ObjectAlignmentInBytes of .* does not equal the current ObjectAlignmentInBytes of";
8783
static final String COMPACT_STRING_MISMATCH =

‎test/jtreg-ext/requires/VMProps.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -452,7 +452,9 @@ protected String vmCDSForCustomLoaders() {
452452
}
453453

454454
/**
455-
* @return true if this VM can write Java heap objects into the CDS archive
455+
* @return true if it's possible for "java -Xshare:dump" to write Java heap objects
456+
* with the current set of jtreg VM options. For example, false will be returned
457+
* if -XX:-UseCompressedClassPointers is specified,
456458
*/
457459
protected String vmCDSCanWriteArchivedJavaHeap() {
458460
return "" + ("true".equals(vmCDS()) && WB.canWriteJavaHeapArchive()

0 commit comments

Comments
 (0)
Please sign in to comment.