We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f3d0ad commit 2139c8cCopy full SHA for 2139c8c
src/hotspot/share/cds/aotMappedHeapWriter.cpp
@@ -86,9 +86,9 @@ void AOTMappedHeapWriter::init() {
86
if (CDSConfig::is_dumping_heap()) {
87
Universe::heap()->collect(GCCause::_java_lang_system_gc);
88
89
- _buffer_offset_to_source_obj_table = new BufferOffsetToSourceObjectTable(/*size (prime)*/36137, /*max size*/1 * M);
+ _buffer_offset_to_source_obj_table = new (mtClassShared) BufferOffsetToSourceObjectTable(/*size (prime)*/36137, /*max size*/1 * M);
90
_dumped_interned_strings = new (mtClass)DumpedInternedStrings(INITIAL_TABLE_SIZE, MAX_TABLE_SIZE);
91
- _fillers = new FillersTable();
+ _fillers = new (mtClassShared) FillersTable();
92
_requested_bottom = nullptr;
93
_requested_top = nullptr;
94
0 commit comments