< prev index next >

src/hotspot/share/runtime/arguments.cpp

Print this page

*** 89,98 **** --- 89,99 ---- bool Arguments::_UseOnStackReplacement = UseOnStackReplacement; bool Arguments::_BackgroundCompilation = BackgroundCompilation; bool Arguments::_ClipInlining = ClipInlining; intx Arguments::_Tier3InvokeNotifyFreqLog = Tier3InvokeNotifyFreqLog; intx Arguments::_Tier4InvocationThreshold = Tier4InvocationThreshold; + size_t Arguments::_SharedBaseAddress = SharedBaseAddress; bool Arguments::_enable_preview = false; char* Arguments::SharedArchivePath = NULL; char* Arguments::SharedDynamicArchivePath = NULL;
*** 2198,2207 **** --- 2199,2211 ---- if (TieredCompilation) { Arguments::_Tier3InvokeNotifyFreqLog = Tier3InvokeNotifyFreqLog; Arguments::_Tier4InvocationThreshold = Tier4InvocationThreshold; } + // CDS dumping always write the archive to the default value of SharedBaseAddress. + Arguments::_SharedBaseAddress = SharedBaseAddress; + // Setup flags for mixed which is the default set_mode_flags(_mixed); // Parse args structure generated from JAVA_TOOL_OPTIONS environment // variable (if present).
< prev index next >