src/hotspot/share/runtime/arguments.cpp
changeset 59070 22ee476cc664
parent 59060 fce1fa1bdc91
child 59115 a129f10e1b9a
equal deleted inserted replaced
59069:e0d59f0c2b7d 59070:22ee476cc664
    83 bool   Arguments::_UseOnStackReplacement        = UseOnStackReplacement;
    83 bool   Arguments::_UseOnStackReplacement        = UseOnStackReplacement;
    84 bool   Arguments::_BackgroundCompilation        = BackgroundCompilation;
    84 bool   Arguments::_BackgroundCompilation        = BackgroundCompilation;
    85 bool   Arguments::_ClipInlining                 = ClipInlining;
    85 bool   Arguments::_ClipInlining                 = ClipInlining;
    86 intx   Arguments::_Tier3InvokeNotifyFreqLog     = Tier3InvokeNotifyFreqLog;
    86 intx   Arguments::_Tier3InvokeNotifyFreqLog     = Tier3InvokeNotifyFreqLog;
    87 intx   Arguments::_Tier4InvocationThreshold     = Tier4InvocationThreshold;
    87 intx   Arguments::_Tier4InvocationThreshold     = Tier4InvocationThreshold;
       
    88 size_t Arguments::_SharedBaseAddress            = SharedBaseAddress;
    88 
    89 
    89 bool   Arguments::_enable_preview               = false;
    90 bool   Arguments::_enable_preview               = false;
    90 
    91 
    91 char*  Arguments::SharedArchivePath             = NULL;
    92 char*  Arguments::SharedArchivePath             = NULL;
    92 char*  Arguments::SharedDynamicArchivePath      = NULL;
    93 char*  Arguments::SharedDynamicArchivePath      = NULL;
  2272   if (TieredCompilation) {
  2273   if (TieredCompilation) {
  2273     Arguments::_Tier3InvokeNotifyFreqLog = Tier3InvokeNotifyFreqLog;
  2274     Arguments::_Tier3InvokeNotifyFreqLog = Tier3InvokeNotifyFreqLog;
  2274     Arguments::_Tier4InvocationThreshold = Tier4InvocationThreshold;
  2275     Arguments::_Tier4InvocationThreshold = Tier4InvocationThreshold;
  2275   }
  2276   }
  2276 
  2277 
       
  2278   // CDS dumping always write the archive to the default value of SharedBaseAddress.
       
  2279   Arguments::_SharedBaseAddress = SharedBaseAddress;
       
  2280 
  2277   // Setup flags for mixed which is the default
  2281   // Setup flags for mixed which is the default
  2278   set_mode_flags(_mixed);
  2282   set_mode_flags(_mixed);
  2279 
  2283 
  2280   // Parse args structure generated from java.base vm options resource
  2284   // Parse args structure generated from java.base vm options resource
  2281   jint result = parse_each_vm_init_arg(vm_options_args, &patch_mod_javabase, JVMFlag::JIMAGE_RESOURCE);
  2285   jint result = parse_each_vm_init_arg(vm_options_args, &patch_mod_javabase, JVMFlag::JIMAGE_RESOURCE);