< prev index next >

src/hotspot/share/runtime/arguments.cpp

Print this page

*** 83,93 **** 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; --- 83,93 ---- bool Arguments::_UseOnStackReplacement = UseOnStackReplacement; bool Arguments::_BackgroundCompilation = BackgroundCompilation; bool Arguments::_ClipInlining = ClipInlining; intx Arguments::_Tier3InvokeNotifyFreqLog = Tier3InvokeNotifyFreqLog; intx Arguments::_Tier4InvocationThreshold = Tier4InvocationThreshold; ! size_t Arguments::_default_SharedBaseAddress = SharedBaseAddress; bool Arguments::_enable_preview = false; char* Arguments::SharedArchivePath = NULL; char* Arguments::SharedDynamicArchivePath = NULL;
*** 2235,2246 **** 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.base vm options resource --- 2235,2246 ---- if (TieredCompilation) { Arguments::_Tier3InvokeNotifyFreqLog = Tier3InvokeNotifyFreqLog; Arguments::_Tier4InvocationThreshold = Tier4InvocationThreshold; } ! // Remember the default value of SharedBaseAddress. ! Arguments::_default_SharedBaseAddress = SharedBaseAddress; // Setup flags for mixed which is the default set_mode_flags(_mixed); // Parse args structure generated from java.base vm options resource
< prev index next >