src/share/vm/runtime/arguments.cpp

Tue, 26 Aug 2014 13:38:33 -0700

author
amurillo
date
Tue, 26 Aug 2014 13:38:33 -0700
changeset 7061
3374ec4c4448
parent 7059
f933a15469d4
parent 7041
411e30e5fbb8
child 7085
fd4dbaff3002
permissions
-rw-r--r--

Merge

     1 /*
     2  * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     8  *
     9  * This code is distributed in the hope that it will be useful, but WITHOUT
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    12  * version 2 for more details (a copy is included in the LICENSE file that
    13  * accompanied this code).
    14  *
    15  * You should have received a copy of the GNU General Public License version
    16  * 2 along with this work; if not, write to the Free Software Foundation,
    17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    18  *
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    22  *
    23  */
    25 #include "precompiled.hpp"
    26 #include "classfile/javaAssertions.hpp"
    27 #include "classfile/symbolTable.hpp"
    28 #include "compiler/compilerOracle.hpp"
    29 #include "memory/allocation.inline.hpp"
    30 #include "memory/cardTableRS.hpp"
    31 #include "memory/genCollectedHeap.hpp"
    32 #include "memory/referenceProcessor.hpp"
    33 #include "memory/universe.inline.hpp"
    34 #include "oops/oop.inline.hpp"
    35 #include "prims/jvmtiExport.hpp"
    36 #include "runtime/arguments.hpp"
    37 #include "runtime/globals_extension.hpp"
    38 #include "runtime/java.hpp"
    39 #include "services/management.hpp"
    40 #include "services/memTracker.hpp"
    41 #include "utilities/defaultStream.hpp"
    42 #include "utilities/macros.hpp"
    43 #include "utilities/taskqueue.hpp"
    44 #ifdef TARGET_OS_FAMILY_linux
    45 # include "os_linux.inline.hpp"
    46 #endif
    47 #ifdef TARGET_OS_FAMILY_solaris
    48 # include "os_solaris.inline.hpp"
    49 #endif
    50 #ifdef TARGET_OS_FAMILY_windows
    51 # include "os_windows.inline.hpp"
    52 #endif
    53 #ifdef TARGET_OS_FAMILY_aix
    54 # include "os_aix.inline.hpp"
    55 #endif
    56 #ifdef TARGET_OS_FAMILY_bsd
    57 # include "os_bsd.inline.hpp"
    58 #endif
    59 #if INCLUDE_ALL_GCS
    60 #include "gc_implementation/concurrentMarkSweep/compactibleFreeListSpace.hpp"
    61 #include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
    62 #include "gc_implementation/parallelScavenge/parallelScavengeHeap.hpp"
    63 #endif // INCLUDE_ALL_GCS
    65 // Note: This is a special bug reporting site for the JVM
    66 #define DEFAULT_VENDOR_URL_BUG "http://bugreport.sun.com/bugreport/crash.jsp"
    67 #define DEFAULT_JAVA_LAUNCHER  "generic"
    69 // Disable options not supported in this release, with a warning if they
    70 // were explicitly requested on the command-line
    71 #define UNSUPPORTED_OPTION(opt, description)                    \
    72 do {                                                            \
    73   if (opt) {                                                    \
    74     if (FLAG_IS_CMDLINE(opt)) {                                 \
    75       warning(description " is disabled in this release.");     \
    76     }                                                           \
    77     FLAG_SET_DEFAULT(opt, false);                               \
    78   }                                                             \
    79 } while(0)
    81 #define UNSUPPORTED_GC_OPTION(gc)                                     \
    82 do {                                                                  \
    83   if (gc) {                                                           \
    84     if (FLAG_IS_CMDLINE(gc)) {                                        \
    85       warning(#gc " is not supported in this VM.  Using Serial GC."); \
    86     }                                                                 \
    87     FLAG_SET_DEFAULT(gc, false);                                      \
    88   }                                                                   \
    89 } while(0)
    91 char**  Arguments::_jvm_flags_array             = NULL;
    92 int     Arguments::_num_jvm_flags               = 0;
    93 char**  Arguments::_jvm_args_array              = NULL;
    94 int     Arguments::_num_jvm_args                = 0;
    95 char*  Arguments::_java_command                 = NULL;
    96 SystemProperty* Arguments::_system_properties   = NULL;
    97 const char*  Arguments::_gc_log_filename        = NULL;
    98 bool   Arguments::_has_profile                  = false;
    99 size_t Arguments::_conservative_max_heap_alignment = 0;
   100 uintx  Arguments::_min_heap_size                = 0;
   101 uintx  Arguments::_min_heap_free_ratio          = 0;
   102 uintx  Arguments::_max_heap_free_ratio          = 0;
   103 Arguments::Mode Arguments::_mode                = _mixed;
   104 bool   Arguments::_java_compiler                = false;
   105 bool   Arguments::_xdebug_mode                  = false;
   106 const char*  Arguments::_java_vendor_url_bug    = DEFAULT_VENDOR_URL_BUG;
   107 const char*  Arguments::_sun_java_launcher      = DEFAULT_JAVA_LAUNCHER;
   108 int    Arguments::_sun_java_launcher_pid        = -1;
   109 bool   Arguments::_created_by_gamma_launcher    = false;
   111 // These parameters are reset in method parse_vm_init_args(JavaVMInitArgs*)
   112 bool   Arguments::_AlwaysCompileLoopMethods     = AlwaysCompileLoopMethods;
   113 bool   Arguments::_UseOnStackReplacement        = UseOnStackReplacement;
   114 bool   Arguments::_BackgroundCompilation        = BackgroundCompilation;
   115 bool   Arguments::_ClipInlining                 = ClipInlining;
   117 char*  Arguments::SharedArchivePath             = NULL;
   119 AgentLibraryList Arguments::_libraryList;
   120 AgentLibraryList Arguments::_agentList;
   122 abort_hook_t     Arguments::_abort_hook         = NULL;
   123 exit_hook_t      Arguments::_exit_hook          = NULL;
   124 vfprintf_hook_t  Arguments::_vfprintf_hook      = NULL;
   127 SystemProperty *Arguments::_java_ext_dirs = NULL;
   128 SystemProperty *Arguments::_java_endorsed_dirs = NULL;
   129 SystemProperty *Arguments::_sun_boot_library_path = NULL;
   130 SystemProperty *Arguments::_java_library_path = NULL;
   131 SystemProperty *Arguments::_java_home = NULL;
   132 SystemProperty *Arguments::_java_class_path = NULL;
   133 SystemProperty *Arguments::_sun_boot_class_path = NULL;
   135 char* Arguments::_meta_index_path = NULL;
   136 char* Arguments::_meta_index_dir = NULL;
   138 // Check if head of 'option' matches 'name', and sets 'tail' remaining part of option string
   140 static bool match_option(const JavaVMOption *option, const char* name,
   141                          const char** tail) {
   142   int len = (int)strlen(name);
   143   if (strncmp(option->optionString, name, len) == 0) {
   144     *tail = option->optionString + len;
   145     return true;
   146   } else {
   147     return false;
   148   }
   149 }
   151 static void logOption(const char* opt) {
   152   if (PrintVMOptions) {
   153     jio_fprintf(defaultStream::output_stream(), "VM option '%s'\n", opt);
   154   }
   155 }
   157 // Process java launcher properties.
   158 void Arguments::process_sun_java_launcher_properties(JavaVMInitArgs* args) {
   159   // See if sun.java.launcher or sun.java.launcher.pid is defined.
   160   // Must do this before setting up other system properties,
   161   // as some of them may depend on launcher type.
   162   for (int index = 0; index < args->nOptions; index++) {
   163     const JavaVMOption* option = args->options + index;
   164     const char* tail;
   166     if (match_option(option, "-Dsun.java.launcher=", &tail)) {
   167       process_java_launcher_argument(tail, option->extraInfo);
   168       continue;
   169     }
   170     if (match_option(option, "-Dsun.java.launcher.pid=", &tail)) {
   171       _sun_java_launcher_pid = atoi(tail);
   172       continue;
   173     }
   174   }
   175 }
   177 // Initialize system properties key and value.
   178 void Arguments::init_system_properties() {
   180   PropertyList_add(&_system_properties, new SystemProperty("java.vm.specification.name",
   181                                                                  "Java Virtual Machine Specification",  false));
   182   PropertyList_add(&_system_properties, new SystemProperty("java.vm.version", VM_Version::vm_release(),  false));
   183   PropertyList_add(&_system_properties, new SystemProperty("java.vm.name", VM_Version::vm_name(),  false));
   184   PropertyList_add(&_system_properties, new SystemProperty("java.vm.info", VM_Version::vm_info_string(),  true));
   186   // following are JVMTI agent writeable properties.
   187   // Properties values are set to NULL and they are
   188   // os specific they are initialized in os::init_system_properties_values().
   189   _java_ext_dirs = new SystemProperty("java.ext.dirs", NULL,  true);
   190   _java_endorsed_dirs = new SystemProperty("java.endorsed.dirs", NULL,  true);
   191   _sun_boot_library_path = new SystemProperty("sun.boot.library.path", NULL,  true);
   192   _java_library_path = new SystemProperty("java.library.path", NULL,  true);
   193   _java_home =  new SystemProperty("java.home", NULL,  true);
   194   _sun_boot_class_path = new SystemProperty("sun.boot.class.path", NULL,  true);
   196   _java_class_path = new SystemProperty("java.class.path", "",  true);
   198   // Add to System Property list.
   199   PropertyList_add(&_system_properties, _java_ext_dirs);
   200   PropertyList_add(&_system_properties, _java_endorsed_dirs);
   201   PropertyList_add(&_system_properties, _sun_boot_library_path);
   202   PropertyList_add(&_system_properties, _java_library_path);
   203   PropertyList_add(&_system_properties, _java_home);
   204   PropertyList_add(&_system_properties, _java_class_path);
   205   PropertyList_add(&_system_properties, _sun_boot_class_path);
   207   // Set OS specific system properties values
   208   os::init_system_properties_values();
   209 }
   212   // Update/Initialize System properties after JDK version number is known
   213 void Arguments::init_version_specific_system_properties() {
   214   enum { bufsz = 16 };
   215   char buffer[bufsz];
   216   const char* spec_vendor = "Sun Microsystems Inc.";
   217   uint32_t spec_version = 0;
   219   if (JDK_Version::is_gte_jdk17x_version()) {
   220     spec_vendor = "Oracle Corporation";
   221     spec_version = JDK_Version::current().major_version();
   222   }
   223   jio_snprintf(buffer, bufsz, "1." UINT32_FORMAT, spec_version);
   225   PropertyList_add(&_system_properties,
   226       new SystemProperty("java.vm.specification.vendor",  spec_vendor, false));
   227   PropertyList_add(&_system_properties,
   228       new SystemProperty("java.vm.specification.version", buffer, false));
   229   PropertyList_add(&_system_properties,
   230       new SystemProperty("java.vm.vendor", VM_Version::vm_vendor(),  false));
   231 }
   233 /**
   234  * Provide a slightly more user-friendly way of eliminating -XX flags.
   235  * When a flag is eliminated, it can be added to this list in order to
   236  * continue accepting this flag on the command-line, while issuing a warning
   237  * and ignoring the value.  Once the JDK version reaches the 'accept_until'
   238  * limit, we flatly refuse to admit the existence of the flag.  This allows
   239  * a flag to die correctly over JDK releases using HSX.
   240  */
   241 typedef struct {
   242   const char* name;
   243   JDK_Version obsoleted_in; // when the flag went away
   244   JDK_Version accept_until; // which version to start denying the existence
   245 } ObsoleteFlag;
   247 static ObsoleteFlag obsolete_jvm_flags[] = {
   248   { "UseTrainGC",                    JDK_Version::jdk(5), JDK_Version::jdk(7) },
   249   { "UseSpecialLargeObjectHandling", JDK_Version::jdk(5), JDK_Version::jdk(7) },
   250   { "UseOversizedCarHandling",       JDK_Version::jdk(5), JDK_Version::jdk(7) },
   251   { "TraceCarAllocation",            JDK_Version::jdk(5), JDK_Version::jdk(7) },
   252   { "PrintTrainGCProcessingStats",   JDK_Version::jdk(5), JDK_Version::jdk(7) },
   253   { "LogOfCarSpaceSize",             JDK_Version::jdk(5), JDK_Version::jdk(7) },
   254   { "OversizedCarThreshold",         JDK_Version::jdk(5), JDK_Version::jdk(7) },
   255   { "MinTickInterval",               JDK_Version::jdk(5), JDK_Version::jdk(7) },
   256   { "DefaultTickInterval",           JDK_Version::jdk(5), JDK_Version::jdk(7) },
   257   { "MaxTickInterval",               JDK_Version::jdk(5), JDK_Version::jdk(7) },
   258   { "DelayTickAdjustment",           JDK_Version::jdk(5), JDK_Version::jdk(7) },
   259   { "ProcessingToTenuringRatio",     JDK_Version::jdk(5), JDK_Version::jdk(7) },
   260   { "MinTrainLength",                JDK_Version::jdk(5), JDK_Version::jdk(7) },
   261   { "AppendRatio",         JDK_Version::jdk_update(6,10), JDK_Version::jdk(7) },
   262   { "DefaultMaxRAM",       JDK_Version::jdk_update(6,18), JDK_Version::jdk(7) },
   263   { "DefaultInitialRAMFraction",
   264                            JDK_Version::jdk_update(6,18), JDK_Version::jdk(7) },
   265   { "UseDepthFirstScavengeOrder",
   266                            JDK_Version::jdk_update(6,22), JDK_Version::jdk(7) },
   267   { "HandlePromotionFailure",
   268                            JDK_Version::jdk_update(6,24), JDK_Version::jdk(8) },
   269   { "MaxLiveObjectEvacuationRatio",
   270                            JDK_Version::jdk_update(6,24), JDK_Version::jdk(8) },
   271   { "ForceSharedSpaces",   JDK_Version::jdk_update(6,25), JDK_Version::jdk(8) },
   272   { "UseParallelOldGCCompacting",
   273                            JDK_Version::jdk_update(6,27), JDK_Version::jdk(8) },
   274   { "UseParallelDensePrefixUpdate",
   275                            JDK_Version::jdk_update(6,27), JDK_Version::jdk(8) },
   276   { "UseParallelOldGCDensePrefix",
   277                            JDK_Version::jdk_update(6,27), JDK_Version::jdk(8) },
   278   { "AllowTransitionalJSR292",       JDK_Version::jdk(7), JDK_Version::jdk(8) },
   279   { "UseCompressedStrings",          JDK_Version::jdk(7), JDK_Version::jdk(8) },
   280   { "CMSPermGenPrecleaningEnabled", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
   281   { "CMSTriggerPermRatio", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
   282   { "CMSInitiatingPermOccupancyFraction", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
   283   { "AdaptivePermSizeWeight", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
   284   { "PermGenPadding", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
   285   { "PermMarkSweepDeadRatio", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
   286   { "PermSize", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
   287   { "MaxPermSize", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
   288   { "MinPermHeapExpansion", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
   289   { "MaxPermHeapExpansion", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
   290   { "CMSRevisitStackSize",           JDK_Version::jdk(8), JDK_Version::jdk(9) },
   291   { "PrintRevisitStats",             JDK_Version::jdk(8), JDK_Version::jdk(9) },
   292   { "UseVectoredExceptions",         JDK_Version::jdk(8), JDK_Version::jdk(9) },
   293   { "UseSplitVerifier",              JDK_Version::jdk(8), JDK_Version::jdk(9) },
   294   { "UseISM",                        JDK_Version::jdk(8), JDK_Version::jdk(9) },
   295   { "UsePermISM",                    JDK_Version::jdk(8), JDK_Version::jdk(9) },
   296   { "UseMPSS",                       JDK_Version::jdk(8), JDK_Version::jdk(9) },
   297   { "UseStringCache",                JDK_Version::jdk(8), JDK_Version::jdk(9) },
   298   { "UseOldInlining",                JDK_Version::jdk(9), JDK_Version::jdk(10) },
   299 #ifdef PRODUCT
   300   { "DesiredMethodLimit",
   301                            JDK_Version::jdk_update(7, 2), JDK_Version::jdk(8) },
   302 #endif // PRODUCT
   303   { NULL, JDK_Version(0), JDK_Version(0) }
   304 };
   306 // Returns true if the flag is obsolete and fits into the range specified
   307 // for being ignored.  In the case that the flag is ignored, the 'version'
   308 // value is filled in with the version number when the flag became
   309 // obsolete so that that value can be displayed to the user.
   310 bool Arguments::is_newly_obsolete(const char *s, JDK_Version* version) {
   311   int i = 0;
   312   assert(version != NULL, "Must provide a version buffer");
   313   while (obsolete_jvm_flags[i].name != NULL) {
   314     const ObsoleteFlag& flag_status = obsolete_jvm_flags[i];
   315     // <flag>=xxx form
   316     // [-|+]<flag> form
   317     if ((strncmp(flag_status.name, s, strlen(flag_status.name)) == 0) ||
   318         ((s[0] == '+' || s[0] == '-') &&
   319         (strncmp(flag_status.name, &s[1], strlen(flag_status.name)) == 0))) {
   320       if (JDK_Version::current().compare(flag_status.accept_until) == -1) {
   321           *version = flag_status.obsoleted_in;
   322           return true;
   323       }
   324     }
   325     i++;
   326   }
   327   return false;
   328 }
   330 // Constructs the system class path (aka boot class path) from the following
   331 // components, in order:
   332 //
   333 //     prefix           // from -Xbootclasspath/p:...
   334 //     endorsed         // the expansion of -Djava.endorsed.dirs=...
   335 //     base             // from os::get_system_properties() or -Xbootclasspath=
   336 //     suffix           // from -Xbootclasspath/a:...
   337 //
   338 // java.endorsed.dirs is a list of directories; any jar or zip files in the
   339 // directories are added to the sysclasspath just before the base.
   340 //
   341 // This could be AllStatic, but it isn't needed after argument processing is
   342 // complete.
   343 class SysClassPath: public StackObj {
   344 public:
   345   SysClassPath(const char* base);
   346   ~SysClassPath();
   348   inline void set_base(const char* base);
   349   inline void add_prefix(const char* prefix);
   350   inline void add_suffix_to_prefix(const char* suffix);
   351   inline void add_suffix(const char* suffix);
   352   inline void reset_path(const char* base);
   354   // Expand the jar/zip files in each directory listed by the java.endorsed.dirs
   355   // property.  Must be called after all command-line arguments have been
   356   // processed (in particular, -Djava.endorsed.dirs=...) and before calling
   357   // combined_path().
   358   void expand_endorsed();
   360   inline const char* get_base()     const { return _items[_scp_base]; }
   361   inline const char* get_prefix()   const { return _items[_scp_prefix]; }
   362   inline const char* get_suffix()   const { return _items[_scp_suffix]; }
   363   inline const char* get_endorsed() const { return _items[_scp_endorsed]; }
   365   // Combine all the components into a single c-heap-allocated string; caller
   366   // must free the string if/when no longer needed.
   367   char* combined_path();
   369 private:
   370   // Utility routines.
   371   static char* add_to_path(const char* path, const char* str, bool prepend);
   372   static char* add_jars_to_path(char* path, const char* directory);
   374   inline void reset_item_at(int index);
   376   // Array indices for the items that make up the sysclasspath.  All except the
   377   // base are allocated in the C heap and freed by this class.
   378   enum {
   379     _scp_prefix,        // from -Xbootclasspath/p:...
   380     _scp_endorsed,      // the expansion of -Djava.endorsed.dirs=...
   381     _scp_base,          // the default sysclasspath
   382     _scp_suffix,        // from -Xbootclasspath/a:...
   383     _scp_nitems         // the number of items, must be last.
   384   };
   386   const char* _items[_scp_nitems];
   387   DEBUG_ONLY(bool _expansion_done;)
   388 };
   390 SysClassPath::SysClassPath(const char* base) {
   391   memset(_items, 0, sizeof(_items));
   392   _items[_scp_base] = base;
   393   DEBUG_ONLY(_expansion_done = false;)
   394 }
   396 SysClassPath::~SysClassPath() {
   397   // Free everything except the base.
   398   for (int i = 0; i < _scp_nitems; ++i) {
   399     if (i != _scp_base) reset_item_at(i);
   400   }
   401   DEBUG_ONLY(_expansion_done = false;)
   402 }
   404 inline void SysClassPath::set_base(const char* base) {
   405   _items[_scp_base] = base;
   406 }
   408 inline void SysClassPath::add_prefix(const char* prefix) {
   409   _items[_scp_prefix] = add_to_path(_items[_scp_prefix], prefix, true);
   410 }
   412 inline void SysClassPath::add_suffix_to_prefix(const char* suffix) {
   413   _items[_scp_prefix] = add_to_path(_items[_scp_prefix], suffix, false);
   414 }
   416 inline void SysClassPath::add_suffix(const char* suffix) {
   417   _items[_scp_suffix] = add_to_path(_items[_scp_suffix], suffix, false);
   418 }
   420 inline void SysClassPath::reset_item_at(int index) {
   421   assert(index < _scp_nitems && index != _scp_base, "just checking");
   422   if (_items[index] != NULL) {
   423     FREE_C_HEAP_ARRAY(char, _items[index], mtInternal);
   424     _items[index] = NULL;
   425   }
   426 }
   428 inline void SysClassPath::reset_path(const char* base) {
   429   // Clear the prefix and suffix.
   430   reset_item_at(_scp_prefix);
   431   reset_item_at(_scp_suffix);
   432   set_base(base);
   433 }
   435 //------------------------------------------------------------------------------
   437 void SysClassPath::expand_endorsed() {
   438   assert(_items[_scp_endorsed] == NULL, "can only be called once.");
   440   const char* path = Arguments::get_property("java.endorsed.dirs");
   441   if (path == NULL) {
   442     path = Arguments::get_endorsed_dir();
   443     assert(path != NULL, "no default for java.endorsed.dirs");
   444   }
   446   char* expanded_path = NULL;
   447   const char separator = *os::path_separator();
   448   const char* const end = path + strlen(path);
   449   while (path < end) {
   450     const char* tmp_end = strchr(path, separator);
   451     if (tmp_end == NULL) {
   452       expanded_path = add_jars_to_path(expanded_path, path);
   453       path = end;
   454     } else {
   455       char* dirpath = NEW_C_HEAP_ARRAY(char, tmp_end - path + 1, mtInternal);
   456       memcpy(dirpath, path, tmp_end - path);
   457       dirpath[tmp_end - path] = '\0';
   458       expanded_path = add_jars_to_path(expanded_path, dirpath);
   459       FREE_C_HEAP_ARRAY(char, dirpath, mtInternal);
   460       path = tmp_end + 1;
   461     }
   462   }
   463   _items[_scp_endorsed] = expanded_path;
   464   DEBUG_ONLY(_expansion_done = true;)
   465 }
   467 // Combine the bootclasspath elements, some of which may be null, into a single
   468 // c-heap-allocated string.
   469 char* SysClassPath::combined_path() {
   470   assert(_items[_scp_base] != NULL, "empty default sysclasspath");
   471   assert(_expansion_done, "must call expand_endorsed() first.");
   473   size_t lengths[_scp_nitems];
   474   size_t total_len = 0;
   476   const char separator = *os::path_separator();
   478   // Get the lengths.
   479   int i;
   480   for (i = 0; i < _scp_nitems; ++i) {
   481     if (_items[i] != NULL) {
   482       lengths[i] = strlen(_items[i]);
   483       // Include space for the separator char (or a NULL for the last item).
   484       total_len += lengths[i] + 1;
   485     }
   486   }
   487   assert(total_len > 0, "empty sysclasspath not allowed");
   489   // Copy the _items to a single string.
   490   char* cp = NEW_C_HEAP_ARRAY(char, total_len, mtInternal);
   491   char* cp_tmp = cp;
   492   for (i = 0; i < _scp_nitems; ++i) {
   493     if (_items[i] != NULL) {
   494       memcpy(cp_tmp, _items[i], lengths[i]);
   495       cp_tmp += lengths[i];
   496       *cp_tmp++ = separator;
   497     }
   498   }
   499   *--cp_tmp = '\0';     // Replace the extra separator.
   500   return cp;
   501 }
   503 // Note:  path must be c-heap-allocated (or NULL); it is freed if non-null.
   504 char*
   505 SysClassPath::add_to_path(const char* path, const char* str, bool prepend) {
   506   char *cp;
   508   assert(str != NULL, "just checking");
   509   if (path == NULL) {
   510     size_t len = strlen(str) + 1;
   511     cp = NEW_C_HEAP_ARRAY(char, len, mtInternal);
   512     memcpy(cp, str, len);                       // copy the trailing null
   513   } else {
   514     const char separator = *os::path_separator();
   515     size_t old_len = strlen(path);
   516     size_t str_len = strlen(str);
   517     size_t len = old_len + str_len + 2;
   519     if (prepend) {
   520       cp = NEW_C_HEAP_ARRAY(char, len, mtInternal);
   521       char* cp_tmp = cp;
   522       memcpy(cp_tmp, str, str_len);
   523       cp_tmp += str_len;
   524       *cp_tmp = separator;
   525       memcpy(++cp_tmp, path, old_len + 1);      // copy the trailing null
   526       FREE_C_HEAP_ARRAY(char, path, mtInternal);
   527     } else {
   528       cp = REALLOC_C_HEAP_ARRAY(char, path, len, mtInternal);
   529       char* cp_tmp = cp + old_len;
   530       *cp_tmp = separator;
   531       memcpy(++cp_tmp, str, str_len + 1);       // copy the trailing null
   532     }
   533   }
   534   return cp;
   535 }
   537 // Scan the directory and append any jar or zip files found to path.
   538 // Note:  path must be c-heap-allocated (or NULL); it is freed if non-null.
   539 char* SysClassPath::add_jars_to_path(char* path, const char* directory) {
   540   DIR* dir = os::opendir(directory);
   541   if (dir == NULL) return path;
   543   char dir_sep[2] = { '\0', '\0' };
   544   size_t directory_len = strlen(directory);
   545   const char fileSep = *os::file_separator();
   546   if (directory[directory_len - 1] != fileSep) dir_sep[0] = fileSep;
   548   /* Scan the directory for jars/zips, appending them to path. */
   549   struct dirent *entry;
   550   char *dbuf = NEW_C_HEAP_ARRAY(char, os::readdir_buf_size(directory), mtInternal);
   551   while ((entry = os::readdir(dir, (dirent *) dbuf)) != NULL) {
   552     const char* name = entry->d_name;
   553     const char* ext = name + strlen(name) - 4;
   554     bool isJarOrZip = ext > name &&
   555       (os::file_name_strcmp(ext, ".jar") == 0 ||
   556        os::file_name_strcmp(ext, ".zip") == 0);
   557     if (isJarOrZip) {
   558       char* jarpath = NEW_C_HEAP_ARRAY(char, directory_len + 2 + strlen(name), mtInternal);
   559       sprintf(jarpath, "%s%s%s", directory, dir_sep, name);
   560       path = add_to_path(path, jarpath, false);
   561       FREE_C_HEAP_ARRAY(char, jarpath, mtInternal);
   562     }
   563   }
   564   FREE_C_HEAP_ARRAY(char, dbuf, mtInternal);
   565   os::closedir(dir);
   566   return path;
   567 }
   569 // Parses a memory size specification string.
   570 static bool atomull(const char *s, julong* result) {
   571   julong n = 0;
   572   int args_read = sscanf(s, JULONG_FORMAT, &n);
   573   if (args_read != 1) {
   574     return false;
   575   }
   576   while (*s != '\0' && isdigit(*s)) {
   577     s++;
   578   }
   579   // 4705540: illegal if more characters are found after the first non-digit
   580   if (strlen(s) > 1) {
   581     return false;
   582   }
   583   switch (*s) {
   584     case 'T': case 't':
   585       *result = n * G * K;
   586       // Check for overflow.
   587       if (*result/((julong)G * K) != n) return false;
   588       return true;
   589     case 'G': case 'g':
   590       *result = n * G;
   591       if (*result/G != n) return false;
   592       return true;
   593     case 'M': case 'm':
   594       *result = n * M;
   595       if (*result/M != n) return false;
   596       return true;
   597     case 'K': case 'k':
   598       *result = n * K;
   599       if (*result/K != n) return false;
   600       return true;
   601     case '\0':
   602       *result = n;
   603       return true;
   604     default:
   605       return false;
   606   }
   607 }
   609 Arguments::ArgsRange Arguments::check_memory_size(julong size, julong min_size) {
   610   if (size < min_size) return arg_too_small;
   611   // Check that size will fit in a size_t (only relevant on 32-bit)
   612   if (size > max_uintx) return arg_too_big;
   613   return arg_in_range;
   614 }
   616 // Describe an argument out of range error
   617 void Arguments::describe_range_error(ArgsRange errcode) {
   618   switch(errcode) {
   619   case arg_too_big:
   620     jio_fprintf(defaultStream::error_stream(),
   621                 "The specified size exceeds the maximum "
   622                 "representable size.\n");
   623     break;
   624   case arg_too_small:
   625   case arg_unreadable:
   626   case arg_in_range:
   627     // do nothing for now
   628     break;
   629   default:
   630     ShouldNotReachHere();
   631   }
   632 }
   634 static bool set_bool_flag(char* name, bool value, Flag::Flags origin) {
   635   return CommandLineFlags::boolAtPut(name, &value, origin);
   636 }
   638 static bool set_fp_numeric_flag(char* name, char* value, Flag::Flags origin) {
   639   double v;
   640   if (sscanf(value, "%lf", &v) != 1) {
   641     return false;
   642   }
   644   if (CommandLineFlags::doubleAtPut(name, &v, origin)) {
   645     return true;
   646   }
   647   return false;
   648 }
   650 static bool set_numeric_flag(char* name, char* value, Flag::Flags origin) {
   651   julong v;
   652   intx intx_v;
   653   bool is_neg = false;
   654   // Check the sign first since atomull() parses only unsigned values.
   655   if (*value == '-') {
   656     if (!CommandLineFlags::intxAt(name, &intx_v)) {
   657       return false;
   658     }
   659     value++;
   660     is_neg = true;
   661   }
   662   if (!atomull(value, &v)) {
   663     return false;
   664   }
   665   intx_v = (intx) v;
   666   if (is_neg) {
   667     intx_v = -intx_v;
   668   }
   669   if (CommandLineFlags::intxAtPut(name, &intx_v, origin)) {
   670     return true;
   671   }
   672   uintx uintx_v = (uintx) v;
   673   if (!is_neg && CommandLineFlags::uintxAtPut(name, &uintx_v, origin)) {
   674     return true;
   675   }
   676   uint64_t uint64_t_v = (uint64_t) v;
   677   if (!is_neg && CommandLineFlags::uint64_tAtPut(name, &uint64_t_v, origin)) {
   678     return true;
   679   }
   680   return false;
   681 }
   683 static bool set_string_flag(char* name, const char* value, Flag::Flags origin) {
   684   if (!CommandLineFlags::ccstrAtPut(name, &value, origin))  return false;
   685   // Contract:  CommandLineFlags always returns a pointer that needs freeing.
   686   FREE_C_HEAP_ARRAY(char, value, mtInternal);
   687   return true;
   688 }
   690 static bool append_to_string_flag(char* name, const char* new_value, Flag::Flags origin) {
   691   const char* old_value = "";
   692   if (!CommandLineFlags::ccstrAt(name, &old_value))  return false;
   693   size_t old_len = old_value != NULL ? strlen(old_value) : 0;
   694   size_t new_len = strlen(new_value);
   695   const char* value;
   696   char* free_this_too = NULL;
   697   if (old_len == 0) {
   698     value = new_value;
   699   } else if (new_len == 0) {
   700     value = old_value;
   701   } else {
   702     char* buf = NEW_C_HEAP_ARRAY(char, old_len + 1 + new_len + 1, mtInternal);
   703     // each new setting adds another LINE to the switch:
   704     sprintf(buf, "%s\n%s", old_value, new_value);
   705     value = buf;
   706     free_this_too = buf;
   707   }
   708   (void) CommandLineFlags::ccstrAtPut(name, &value, origin);
   709   // CommandLineFlags always returns a pointer that needs freeing.
   710   FREE_C_HEAP_ARRAY(char, value, mtInternal);
   711   if (free_this_too != NULL) {
   712     // CommandLineFlags made its own copy, so I must delete my own temp. buffer.
   713     FREE_C_HEAP_ARRAY(char, free_this_too, mtInternal);
   714   }
   715   return true;
   716 }
   718 bool Arguments::parse_argument(const char* arg, Flag::Flags origin) {
   720   // range of acceptable characters spelled out for portability reasons
   721 #define NAME_RANGE  "[abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_]"
   722 #define BUFLEN 255
   723   char name[BUFLEN+1];
   724   char dummy;
   726   if (sscanf(arg, "-%" XSTR(BUFLEN) NAME_RANGE "%c", name, &dummy) == 1) {
   727     return set_bool_flag(name, false, origin);
   728   }
   729   if (sscanf(arg, "+%" XSTR(BUFLEN) NAME_RANGE "%c", name, &dummy) == 1) {
   730     return set_bool_flag(name, true, origin);
   731   }
   733   char punct;
   734   if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "%c", name, &punct) == 2 && punct == '=') {
   735     const char* value = strchr(arg, '=') + 1;
   736     Flag* flag = Flag::find_flag(name, strlen(name));
   737     if (flag != NULL && flag->is_ccstr()) {
   738       if (flag->ccstr_accumulates()) {
   739         return append_to_string_flag(name, value, origin);
   740       } else {
   741         if (value[0] == '\0') {
   742           value = NULL;
   743         }
   744         return set_string_flag(name, value, origin);
   745       }
   746     }
   747   }
   749   if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE ":%c", name, &punct) == 2 && punct == '=') {
   750     const char* value = strchr(arg, '=') + 1;
   751     // -XX:Foo:=xxx will reset the string flag to the given value.
   752     if (value[0] == '\0') {
   753       value = NULL;
   754     }
   755     return set_string_flag(name, value, origin);
   756   }
   758 #define SIGNED_FP_NUMBER_RANGE "[-0123456789.]"
   759 #define SIGNED_NUMBER_RANGE    "[-0123456789]"
   760 #define        NUMBER_RANGE    "[0123456789]"
   761   char value[BUFLEN + 1];
   762   char value2[BUFLEN + 1];
   763   if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "=" "%" XSTR(BUFLEN) SIGNED_NUMBER_RANGE "." "%" XSTR(BUFLEN) NUMBER_RANGE "%c", name, value, value2, &dummy) == 3) {
   764     // Looks like a floating-point number -- try again with more lenient format string
   765     if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "=" "%" XSTR(BUFLEN) SIGNED_FP_NUMBER_RANGE "%c", name, value, &dummy) == 2) {
   766       return set_fp_numeric_flag(name, value, origin);
   767     }
   768   }
   770 #define VALUE_RANGE "[-kmgtKMGT0123456789]"
   771   if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "=" "%" XSTR(BUFLEN) VALUE_RANGE "%c", name, value, &dummy) == 2) {
   772     return set_numeric_flag(name, value, origin);
   773   }
   775   return false;
   776 }
   778 void Arguments::add_string(char*** bldarray, int* count, const char* arg) {
   779   assert(bldarray != NULL, "illegal argument");
   781   if (arg == NULL) {
   782     return;
   783   }
   785   int new_count = *count + 1;
   787   // expand the array and add arg to the last element
   788   if (*bldarray == NULL) {
   789     *bldarray = NEW_C_HEAP_ARRAY(char*, new_count, mtInternal);
   790   } else {
   791     *bldarray = REALLOC_C_HEAP_ARRAY(char*, *bldarray, new_count, mtInternal);
   792   }
   793   (*bldarray)[*count] = strdup(arg);
   794   *count = new_count;
   795 }
   797 void Arguments::build_jvm_args(const char* arg) {
   798   add_string(&_jvm_args_array, &_num_jvm_args, arg);
   799 }
   801 void Arguments::build_jvm_flags(const char* arg) {
   802   add_string(&_jvm_flags_array, &_num_jvm_flags, arg);
   803 }
   805 // utility function to return a string that concatenates all
   806 // strings in a given char** array
   807 const char* Arguments::build_resource_string(char** args, int count) {
   808   if (args == NULL || count == 0) {
   809     return NULL;
   810   }
   811   size_t length = strlen(args[0]) + 1; // add 1 for the null terminator
   812   for (int i = 1; i < count; i++) {
   813     length += strlen(args[i]) + 1; // add 1 for a space
   814   }
   815   char* s = NEW_RESOURCE_ARRAY(char, length);
   816   strcpy(s, args[0]);
   817   for (int j = 1; j < count; j++) {
   818     strcat(s, " ");
   819     strcat(s, args[j]);
   820   }
   821   return (const char*) s;
   822 }
   824 void Arguments::print_on(outputStream* st) {
   825   st->print_cr("VM Arguments:");
   826   if (num_jvm_flags() > 0) {
   827     st->print("jvm_flags: "); print_jvm_flags_on(st);
   828   }
   829   if (num_jvm_args() > 0) {
   830     st->print("jvm_args: "); print_jvm_args_on(st);
   831   }
   832   st->print_cr("java_command: %s", java_command() ? java_command() : "<unknown>");
   833   if (_java_class_path != NULL) {
   834     char* path = _java_class_path->value();
   835     st->print_cr("java_class_path (initial): %s", strlen(path) == 0 ? "<not set>" : path );
   836   }
   837   st->print_cr("Launcher Type: %s", _sun_java_launcher);
   838 }
   840 void Arguments::print_jvm_flags_on(outputStream* st) {
   841   if (_num_jvm_flags > 0) {
   842     for (int i=0; i < _num_jvm_flags; i++) {
   843       st->print("%s ", _jvm_flags_array[i]);
   844     }
   845     st->cr();
   846   }
   847 }
   849 void Arguments::print_jvm_args_on(outputStream* st) {
   850   if (_num_jvm_args > 0) {
   851     for (int i=0; i < _num_jvm_args; i++) {
   852       st->print("%s ", _jvm_args_array[i]);
   853     }
   854     st->cr();
   855   }
   856 }
   858 bool Arguments::process_argument(const char* arg,
   859     jboolean ignore_unrecognized, Flag::Flags origin) {
   861   JDK_Version since = JDK_Version();
   863   if (parse_argument(arg, origin) || ignore_unrecognized) {
   864     return true;
   865   }
   867   bool has_plus_minus = (*arg == '+' || *arg == '-');
   868   const char* const argname = has_plus_minus ? arg + 1 : arg;
   869   if (is_newly_obsolete(arg, &since)) {
   870     char version[256];
   871     since.to_string(version, sizeof(version));
   872     warning("ignoring option %s; support was removed in %s", argname, version);
   873     return true;
   874   }
   876   // For locked flags, report a custom error message if available.
   877   // Otherwise, report the standard unrecognized VM option.
   879   size_t arg_len;
   880   const char* equal_sign = strchr(argname, '=');
   881   if (equal_sign == NULL) {
   882     arg_len = strlen(argname);
   883   } else {
   884     arg_len = equal_sign - argname;
   885   }
   887   Flag* found_flag = Flag::find_flag((const char*)argname, arg_len, true, true);
   888   if (found_flag != NULL) {
   889     char locked_message_buf[BUFLEN];
   890     found_flag->get_locked_message(locked_message_buf, BUFLEN);
   891     if (strlen(locked_message_buf) == 0) {
   892       if (found_flag->is_bool() && !has_plus_minus) {
   893         jio_fprintf(defaultStream::error_stream(),
   894           "Missing +/- setting for VM option '%s'\n", argname);
   895       } else if (!found_flag->is_bool() && has_plus_minus) {
   896         jio_fprintf(defaultStream::error_stream(),
   897           "Unexpected +/- setting in VM option '%s'\n", argname);
   898       } else {
   899         jio_fprintf(defaultStream::error_stream(),
   900           "Improperly specified VM option '%s'\n", argname);
   901       }
   902     } else {
   903       jio_fprintf(defaultStream::error_stream(), "%s", locked_message_buf);
   904     }
   905   } else {
   906     jio_fprintf(defaultStream::error_stream(),
   907                 "Unrecognized VM option '%s'\n", argname);
   908     Flag* fuzzy_matched = Flag::fuzzy_match((const char*)argname, arg_len, true);
   909     if (fuzzy_matched != NULL) {
   910       jio_fprintf(defaultStream::error_stream(),
   911                   "Did you mean '%s%s%s'?\n",
   912                   (fuzzy_matched->is_bool()) ? "(+/-)" : "",
   913                   fuzzy_matched->_name,
   914                   (fuzzy_matched->is_bool()) ? "" : "=<value>");
   915     }
   916   }
   918   // allow for commandline "commenting out" options like -XX:#+Verbose
   919   return arg[0] == '#';
   920 }
   922 bool Arguments::process_settings_file(const char* file_name, bool should_exist, jboolean ignore_unrecognized) {
   923   FILE* stream = fopen(file_name, "rb");
   924   if (stream == NULL) {
   925     if (should_exist) {
   926       jio_fprintf(defaultStream::error_stream(),
   927                   "Could not open settings file %s\n", file_name);
   928       return false;
   929     } else {
   930       return true;
   931     }
   932   }
   934   char token[1024];
   935   int  pos = 0;
   937   bool in_white_space = true;
   938   bool in_comment     = false;
   939   bool in_quote       = false;
   940   char quote_c        = 0;
   941   bool result         = true;
   943   int c = getc(stream);
   944   while(c != EOF && pos < (int)(sizeof(token)-1)) {
   945     if (in_white_space) {
   946       if (in_comment) {
   947         if (c == '\n') in_comment = false;
   948       } else {
   949         if (c == '#') in_comment = true;
   950         else if (!isspace(c)) {
   951           in_white_space = false;
   952           token[pos++] = c;
   953         }
   954       }
   955     } else {
   956       if (c == '\n' || (!in_quote && isspace(c))) {
   957         // token ends at newline, or at unquoted whitespace
   958         // this allows a way to include spaces in string-valued options
   959         token[pos] = '\0';
   960         logOption(token);
   961         result &= process_argument(token, ignore_unrecognized, Flag::CONFIG_FILE);
   962         build_jvm_flags(token);
   963         pos = 0;
   964         in_white_space = true;
   965         in_quote = false;
   966       } else if (!in_quote && (c == '\'' || c == '"')) {
   967         in_quote = true;
   968         quote_c = c;
   969       } else if (in_quote && (c == quote_c)) {
   970         in_quote = false;
   971       } else {
   972         token[pos++] = c;
   973       }
   974     }
   975     c = getc(stream);
   976   }
   977   if (pos > 0) {
   978     token[pos] = '\0';
   979     result &= process_argument(token, ignore_unrecognized, Flag::CONFIG_FILE);
   980     build_jvm_flags(token);
   981   }
   982   fclose(stream);
   983   return result;
   984 }
   986 //=============================================================================================================
   987 // Parsing of properties (-D)
   989 const char* Arguments::get_property(const char* key) {
   990   return PropertyList_get_value(system_properties(), key);
   991 }
   993 bool Arguments::add_property(const char* prop) {
   994   const char* eq = strchr(prop, '=');
   995   char* key;
   996   // ns must be static--its address may be stored in a SystemProperty object.
   997   const static char ns[1] = {0};
   998   char* value = (char *)ns;
  1000   size_t key_len = (eq == NULL) ? strlen(prop) : (eq - prop);
  1001   key = AllocateHeap(key_len + 1, mtInternal);
  1002   strncpy(key, prop, key_len);
  1003   key[key_len] = '\0';
  1005   if (eq != NULL) {
  1006     size_t value_len = strlen(prop) - key_len - 1;
  1007     value = AllocateHeap(value_len + 1, mtInternal);
  1008     strncpy(value, &prop[key_len + 1], value_len + 1);
  1011   if (strcmp(key, "java.compiler") == 0) {
  1012     process_java_compiler_argument(value);
  1013     FreeHeap(key);
  1014     if (eq != NULL) {
  1015       FreeHeap(value);
  1017     return true;
  1018   } else if (strcmp(key, "sun.java.command") == 0) {
  1019     _java_command = value;
  1021     // Record value in Arguments, but let it get passed to Java.
  1022   } else if (strcmp(key, "sun.java.launcher.pid") == 0) {
  1023     // launcher.pid property is private and is processed
  1024     // in process_sun_java_launcher_properties();
  1025     // the sun.java.launcher property is passed on to the java application
  1026     FreeHeap(key);
  1027     if (eq != NULL) {
  1028       FreeHeap(value);
  1030     return true;
  1031   } else if (strcmp(key, "java.vendor.url.bug") == 0) {
  1032     // save it in _java_vendor_url_bug, so JVM fatal error handler can access
  1033     // its value without going through the property list or making a Java call.
  1034     _java_vendor_url_bug = value;
  1035   } else if (strcmp(key, "sun.boot.library.path") == 0) {
  1036     PropertyList_unique_add(&_system_properties, key, value, true);
  1037     return true;
  1039   // Create new property and add at the end of the list
  1040   PropertyList_unique_add(&_system_properties, key, value);
  1041   return true;
  1044 //===========================================================================================================
  1045 // Setting int/mixed/comp mode flags
  1047 void Arguments::set_mode_flags(Mode mode) {
  1048   // Set up default values for all flags.
  1049   // If you add a flag to any of the branches below,
  1050   // add a default value for it here.
  1051   set_java_compiler(false);
  1052   _mode                      = mode;
  1054   // Ensure Agent_OnLoad has the correct initial values.
  1055   // This may not be the final mode; mode may change later in onload phase.
  1056   PropertyList_unique_add(&_system_properties, "java.vm.info",
  1057                           (char*)VM_Version::vm_info_string(), false);
  1059   UseInterpreter             = true;
  1060   UseCompiler                = true;
  1061   UseLoopCounter             = true;
  1063 #ifndef ZERO
  1064   // Turn these off for mixed and comp.  Leave them on for Zero.
  1065   if (FLAG_IS_DEFAULT(UseFastAccessorMethods)) {
  1066     UseFastAccessorMethods = (mode == _int);
  1068   if (FLAG_IS_DEFAULT(UseFastEmptyMethods)) {
  1069     UseFastEmptyMethods = (mode == _int);
  1071 #endif
  1073   // Default values may be platform/compiler dependent -
  1074   // use the saved values
  1075   ClipInlining               = Arguments::_ClipInlining;
  1076   AlwaysCompileLoopMethods   = Arguments::_AlwaysCompileLoopMethods;
  1077   UseOnStackReplacement      = Arguments::_UseOnStackReplacement;
  1078   BackgroundCompilation      = Arguments::_BackgroundCompilation;
  1080   // Change from defaults based on mode
  1081   switch (mode) {
  1082   default:
  1083     ShouldNotReachHere();
  1084     break;
  1085   case _int:
  1086     UseCompiler              = false;
  1087     UseLoopCounter           = false;
  1088     AlwaysCompileLoopMethods = false;
  1089     UseOnStackReplacement    = false;
  1090     break;
  1091   case _mixed:
  1092     // same as default
  1093     break;
  1094   case _comp:
  1095     UseInterpreter           = false;
  1096     BackgroundCompilation    = false;
  1097     ClipInlining             = false;
  1098     // Be much more aggressive in tiered mode with -Xcomp and exercise C2 more.
  1099     // We will first compile a level 3 version (C1 with full profiling), then do one invocation of it and
  1100     // compile a level 4 (C2) and then continue executing it.
  1101     if (TieredCompilation) {
  1102       Tier3InvokeNotifyFreqLog = 0;
  1103       Tier4InvocationThreshold = 0;
  1105     break;
  1109 #if defined(COMPILER2) || defined(_LP64) || !INCLUDE_CDS
  1110 // Conflict: required to use shared spaces (-Xshare:on), but
  1111 // incompatible command line options were chosen.
  1113 static void no_shared_spaces() {
  1114   if (RequireSharedSpaces) {
  1115     jio_fprintf(defaultStream::error_stream(),
  1116       "Class data sharing is inconsistent with other specified options.\n");
  1117     vm_exit_during_initialization("Unable to use shared archive.", NULL);
  1118   } else {
  1119     FLAG_SET_DEFAULT(UseSharedSpaces, false);
  1122 #endif
  1124 void Arguments::set_tiered_flags() {
  1125   // With tiered, set default policy to AdvancedThresholdPolicy, which is 3.
  1126   if (FLAG_IS_DEFAULT(CompilationPolicyChoice)) {
  1127     FLAG_SET_DEFAULT(CompilationPolicyChoice, 3);
  1129   if (CompilationPolicyChoice < 2) {
  1130     vm_exit_during_initialization(
  1131       "Incompatible compilation policy selected", NULL);
  1133   // Increase the code cache size - tiered compiles a lot more.
  1134   if (FLAG_IS_DEFAULT(ReservedCodeCacheSize)) {
  1135     FLAG_SET_DEFAULT(ReservedCodeCacheSize, ReservedCodeCacheSize * 5);
  1137   if (!UseInterpreter) { // -Xcomp
  1138     Tier3InvokeNotifyFreqLog = 0;
  1139     Tier4InvocationThreshold = 0;
  1143 #if INCLUDE_ALL_GCS
  1144 static void disable_adaptive_size_policy(const char* collector_name) {
  1145   if (UseAdaptiveSizePolicy) {
  1146     if (FLAG_IS_CMDLINE(UseAdaptiveSizePolicy)) {
  1147       warning("disabling UseAdaptiveSizePolicy; it is incompatible with %s.",
  1148               collector_name);
  1150     FLAG_SET_DEFAULT(UseAdaptiveSizePolicy, false);
  1154 void Arguments::set_parnew_gc_flags() {
  1155   assert(!UseSerialGC && !UseParallelOldGC && !UseParallelGC && !UseG1GC,
  1156          "control point invariant");
  1157   assert(UseParNewGC, "Error");
  1159   // Turn off AdaptiveSizePolicy for parnew until it is complete.
  1160   disable_adaptive_size_policy("UseParNewGC");
  1162   if (FLAG_IS_DEFAULT(ParallelGCThreads)) {
  1163     FLAG_SET_DEFAULT(ParallelGCThreads, Abstract_VM_Version::parallel_worker_threads());
  1164     assert(ParallelGCThreads > 0, "We should always have at least one thread by default");
  1165   } else if (ParallelGCThreads == 0) {
  1166     jio_fprintf(defaultStream::error_stream(),
  1167         "The ParNew GC can not be combined with -XX:ParallelGCThreads=0\n");
  1168     vm_exit(1);
  1171   // By default YoungPLABSize and OldPLABSize are set to 4096 and 1024 respectively,
  1172   // these settings are default for Parallel Scavenger. For ParNew+Tenured configuration
  1173   // we set them to 1024 and 1024.
  1174   // See CR 6362902.
  1175   if (FLAG_IS_DEFAULT(YoungPLABSize)) {
  1176     FLAG_SET_DEFAULT(YoungPLABSize, (intx)1024);
  1178   if (FLAG_IS_DEFAULT(OldPLABSize)) {
  1179     FLAG_SET_DEFAULT(OldPLABSize, (intx)1024);
  1182   // AlwaysTenure flag should make ParNew promote all at first collection.
  1183   // See CR 6362902.
  1184   if (AlwaysTenure) {
  1185     FLAG_SET_CMDLINE(uintx, MaxTenuringThreshold, 0);
  1187   // When using compressed oops, we use local overflow stacks,
  1188   // rather than using a global overflow list chained through
  1189   // the klass word of the object's pre-image.
  1190   if (UseCompressedOops && !ParGCUseLocalOverflow) {
  1191     if (!FLAG_IS_DEFAULT(ParGCUseLocalOverflow)) {
  1192       warning("Forcing +ParGCUseLocalOverflow: needed if using compressed references");
  1194     FLAG_SET_DEFAULT(ParGCUseLocalOverflow, true);
  1196   assert(ParGCUseLocalOverflow || !UseCompressedOops, "Error");
  1199 // Adjust some sizes to suit CMS and/or ParNew needs; these work well on
  1200 // sparc/solaris for certain applications, but would gain from
  1201 // further optimization and tuning efforts, and would almost
  1202 // certainly gain from analysis of platform and environment.
  1203 void Arguments::set_cms_and_parnew_gc_flags() {
  1204   assert(!UseSerialGC && !UseParallelOldGC && !UseParallelGC, "Error");
  1205   assert(UseConcMarkSweepGC, "CMS is expected to be on here");
  1207   // If we are using CMS, we prefer to UseParNewGC,
  1208   // unless explicitly forbidden.
  1209   if (FLAG_IS_DEFAULT(UseParNewGC)) {
  1210     FLAG_SET_ERGO(bool, UseParNewGC, true);
  1213   // Turn off AdaptiveSizePolicy by default for cms until it is complete.
  1214   disable_adaptive_size_policy("UseConcMarkSweepGC");
  1216   // In either case, adjust ParallelGCThreads and/or UseParNewGC
  1217   // as needed.
  1218   if (UseParNewGC) {
  1219     set_parnew_gc_flags();
  1222   size_t max_heap = align_size_down(MaxHeapSize,
  1223                                     CardTableRS::ct_max_alignment_constraint());
  1225   // Now make adjustments for CMS
  1226   intx   tenuring_default = (intx)6;
  1227   size_t young_gen_per_worker = CMSYoungGenPerWorker;
  1229   // Preferred young gen size for "short" pauses:
  1230   // upper bound depends on # of threads and NewRatio.
  1231   const uintx parallel_gc_threads =
  1232     (ParallelGCThreads == 0 ? 1 : ParallelGCThreads);
  1233   const size_t preferred_max_new_size_unaligned =
  1234     MIN2(max_heap/(NewRatio+1), ScaleForWordSize(young_gen_per_worker * parallel_gc_threads));
  1235   size_t preferred_max_new_size =
  1236     align_size_up(preferred_max_new_size_unaligned, os::vm_page_size());
  1238   // Unless explicitly requested otherwise, size young gen
  1239   // for "short" pauses ~ CMSYoungGenPerWorker*ParallelGCThreads
  1241   // If either MaxNewSize or NewRatio is set on the command line,
  1242   // assume the user is trying to set the size of the young gen.
  1243   if (FLAG_IS_DEFAULT(MaxNewSize) && FLAG_IS_DEFAULT(NewRatio)) {
  1245     // Set MaxNewSize to our calculated preferred_max_new_size unless
  1246     // NewSize was set on the command line and it is larger than
  1247     // preferred_max_new_size.
  1248     if (!FLAG_IS_DEFAULT(NewSize)) {   // NewSize explicitly set at command-line
  1249       FLAG_SET_ERGO(uintx, MaxNewSize, MAX2(NewSize, preferred_max_new_size));
  1250     } else {
  1251       FLAG_SET_ERGO(uintx, MaxNewSize, preferred_max_new_size);
  1253     if (PrintGCDetails && Verbose) {
  1254       // Too early to use gclog_or_tty
  1255       tty->print_cr("CMS ergo set MaxNewSize: " SIZE_FORMAT, MaxNewSize);
  1258     // Code along this path potentially sets NewSize and OldSize
  1259     if (PrintGCDetails && Verbose) {
  1260       // Too early to use gclog_or_tty
  1261       tty->print_cr("CMS set min_heap_size: " SIZE_FORMAT
  1262            " initial_heap_size:  " SIZE_FORMAT
  1263            " max_heap: " SIZE_FORMAT,
  1264            min_heap_size(), InitialHeapSize, max_heap);
  1266     size_t min_new = preferred_max_new_size;
  1267     if (FLAG_IS_CMDLINE(NewSize)) {
  1268       min_new = NewSize;
  1270     if (max_heap > min_new && min_heap_size() > min_new) {
  1271       // Unless explicitly requested otherwise, make young gen
  1272       // at least min_new, and at most preferred_max_new_size.
  1273       if (FLAG_IS_DEFAULT(NewSize)) {
  1274         FLAG_SET_ERGO(uintx, NewSize, MAX2(NewSize, min_new));
  1275         FLAG_SET_ERGO(uintx, NewSize, MIN2(preferred_max_new_size, NewSize));
  1276         if (PrintGCDetails && Verbose) {
  1277           // Too early to use gclog_or_tty
  1278           tty->print_cr("CMS ergo set NewSize: " SIZE_FORMAT, NewSize);
  1281       // Unless explicitly requested otherwise, size old gen
  1282       // so it's NewRatio x of NewSize.
  1283       if (FLAG_IS_DEFAULT(OldSize)) {
  1284         if (max_heap > NewSize) {
  1285           FLAG_SET_ERGO(uintx, OldSize, MIN2(NewRatio*NewSize, max_heap - NewSize));
  1286           if (PrintGCDetails && Verbose) {
  1287             // Too early to use gclog_or_tty
  1288             tty->print_cr("CMS ergo set OldSize: " SIZE_FORMAT, OldSize);
  1294   // Unless explicitly requested otherwise, definitely
  1295   // promote all objects surviving "tenuring_default" scavenges.
  1296   if (FLAG_IS_DEFAULT(MaxTenuringThreshold) &&
  1297       FLAG_IS_DEFAULT(SurvivorRatio)) {
  1298     FLAG_SET_ERGO(uintx, MaxTenuringThreshold, tenuring_default);
  1300   // If we decided above (or user explicitly requested)
  1301   // `promote all' (via MaxTenuringThreshold := 0),
  1302   // prefer minuscule survivor spaces so as not to waste
  1303   // space for (non-existent) survivors
  1304   if (FLAG_IS_DEFAULT(SurvivorRatio) && MaxTenuringThreshold == 0) {
  1305     FLAG_SET_ERGO(uintx, SurvivorRatio, MAX2((uintx)1024, SurvivorRatio));
  1307   // If OldPLABSize is set and CMSParPromoteBlocksToClaim is not,
  1308   // set CMSParPromoteBlocksToClaim equal to OldPLABSize.
  1309   // This is done in order to make ParNew+CMS configuration to work
  1310   // with YoungPLABSize and OldPLABSize options.
  1311   // See CR 6362902.
  1312   if (!FLAG_IS_DEFAULT(OldPLABSize)) {
  1313     if (FLAG_IS_DEFAULT(CMSParPromoteBlocksToClaim)) {
  1314       // OldPLABSize is not the default value but CMSParPromoteBlocksToClaim
  1315       // is.  In this situtation let CMSParPromoteBlocksToClaim follow
  1316       // the value (either from the command line or ergonomics) of
  1317       // OldPLABSize.  Following OldPLABSize is an ergonomics decision.
  1318       FLAG_SET_ERGO(uintx, CMSParPromoteBlocksToClaim, OldPLABSize);
  1319     } else {
  1320       // OldPLABSize and CMSParPromoteBlocksToClaim are both set.
  1321       // CMSParPromoteBlocksToClaim is a collector-specific flag, so
  1322       // we'll let it to take precedence.
  1323       jio_fprintf(defaultStream::error_stream(),
  1324                   "Both OldPLABSize and CMSParPromoteBlocksToClaim"
  1325                   " options are specified for the CMS collector."
  1326                   " CMSParPromoteBlocksToClaim will take precedence.\n");
  1329   if (!FLAG_IS_DEFAULT(ResizeOldPLAB) && !ResizeOldPLAB) {
  1330     // OldPLAB sizing manually turned off: Use a larger default setting,
  1331     // unless it was manually specified. This is because a too-low value
  1332     // will slow down scavenges.
  1333     if (FLAG_IS_DEFAULT(CMSParPromoteBlocksToClaim)) {
  1334       FLAG_SET_ERGO(uintx, CMSParPromoteBlocksToClaim, 50); // default value before 6631166
  1337   // Overwrite OldPLABSize which is the variable we will internally use everywhere.
  1338   FLAG_SET_ERGO(uintx, OldPLABSize, CMSParPromoteBlocksToClaim);
  1339   // If either of the static initialization defaults have changed, note this
  1340   // modification.
  1341   if (!FLAG_IS_DEFAULT(CMSParPromoteBlocksToClaim) || !FLAG_IS_DEFAULT(OldPLABWeight)) {
  1342     CFLS_LAB::modify_initialization(OldPLABSize, OldPLABWeight);
  1344   if (PrintGCDetails && Verbose) {
  1345     tty->print_cr("MarkStackSize: %uk  MarkStackSizeMax: %uk",
  1346       (unsigned int) (MarkStackSize / K), (uint) (MarkStackSizeMax / K));
  1347     tty->print_cr("ConcGCThreads: %u", (uint) ConcGCThreads);
  1350 #endif // INCLUDE_ALL_GCS
  1352 void set_object_alignment() {
  1353   // Object alignment.
  1354   assert(is_power_of_2(ObjectAlignmentInBytes), "ObjectAlignmentInBytes must be power of 2");
  1355   MinObjAlignmentInBytes     = ObjectAlignmentInBytes;
  1356   assert(MinObjAlignmentInBytes >= HeapWordsPerLong * HeapWordSize, "ObjectAlignmentInBytes value is too small");
  1357   MinObjAlignment            = MinObjAlignmentInBytes / HeapWordSize;
  1358   assert(MinObjAlignmentInBytes == MinObjAlignment * HeapWordSize, "ObjectAlignmentInBytes value is incorrect");
  1359   MinObjAlignmentInBytesMask = MinObjAlignmentInBytes - 1;
  1361   LogMinObjAlignmentInBytes  = exact_log2(ObjectAlignmentInBytes);
  1362   LogMinObjAlignment         = LogMinObjAlignmentInBytes - LogHeapWordSize;
  1364   // Oop encoding heap max
  1365   OopEncodingHeapMax = (uint64_t(max_juint) + 1) << LogMinObjAlignmentInBytes;
  1367 #if INCLUDE_ALL_GCS
  1368   // Set CMS global values
  1369   CompactibleFreeListSpace::set_cms_values();
  1370 #endif // INCLUDE_ALL_GCS
  1373 bool verify_object_alignment() {
  1374   // Object alignment.
  1375   if (!is_power_of_2(ObjectAlignmentInBytes)) {
  1376     jio_fprintf(defaultStream::error_stream(),
  1377                 "error: ObjectAlignmentInBytes=%d must be power of 2\n",
  1378                 (int)ObjectAlignmentInBytes);
  1379     return false;
  1381   if ((int)ObjectAlignmentInBytes < BytesPerLong) {
  1382     jio_fprintf(defaultStream::error_stream(),
  1383                 "error: ObjectAlignmentInBytes=%d must be greater or equal %d\n",
  1384                 (int)ObjectAlignmentInBytes, BytesPerLong);
  1385     return false;
  1387   // It does not make sense to have big object alignment
  1388   // since a space lost due to alignment will be greater
  1389   // then a saved space from compressed oops.
  1390   if ((int)ObjectAlignmentInBytes > 256) {
  1391     jio_fprintf(defaultStream::error_stream(),
  1392                 "error: ObjectAlignmentInBytes=%d must not be greater than 256\n",
  1393                 (int)ObjectAlignmentInBytes);
  1394     return false;
  1396   // In case page size is very small.
  1397   if ((int)ObjectAlignmentInBytes >= os::vm_page_size()) {
  1398     jio_fprintf(defaultStream::error_stream(),
  1399                 "error: ObjectAlignmentInBytes=%d must be less than page size %d\n",
  1400                 (int)ObjectAlignmentInBytes, os::vm_page_size());
  1401     return false;
  1403   if(SurvivorAlignmentInBytes == 0) {
  1404     SurvivorAlignmentInBytes = ObjectAlignmentInBytes;
  1405   } else {
  1406     if (!is_power_of_2(SurvivorAlignmentInBytes)) {
  1407       jio_fprintf(defaultStream::error_stream(),
  1408             "error: SurvivorAlignmentInBytes=%d must be power of 2\n",
  1409             (int)SurvivorAlignmentInBytes);
  1410       return false;
  1412     if (SurvivorAlignmentInBytes < ObjectAlignmentInBytes) {
  1413       jio_fprintf(defaultStream::error_stream(),
  1414           "error: SurvivorAlignmentInBytes=%d must be greater than ObjectAlignmentInBytes=%d \n",
  1415           (int)SurvivorAlignmentInBytes, (int)ObjectAlignmentInBytes);
  1416       return false;
  1419   return true;
  1422 size_t Arguments::max_heap_for_compressed_oops() {
  1423   // Avoid sign flip.
  1424   assert(OopEncodingHeapMax > (uint64_t)os::vm_page_size(), "Unusual page size");
  1425   // We need to fit both the NULL page and the heap into the memory budget, while
  1426   // keeping alignment constraints of the heap. To guarantee the latter, as the
  1427   // NULL page is located before the heap, we pad the NULL page to the conservative
  1428   // maximum alignment that the GC may ever impose upon the heap.
  1429   size_t displacement_due_to_null_page = align_size_up_(os::vm_page_size(),
  1430                                                         _conservative_max_heap_alignment);
  1432   LP64_ONLY(return OopEncodingHeapMax - displacement_due_to_null_page);
  1433   NOT_LP64(ShouldNotReachHere(); return 0);
  1436 bool Arguments::should_auto_select_low_pause_collector() {
  1437   if (UseAutoGCSelectPolicy &&
  1438       !FLAG_IS_DEFAULT(MaxGCPauseMillis) &&
  1439       (MaxGCPauseMillis <= AutoGCSelectPauseMillis)) {
  1440     if (PrintGCDetails) {
  1441       // Cannot use gclog_or_tty yet.
  1442       tty->print_cr("Automatic selection of the low pause collector"
  1443        " based on pause goal of %d (ms)", (int) MaxGCPauseMillis);
  1445     return true;
  1447   return false;
  1450 void Arguments::set_use_compressed_oops() {
  1451 #ifndef ZERO
  1452 #ifdef _LP64
  1453   // MaxHeapSize is not set up properly at this point, but
  1454   // the only value that can override MaxHeapSize if we are
  1455   // to use UseCompressedOops is InitialHeapSize.
  1456   size_t max_heap_size = MAX2(MaxHeapSize, InitialHeapSize);
  1458   if (max_heap_size <= max_heap_for_compressed_oops()) {
  1459 #if !defined(COMPILER1) || defined(TIERED)
  1460     if (FLAG_IS_DEFAULT(UseCompressedOops)) {
  1461       FLAG_SET_ERGO(bool, UseCompressedOops, true);
  1463 #endif
  1464 #ifdef _WIN64
  1465     if (UseLargePages && UseCompressedOops) {
  1466       // Cannot allocate guard pages for implicit checks in indexed addressing
  1467       // mode, when large pages are specified on windows.
  1468       // This flag could be switched ON if narrow oop base address is set to 0,
  1469       // see code in Universe::initialize_heap().
  1470       Universe::set_narrow_oop_use_implicit_null_checks(false);
  1472 #endif //  _WIN64
  1473   } else {
  1474     if (UseCompressedOops && !FLAG_IS_DEFAULT(UseCompressedOops)) {
  1475       warning("Max heap size too large for Compressed Oops");
  1476       FLAG_SET_DEFAULT(UseCompressedOops, false);
  1477       FLAG_SET_DEFAULT(UseCompressedClassPointers, false);
  1480 #endif // _LP64
  1481 #endif // ZERO
  1485 // NOTE: set_use_compressed_klass_ptrs() must be called after calling
  1486 // set_use_compressed_oops().
  1487 void Arguments::set_use_compressed_klass_ptrs() {
  1488 #ifndef ZERO
  1489 #ifdef _LP64
  1490   // UseCompressedOops must be on for UseCompressedClassPointers to be on.
  1491   if (!UseCompressedOops) {
  1492     if (UseCompressedClassPointers) {
  1493       warning("UseCompressedClassPointers requires UseCompressedOops");
  1495     FLAG_SET_DEFAULT(UseCompressedClassPointers, false);
  1496   } else {
  1497     // Turn on UseCompressedClassPointers too
  1498     if (FLAG_IS_DEFAULT(UseCompressedClassPointers)) {
  1499       FLAG_SET_ERGO(bool, UseCompressedClassPointers, true);
  1501     // Check the CompressedClassSpaceSize to make sure we use compressed klass ptrs.
  1502     if (UseCompressedClassPointers) {
  1503       if (CompressedClassSpaceSize > KlassEncodingMetaspaceMax) {
  1504         warning("CompressedClassSpaceSize is too large for UseCompressedClassPointers");
  1505         FLAG_SET_DEFAULT(UseCompressedClassPointers, false);
  1509 #endif // _LP64
  1510 #endif // !ZERO
  1513 void Arguments::set_conservative_max_heap_alignment() {
  1514   // The conservative maximum required alignment for the heap is the maximum of
  1515   // the alignments imposed by several sources: any requirements from the heap
  1516   // itself, the collector policy and the maximum page size we may run the VM
  1517   // with.
  1518   size_t heap_alignment = GenCollectedHeap::conservative_max_heap_alignment();
  1519 #if INCLUDE_ALL_GCS
  1520   if (UseParallelGC) {
  1521     heap_alignment = ParallelScavengeHeap::conservative_max_heap_alignment();
  1522   } else if (UseG1GC) {
  1523     heap_alignment = G1CollectedHeap::conservative_max_heap_alignment();
  1525 #endif // INCLUDE_ALL_GCS
  1526   _conservative_max_heap_alignment = MAX4(heap_alignment,
  1527                                           (size_t)os::vm_allocation_granularity(),
  1528                                           os::max_page_size(),
  1529                                           CollectorPolicy::compute_heap_alignment());
  1532 void Arguments::set_ergonomics_flags() {
  1534   if (os::is_server_class_machine()) {
  1535     // If no other collector is requested explicitly,
  1536     // let the VM select the collector based on
  1537     // machine class and automatic selection policy.
  1538     if (!UseSerialGC &&
  1539         !UseConcMarkSweepGC &&
  1540         !UseG1GC &&
  1541         !UseParNewGC &&
  1542         FLAG_IS_DEFAULT(UseParallelGC)) {
  1543       if (should_auto_select_low_pause_collector()) {
  1544         FLAG_SET_ERGO(bool, UseConcMarkSweepGC, true);
  1545       } else {
  1546         FLAG_SET_ERGO(bool, UseParallelGC, true);
  1550 #ifdef COMPILER2
  1551   // Shared spaces work fine with other GCs but causes bytecode rewriting
  1552   // to be disabled, which hurts interpreter performance and decreases
  1553   // server performance.  When -server is specified, keep the default off
  1554   // unless it is asked for.  Future work: either add bytecode rewriting
  1555   // at link time, or rewrite bytecodes in non-shared methods.
  1556   if (!DumpSharedSpaces && !RequireSharedSpaces &&
  1557       (FLAG_IS_DEFAULT(UseSharedSpaces) || !UseSharedSpaces)) {
  1558     no_shared_spaces();
  1560 #endif
  1562   set_conservative_max_heap_alignment();
  1564 #ifndef ZERO
  1565 #ifdef _LP64
  1566   set_use_compressed_oops();
  1568   // set_use_compressed_klass_ptrs() must be called after calling
  1569   // set_use_compressed_oops().
  1570   set_use_compressed_klass_ptrs();
  1572   // Also checks that certain machines are slower with compressed oops
  1573   // in vm_version initialization code.
  1574 #endif // _LP64
  1575 #endif // !ZERO
  1578 void Arguments::set_parallel_gc_flags() {
  1579   assert(UseParallelGC || UseParallelOldGC, "Error");
  1580   // Enable ParallelOld unless it was explicitly disabled (cmd line or rc file).
  1581   if (FLAG_IS_DEFAULT(UseParallelOldGC)) {
  1582     FLAG_SET_DEFAULT(UseParallelOldGC, true);
  1584   FLAG_SET_DEFAULT(UseParallelGC, true);
  1586   // If no heap maximum was requested explicitly, use some reasonable fraction
  1587   // of the physical memory, up to a maximum of 1GB.
  1588   FLAG_SET_DEFAULT(ParallelGCThreads,
  1589                    Abstract_VM_Version::parallel_worker_threads());
  1590   if (ParallelGCThreads == 0) {
  1591     jio_fprintf(defaultStream::error_stream(),
  1592         "The Parallel GC can not be combined with -XX:ParallelGCThreads=0\n");
  1593     vm_exit(1);
  1596   if (UseAdaptiveSizePolicy) {
  1597     // We don't want to limit adaptive heap sizing's freedom to adjust the heap
  1598     // unless the user actually sets these flags.
  1599     if (FLAG_IS_DEFAULT(MinHeapFreeRatio)) {
  1600       FLAG_SET_DEFAULT(MinHeapFreeRatio, 0);
  1601       _min_heap_free_ratio = MinHeapFreeRatio;
  1603     if (FLAG_IS_DEFAULT(MaxHeapFreeRatio)) {
  1604       FLAG_SET_DEFAULT(MaxHeapFreeRatio, 100);
  1605       _max_heap_free_ratio = MaxHeapFreeRatio;
  1609   // If InitialSurvivorRatio or MinSurvivorRatio were not specified, but the
  1610   // SurvivorRatio has been set, reset their default values to SurvivorRatio +
  1611   // 2.  By doing this we make SurvivorRatio also work for Parallel Scavenger.
  1612   // See CR 6362902 for details.
  1613   if (!FLAG_IS_DEFAULT(SurvivorRatio)) {
  1614     if (FLAG_IS_DEFAULT(InitialSurvivorRatio)) {
  1615        FLAG_SET_DEFAULT(InitialSurvivorRatio, SurvivorRatio + 2);
  1617     if (FLAG_IS_DEFAULT(MinSurvivorRatio)) {
  1618       FLAG_SET_DEFAULT(MinSurvivorRatio, SurvivorRatio + 2);
  1622   if (UseParallelOldGC) {
  1623     // Par compact uses lower default values since they are treated as
  1624     // minimums.  These are different defaults because of the different
  1625     // interpretation and are not ergonomically set.
  1626     if (FLAG_IS_DEFAULT(MarkSweepDeadRatio)) {
  1627       FLAG_SET_DEFAULT(MarkSweepDeadRatio, 1);
  1632 void Arguments::set_g1_gc_flags() {
  1633   assert(UseG1GC, "Error");
  1634 #ifdef COMPILER1
  1635   FastTLABRefill = false;
  1636 #endif
  1637   FLAG_SET_DEFAULT(ParallelGCThreads,
  1638                      Abstract_VM_Version::parallel_worker_threads());
  1639   if (ParallelGCThreads == 0) {
  1640     FLAG_SET_DEFAULT(ParallelGCThreads,
  1641                      Abstract_VM_Version::parallel_worker_threads());
  1644   // MarkStackSize will be set (if it hasn't been set by the user)
  1645   // when concurrent marking is initialized.
  1646   // Its value will be based upon the number of parallel marking threads.
  1647   // But we do set the maximum mark stack size here.
  1648   if (FLAG_IS_DEFAULT(MarkStackSizeMax)) {
  1649     FLAG_SET_DEFAULT(MarkStackSizeMax, 128 * TASKQUEUE_SIZE);
  1652   if (FLAG_IS_DEFAULT(GCTimeRatio) || GCTimeRatio == 0) {
  1653     // In G1, we want the default GC overhead goal to be higher than
  1654     // say in PS. So we set it here to 10%. Otherwise the heap might
  1655     // be expanded more aggressively than we would like it to. In
  1656     // fact, even 10% seems to not be high enough in some cases
  1657     // (especially small GC stress tests that the main thing they do
  1658     // is allocation). We might consider increase it further.
  1659     FLAG_SET_DEFAULT(GCTimeRatio, 9);
  1662   if (PrintGCDetails && Verbose) {
  1663     tty->print_cr("MarkStackSize: %uk  MarkStackSizeMax: %uk",
  1664       (unsigned int) (MarkStackSize / K), (uint) (MarkStackSizeMax / K));
  1665     tty->print_cr("ConcGCThreads: %u", (uint) ConcGCThreads);
  1669 julong Arguments::limit_by_allocatable_memory(julong limit) {
  1670   julong max_allocatable;
  1671   julong result = limit;
  1672   if (os::has_allocatable_memory_limit(&max_allocatable)) {
  1673     result = MIN2(result, max_allocatable / MaxVirtMemFraction);
  1675   return result;
  1678 void Arguments::set_heap_size() {
  1679   if (!FLAG_IS_DEFAULT(DefaultMaxRAMFraction)) {
  1680     // Deprecated flag
  1681     FLAG_SET_CMDLINE(uintx, MaxRAMFraction, DefaultMaxRAMFraction);
  1684   const julong phys_mem =
  1685     FLAG_IS_DEFAULT(MaxRAM) ? MIN2(os::physical_memory(), (julong)MaxRAM)
  1686                             : (julong)MaxRAM;
  1688   // If the maximum heap size has not been set with -Xmx,
  1689   // then set it as fraction of the size of physical memory,
  1690   // respecting the maximum and minimum sizes of the heap.
  1691   if (FLAG_IS_DEFAULT(MaxHeapSize)) {
  1692     julong reasonable_max = phys_mem / MaxRAMFraction;
  1694     if (phys_mem <= MaxHeapSize * MinRAMFraction) {
  1695       // Small physical memory, so use a minimum fraction of it for the heap
  1696       reasonable_max = phys_mem / MinRAMFraction;
  1697     } else {
  1698       // Not-small physical memory, so require a heap at least
  1699       // as large as MaxHeapSize
  1700       reasonable_max = MAX2(reasonable_max, (julong)MaxHeapSize);
  1702     if (!FLAG_IS_DEFAULT(ErgoHeapSizeLimit) && ErgoHeapSizeLimit != 0) {
  1703       // Limit the heap size to ErgoHeapSizeLimit
  1704       reasonable_max = MIN2(reasonable_max, (julong)ErgoHeapSizeLimit);
  1706     if (UseCompressedOops) {
  1707       // Limit the heap size to the maximum possible when using compressed oops
  1708       julong max_coop_heap = (julong)max_heap_for_compressed_oops();
  1709       if (HeapBaseMinAddress + MaxHeapSize < max_coop_heap) {
  1710         // Heap should be above HeapBaseMinAddress to get zero based compressed oops
  1711         // but it should be not less than default MaxHeapSize.
  1712         max_coop_heap -= HeapBaseMinAddress;
  1714       reasonable_max = MIN2(reasonable_max, max_coop_heap);
  1716     reasonable_max = limit_by_allocatable_memory(reasonable_max);
  1718     if (!FLAG_IS_DEFAULT(InitialHeapSize)) {
  1719       // An initial heap size was specified on the command line,
  1720       // so be sure that the maximum size is consistent.  Done
  1721       // after call to limit_by_allocatable_memory because that
  1722       // method might reduce the allocation size.
  1723       reasonable_max = MAX2(reasonable_max, (julong)InitialHeapSize);
  1726     if (PrintGCDetails && Verbose) {
  1727       // Cannot use gclog_or_tty yet.
  1728       tty->print_cr("  Maximum heap size " SIZE_FORMAT, (size_t) reasonable_max);
  1730     FLAG_SET_ERGO(uintx, MaxHeapSize, (uintx)reasonable_max);
  1733   // If the minimum or initial heap_size have not been set or requested to be set
  1734   // ergonomically, set them accordingly.
  1735   if (InitialHeapSize == 0 || min_heap_size() == 0) {
  1736     julong reasonable_minimum = (julong)(OldSize + NewSize);
  1738     reasonable_minimum = MIN2(reasonable_minimum, (julong)MaxHeapSize);
  1740     reasonable_minimum = limit_by_allocatable_memory(reasonable_minimum);
  1742     if (InitialHeapSize == 0) {
  1743       julong reasonable_initial = phys_mem / InitialRAMFraction;
  1745       reasonable_initial = MAX3(reasonable_initial, reasonable_minimum, (julong)min_heap_size());
  1746       reasonable_initial = MIN2(reasonable_initial, (julong)MaxHeapSize);
  1748       reasonable_initial = limit_by_allocatable_memory(reasonable_initial);
  1750       if (PrintGCDetails && Verbose) {
  1751         // Cannot use gclog_or_tty yet.
  1752         tty->print_cr("  Initial heap size " SIZE_FORMAT, (uintx)reasonable_initial);
  1754       FLAG_SET_ERGO(uintx, InitialHeapSize, (uintx)reasonable_initial);
  1756     // If the minimum heap size has not been set (via -Xms),
  1757     // synchronize with InitialHeapSize to avoid errors with the default value.
  1758     if (min_heap_size() == 0) {
  1759       set_min_heap_size(MIN2((uintx)reasonable_minimum, InitialHeapSize));
  1760       if (PrintGCDetails && Verbose) {
  1761         // Cannot use gclog_or_tty yet.
  1762         tty->print_cr("  Minimum heap size " SIZE_FORMAT, min_heap_size());
  1768 // This must be called after ergonomics because we want bytecode rewriting
  1769 // if the server compiler is used, or if UseSharedSpaces is disabled.
  1770 void Arguments::set_bytecode_flags() {
  1771   // Better not attempt to store into a read-only space.
  1772   if (UseSharedSpaces) {
  1773     FLAG_SET_DEFAULT(RewriteBytecodes, false);
  1774     FLAG_SET_DEFAULT(RewriteFrequentPairs, false);
  1777   if (!RewriteBytecodes) {
  1778     FLAG_SET_DEFAULT(RewriteFrequentPairs, false);
  1782 // Aggressive optimization flags  -XX:+AggressiveOpts
  1783 void Arguments::set_aggressive_opts_flags() {
  1784 #ifdef COMPILER2
  1785   if (AggressiveUnboxing) {
  1786     if (FLAG_IS_DEFAULT(EliminateAutoBox)) {
  1787       FLAG_SET_DEFAULT(EliminateAutoBox, true);
  1788     } else if (!EliminateAutoBox) {
  1789       // warning("AggressiveUnboxing is disabled because EliminateAutoBox is disabled");
  1790       AggressiveUnboxing = false;
  1792     if (FLAG_IS_DEFAULT(DoEscapeAnalysis)) {
  1793       FLAG_SET_DEFAULT(DoEscapeAnalysis, true);
  1794     } else if (!DoEscapeAnalysis) {
  1795       // warning("AggressiveUnboxing is disabled because DoEscapeAnalysis is disabled");
  1796       AggressiveUnboxing = false;
  1799   if (AggressiveOpts || !FLAG_IS_DEFAULT(AutoBoxCacheMax)) {
  1800     if (FLAG_IS_DEFAULT(EliminateAutoBox)) {
  1801       FLAG_SET_DEFAULT(EliminateAutoBox, true);
  1803     if (FLAG_IS_DEFAULT(AutoBoxCacheMax)) {
  1804       FLAG_SET_DEFAULT(AutoBoxCacheMax, 20000);
  1807     // Feed the cache size setting into the JDK
  1808     char buffer[1024];
  1809     sprintf(buffer, "java.lang.Integer.IntegerCache.high=" INTX_FORMAT, AutoBoxCacheMax);
  1810     add_property(buffer);
  1812   if (AggressiveOpts && FLAG_IS_DEFAULT(BiasedLockingStartupDelay)) {
  1813     FLAG_SET_DEFAULT(BiasedLockingStartupDelay, 500);
  1815 #endif
  1817   if (AggressiveOpts) {
  1818 // Sample flag setting code
  1819 //    if (FLAG_IS_DEFAULT(EliminateZeroing)) {
  1820 //      FLAG_SET_DEFAULT(EliminateZeroing, true);
  1821 //    }
  1825 //===========================================================================================================
  1826 // Parsing of java.compiler property
  1828 void Arguments::process_java_compiler_argument(char* arg) {
  1829   // For backwards compatibility, Djava.compiler=NONE or ""
  1830   // causes us to switch to -Xint mode UNLESS -Xdebug
  1831   // is also specified.
  1832   if (strlen(arg) == 0 || strcasecmp(arg, "NONE") == 0) {
  1833     set_java_compiler(true);    // "-Djava.compiler[=...]" most recently seen.
  1837 void Arguments::process_java_launcher_argument(const char* launcher, void* extra_info) {
  1838   _sun_java_launcher = strdup(launcher);
  1839   if (strcmp("gamma", _sun_java_launcher) == 0) {
  1840     _created_by_gamma_launcher = true;
  1844 bool Arguments::created_by_java_launcher() {
  1845   assert(_sun_java_launcher != NULL, "property must have value");
  1846   return strcmp(DEFAULT_JAVA_LAUNCHER, _sun_java_launcher) != 0;
  1849 bool Arguments::created_by_gamma_launcher() {
  1850   return _created_by_gamma_launcher;
  1853 //===========================================================================================================
  1854 // Parsing of main arguments
  1856 bool Arguments::verify_interval(uintx val, uintx min,
  1857                                 uintx max, const char* name) {
  1858   // Returns true iff value is in the inclusive interval [min..max]
  1859   // false, otherwise.
  1860   if (val >= min && val <= max) {
  1861     return true;
  1863   jio_fprintf(defaultStream::error_stream(),
  1864               "%s of " UINTX_FORMAT " is invalid; must be between " UINTX_FORMAT
  1865               " and " UINTX_FORMAT "\n",
  1866               name, val, min, max);
  1867   return false;
  1870 bool Arguments::verify_min_value(intx val, intx min, const char* name) {
  1871   // Returns true if given value is at least specified min threshold
  1872   // false, otherwise.
  1873   if (val >= min ) {
  1874       return true;
  1876   jio_fprintf(defaultStream::error_stream(),
  1877               "%s of " INTX_FORMAT " is invalid; must be at least " INTX_FORMAT "\n",
  1878               name, val, min);
  1879   return false;
  1882 bool Arguments::verify_percentage(uintx value, const char* name) {
  1883   if (is_percentage(value)) {
  1884     return true;
  1886   jio_fprintf(defaultStream::error_stream(),
  1887               "%s of " UINTX_FORMAT " is invalid; must be between 0 and 100\n",
  1888               name, value);
  1889   return false;
  1892 #if !INCLUDE_ALL_GCS
  1893 #ifdef ASSERT
  1894 static bool verify_serial_gc_flags() {
  1895   return (UseSerialGC &&
  1896         !(UseParNewGC || (UseConcMarkSweepGC || CMSIncrementalMode) || UseG1GC ||
  1897           UseParallelGC || UseParallelOldGC));
  1899 #endif // ASSERT
  1900 #endif // INCLUDE_ALL_GCS
  1902 // check if do gclog rotation
  1903 // +UseGCLogFileRotation is a must,
  1904 // no gc log rotation when log file not supplied or
  1905 // NumberOfGCLogFiles is 0
  1906 void check_gclog_consistency() {
  1907   if (UseGCLogFileRotation) {
  1908     if ((Arguments::gc_log_filename() == NULL) || (NumberOfGCLogFiles == 0)) {
  1909       jio_fprintf(defaultStream::output_stream(),
  1910                   "To enable GC log rotation, use -Xloggc:<filename> -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=<num_of_files>\n"
  1911                   "where num_of_file > 0\n"
  1912                   "GC log rotation is turned off\n");
  1913       UseGCLogFileRotation = false;
  1917   if (UseGCLogFileRotation && (GCLogFileSize != 0) && (GCLogFileSize < 8*K)) {
  1918     FLAG_SET_CMDLINE(uintx, GCLogFileSize, 8*K);
  1919     jio_fprintf(defaultStream::output_stream(),
  1920                 "GCLogFileSize changed to minimum 8K\n");
  1924 // This function is called for -Xloggc:<filename>, it can be used
  1925 // to check if a given file name(or string) conforms to the following
  1926 // specification:
  1927 // A valid string only contains "[A-Z][a-z][0-9].-_%[p|t]"
  1928 // %p and %t only allowed once. We only limit usage of filename not path
  1929 bool is_filename_valid(const char *file_name) {
  1930   const char* p = file_name;
  1931   char file_sep = os::file_separator()[0];
  1932   const char* cp;
  1933   // skip prefix path
  1934   for (cp = file_name; *cp != '\0'; cp++) {
  1935     if (*cp == '/' || *cp == file_sep) {
  1936       p = cp + 1;
  1940   int count_p = 0;
  1941   int count_t = 0;
  1942   while (*p != '\0') {
  1943     if ((*p >= '0' && *p <= '9') ||
  1944         (*p >= 'A' && *p <= 'Z') ||
  1945         (*p >= 'a' && *p <= 'z') ||
  1946          *p == '-'               ||
  1947          *p == '_'               ||
  1948          *p == '.') {
  1949        p++;
  1950        continue;
  1952     if (*p == '%') {
  1953       if(*(p + 1) == 'p') {
  1954         p += 2;
  1955         count_p ++;
  1956         continue;
  1958       if (*(p + 1) == 't') {
  1959         p += 2;
  1960         count_t ++;
  1961         continue;
  1964     return false;
  1966   return count_p < 2 && count_t < 2;
  1969 bool Arguments::verify_MinHeapFreeRatio(FormatBuffer<80>& err_msg, uintx min_heap_free_ratio) {
  1970   if (!is_percentage(min_heap_free_ratio)) {
  1971     err_msg.print("MinHeapFreeRatio must have a value between 0 and 100");
  1972     return false;
  1974   if (min_heap_free_ratio > MaxHeapFreeRatio) {
  1975     err_msg.print("MinHeapFreeRatio (" UINTX_FORMAT ") must be less than or "
  1976                   "equal to MaxHeapFreeRatio (" UINTX_FORMAT ")", min_heap_free_ratio,
  1977                   MaxHeapFreeRatio);
  1978     return false;
  1980   // This does not set the flag itself, but stores the value in a safe place for later usage.
  1981   _min_heap_free_ratio = min_heap_free_ratio;
  1982   return true;
  1985 bool Arguments::verify_MaxHeapFreeRatio(FormatBuffer<80>& err_msg, uintx max_heap_free_ratio) {
  1986   if (!is_percentage(max_heap_free_ratio)) {
  1987     err_msg.print("MaxHeapFreeRatio must have a value between 0 and 100");
  1988     return false;
  1990   if (max_heap_free_ratio < MinHeapFreeRatio) {
  1991     err_msg.print("MaxHeapFreeRatio (" UINTX_FORMAT ") must be greater than or "
  1992                   "equal to MinHeapFreeRatio (" UINTX_FORMAT ")", max_heap_free_ratio,
  1993                   MinHeapFreeRatio);
  1994     return false;
  1996   // This does not set the flag itself, but stores the value in a safe place for later usage.
  1997   _max_heap_free_ratio = max_heap_free_ratio;
  1998   return true;
  2001 // Check consistency of GC selection
  2002 bool Arguments::check_gc_consistency() {
  2003   check_gclog_consistency();
  2004   bool status = true;
  2005   // Ensure that the user has not selected conflicting sets
  2006   // of collectors. [Note: this check is merely a user convenience;
  2007   // collectors over-ride each other so that only a non-conflicting
  2008   // set is selected; however what the user gets is not what they
  2009   // may have expected from the combination they asked for. It's
  2010   // better to reduce user confusion by not allowing them to
  2011   // select conflicting combinations.
  2012   uint i = 0;
  2013   if (UseSerialGC)                       i++;
  2014   if (UseConcMarkSweepGC || UseParNewGC) i++;
  2015   if (UseParallelGC || UseParallelOldGC) i++;
  2016   if (UseG1GC)                           i++;
  2017   if (i > 1) {
  2018     jio_fprintf(defaultStream::error_stream(),
  2019                 "Conflicting collector combinations in option list; "
  2020                 "please refer to the release notes for the combinations "
  2021                 "allowed\n");
  2022     status = false;
  2024   return status;
  2027 void Arguments::check_deprecated_gcs() {
  2028   if (UseConcMarkSweepGC && !UseParNewGC) {
  2029     warning("Using the DefNew young collector with the CMS collector is deprecated "
  2030         "and will likely be removed in a future release");
  2033   if (UseParNewGC && !UseConcMarkSweepGC) {
  2034     // !UseConcMarkSweepGC means that we are using serial old gc. Unfortunately we don't
  2035     // set up UseSerialGC properly, so that can't be used in the check here.
  2036     warning("Using the ParNew young collector with the Serial old collector is deprecated "
  2037         "and will likely be removed in a future release");
  2040   if (CMSIncrementalMode) {
  2041     warning("Using incremental CMS is deprecated and will likely be removed in a future release");
  2045 void Arguments::check_deprecated_gc_flags() {
  2046   if (FLAG_IS_CMDLINE(MaxGCMinorPauseMillis)) {
  2047     warning("Using MaxGCMinorPauseMillis as minor pause goal is deprecated"
  2048             "and will likely be removed in future release");
  2050   if (FLAG_IS_CMDLINE(DefaultMaxRAMFraction)) {
  2051     warning("DefaultMaxRAMFraction is deprecated and will likely be removed in a future release. "
  2052         "Use MaxRAMFraction instead.");
  2054   if (FLAG_IS_CMDLINE(UseCMSCompactAtFullCollection)) {
  2055     warning("UseCMSCompactAtFullCollection is deprecated and will likely be removed in a future release.");
  2057   if (FLAG_IS_CMDLINE(CMSFullGCsBeforeCompaction)) {
  2058     warning("CMSFullGCsBeforeCompaction is deprecated and will likely be removed in a future release.");
  2060   if (FLAG_IS_CMDLINE(UseCMSCollectionPassing)) {
  2061     warning("UseCMSCollectionPassing is deprecated and will likely be removed in a future release.");
  2065 // Check stack pages settings
  2066 bool Arguments::check_stack_pages()
  2068   bool status = true;
  2069   status = status && verify_min_value(StackYellowPages, 1, "StackYellowPages");
  2070   status = status && verify_min_value(StackRedPages, 1, "StackRedPages");
  2071   // greater stack shadow pages can't generate instruction to bang stack
  2072   status = status && verify_interval(StackShadowPages, 1, 50, "StackShadowPages");
  2073   return status;
  2076 // Check the consistency of vm_init_args
  2077 bool Arguments::check_vm_args_consistency() {
  2078   // Method for adding checks for flag consistency.
  2079   // The intent is to warn the user of all possible conflicts,
  2080   // before returning an error.
  2081   // Note: Needs platform-dependent factoring.
  2082   bool status = true;
  2084   // Allow both -XX:-UseStackBanging and -XX:-UseBoundThreads in non-product
  2085   // builds so the cost of stack banging can be measured.
  2086 #if (defined(PRODUCT) && defined(SOLARIS))
  2087   if (!UseBoundThreads && !UseStackBanging) {
  2088     jio_fprintf(defaultStream::error_stream(),
  2089                 "-UseStackBanging conflicts with -UseBoundThreads\n");
  2091      status = false;
  2093 #endif
  2095   if (TLABRefillWasteFraction == 0) {
  2096     jio_fprintf(defaultStream::error_stream(),
  2097                 "TLABRefillWasteFraction should be a denominator, "
  2098                 "not " SIZE_FORMAT "\n",
  2099                 TLABRefillWasteFraction);
  2100     status = false;
  2103   status = status && verify_interval(AdaptiveSizePolicyWeight, 0, 100,
  2104                               "AdaptiveSizePolicyWeight");
  2105   status = status && verify_percentage(ThresholdTolerance, "ThresholdTolerance");
  2107   // Divide by bucket size to prevent a large size from causing rollover when
  2108   // calculating amount of memory needed to be allocated for the String table.
  2109   status = status && verify_interval(StringTableSize, minimumStringTableSize,
  2110     (max_uintx / StringTable::bucket_size()), "StringTable size");
  2112   status = status && verify_interval(SymbolTableSize, minimumSymbolTableSize,
  2113     (max_uintx / SymbolTable::bucket_size()), "SymbolTable size");
  2116     // Using "else if" below to avoid printing two error messages if min > max.
  2117     // This will also prevent us from reporting both min>100 and max>100 at the
  2118     // same time, but that is less annoying than printing two identical errors IMHO.
  2119     FormatBuffer<80> err_msg("%s","");
  2120     if (!verify_MinHeapFreeRatio(err_msg, MinHeapFreeRatio)) {
  2121       jio_fprintf(defaultStream::error_stream(), "%s\n", err_msg.buffer());
  2122       status = false;
  2123     } else if (!verify_MaxHeapFreeRatio(err_msg, MaxHeapFreeRatio)) {
  2124       jio_fprintf(defaultStream::error_stream(), "%s\n", err_msg.buffer());
  2125       status = false;
  2129   // Min/MaxMetaspaceFreeRatio
  2130   status = status && verify_percentage(MinMetaspaceFreeRatio, "MinMetaspaceFreeRatio");
  2131   status = status && verify_percentage(MaxMetaspaceFreeRatio, "MaxMetaspaceFreeRatio");
  2133   if (MinMetaspaceFreeRatio > MaxMetaspaceFreeRatio) {
  2134     jio_fprintf(defaultStream::error_stream(),
  2135                 "MinMetaspaceFreeRatio (%s" UINTX_FORMAT ") must be less than or "
  2136                 "equal to MaxMetaspaceFreeRatio (%s" UINTX_FORMAT ")\n",
  2137                 FLAG_IS_DEFAULT(MinMetaspaceFreeRatio) ? "Default: " : "",
  2138                 MinMetaspaceFreeRatio,
  2139                 FLAG_IS_DEFAULT(MaxMetaspaceFreeRatio) ? "Default: " : "",
  2140                 MaxMetaspaceFreeRatio);
  2141     status = false;
  2144   // Trying to keep 100% free is not practical
  2145   MinMetaspaceFreeRatio = MIN2(MinMetaspaceFreeRatio, (uintx) 99);
  2147   if (FullGCALot && FLAG_IS_DEFAULT(MarkSweepAlwaysCompactCount)) {
  2148     MarkSweepAlwaysCompactCount = 1;  // Move objects every gc.
  2151   if (UseParallelOldGC && ParallelOldGCSplitALot) {
  2152     // Settings to encourage splitting.
  2153     if (!FLAG_IS_CMDLINE(NewRatio)) {
  2154       FLAG_SET_CMDLINE(uintx, NewRatio, 2);
  2156     if (!FLAG_IS_CMDLINE(ScavengeBeforeFullGC)) {
  2157       FLAG_SET_CMDLINE(bool, ScavengeBeforeFullGC, false);
  2161   status = status && verify_percentage(GCHeapFreeLimit, "GCHeapFreeLimit");
  2162   status = status && verify_percentage(GCTimeLimit, "GCTimeLimit");
  2163   if (GCTimeLimit == 100) {
  2164     // Turn off gc-overhead-limit-exceeded checks
  2165     FLAG_SET_DEFAULT(UseGCOverheadLimit, false);
  2168   status = status && check_gc_consistency();
  2169   status = status && check_stack_pages();
  2171   if (CMSIncrementalMode) {
  2172     if (!UseConcMarkSweepGC) {
  2173       jio_fprintf(defaultStream::error_stream(),
  2174                   "error:  invalid argument combination.\n"
  2175                   "The CMS collector (-XX:+UseConcMarkSweepGC) must be "
  2176                   "selected in order\nto use CMSIncrementalMode.\n");
  2177       status = false;
  2178     } else {
  2179       status = status && verify_percentage(CMSIncrementalDutyCycle,
  2180                                   "CMSIncrementalDutyCycle");
  2181       status = status && verify_percentage(CMSIncrementalDutyCycleMin,
  2182                                   "CMSIncrementalDutyCycleMin");
  2183       status = status && verify_percentage(CMSIncrementalSafetyFactor,
  2184                                   "CMSIncrementalSafetyFactor");
  2185       status = status && verify_percentage(CMSIncrementalOffset,
  2186                                   "CMSIncrementalOffset");
  2187       status = status && verify_percentage(CMSExpAvgFactor,
  2188                                   "CMSExpAvgFactor");
  2189       // If it was not set on the command line, set
  2190       // CMSInitiatingOccupancyFraction to 1 so icms can initiate cycles early.
  2191       if (CMSInitiatingOccupancyFraction < 0) {
  2192         FLAG_SET_DEFAULT(CMSInitiatingOccupancyFraction, 1);
  2197   // CMS space iteration, which FLSVerifyAllHeapreferences entails,
  2198   // insists that we hold the requisite locks so that the iteration is
  2199   // MT-safe. For the verification at start-up and shut-down, we don't
  2200   // yet have a good way of acquiring and releasing these locks,
  2201   // which are not visible at the CollectedHeap level. We want to
  2202   // be able to acquire these locks and then do the iteration rather
  2203   // than just disable the lock verification. This will be fixed under
  2204   // bug 4788986.
  2205   if (UseConcMarkSweepGC && FLSVerifyAllHeapReferences) {
  2206     if (VerifyDuringStartup) {
  2207       warning("Heap verification at start-up disabled "
  2208               "(due to current incompatibility with FLSVerifyAllHeapReferences)");
  2209       VerifyDuringStartup = false; // Disable verification at start-up
  2212     if (VerifyBeforeExit) {
  2213       warning("Heap verification at shutdown disabled "
  2214               "(due to current incompatibility with FLSVerifyAllHeapReferences)");
  2215       VerifyBeforeExit = false; // Disable verification at shutdown
  2219   // Note: only executed in non-PRODUCT mode
  2220   if (!UseAsyncConcMarkSweepGC &&
  2221       (ExplicitGCInvokesConcurrent ||
  2222        ExplicitGCInvokesConcurrentAndUnloadsClasses)) {
  2223     jio_fprintf(defaultStream::error_stream(),
  2224                 "error: +ExplicitGCInvokesConcurrent[AndUnloadsClasses] conflicts"
  2225                 " with -UseAsyncConcMarkSweepGC");
  2226     status = false;
  2229   status = status && verify_min_value(ParGCArrayScanChunk, 1, "ParGCArrayScanChunk");
  2231 #if INCLUDE_ALL_GCS
  2232   if (UseG1GC) {
  2233     status = status && verify_percentage(G1NewSizePercent, "G1NewSizePercent");
  2234     status = status && verify_percentage(G1MaxNewSizePercent, "G1MaxNewSizePercent");
  2235     status = status && verify_interval(G1NewSizePercent, 0, G1MaxNewSizePercent, "G1NewSizePercent");
  2237     status = status && verify_percentage(InitiatingHeapOccupancyPercent,
  2238                                          "InitiatingHeapOccupancyPercent");
  2239     status = status && verify_min_value(G1RefProcDrainInterval, 1,
  2240                                         "G1RefProcDrainInterval");
  2241     status = status && verify_min_value((intx)G1ConcMarkStepDurationMillis, 1,
  2242                                         "G1ConcMarkStepDurationMillis");
  2243     status = status && verify_interval(G1ConcRSHotCardLimit, 0, max_jubyte,
  2244                                        "G1ConcRSHotCardLimit");
  2245     status = status && verify_interval(G1ConcRSLogCacheSize, 0, 31,
  2246                                        "G1ConcRSLogCacheSize");
  2247     status = status && verify_interval(StringDeduplicationAgeThreshold, 1, markOopDesc::max_age,
  2248                                        "StringDeduplicationAgeThreshold");
  2250   if (UseConcMarkSweepGC) {
  2251     status = status && verify_min_value(CMSOldPLABNumRefills, 1, "CMSOldPLABNumRefills");
  2252     status = status && verify_min_value(CMSOldPLABToleranceFactor, 1, "CMSOldPLABToleranceFactor");
  2253     status = status && verify_min_value(CMSOldPLABMax, 1, "CMSOldPLABMax");
  2254     status = status && verify_interval(CMSOldPLABMin, 1, CMSOldPLABMax, "CMSOldPLABMin");
  2256     status = status && verify_min_value(CMSYoungGenPerWorker, 1, "CMSYoungGenPerWorker");
  2258     status = status && verify_min_value(CMSSamplingGrain, 1, "CMSSamplingGrain");
  2259     status = status && verify_interval(CMS_SweepWeight, 0, 100, "CMS_SweepWeight");
  2260     status = status && verify_interval(CMS_FLSWeight, 0, 100, "CMS_FLSWeight");
  2262     status = status && verify_interval(FLSCoalescePolicy, 0, 4, "FLSCoalescePolicy");
  2264     status = status && verify_min_value(CMSRescanMultiple, 1, "CMSRescanMultiple");
  2265     status = status && verify_min_value(CMSConcMarkMultiple, 1, "CMSConcMarkMultiple");
  2267     status = status && verify_interval(CMSPrecleanIter, 0, 9, "CMSPrecleanIter");
  2268     status = status && verify_min_value(CMSPrecleanDenominator, 1, "CMSPrecleanDenominator");
  2269     status = status && verify_interval(CMSPrecleanNumerator, 0, CMSPrecleanDenominator - 1, "CMSPrecleanNumerator");
  2271     status = status && verify_percentage(CMSBootstrapOccupancy, "CMSBootstrapOccupancy");
  2273     status = status && verify_min_value(CMSPrecleanThreshold, 100, "CMSPrecleanThreshold");
  2275     status = status && verify_percentage(CMSScheduleRemarkEdenPenetration, "CMSScheduleRemarkEdenPenetration");
  2276     status = status && verify_min_value(CMSScheduleRemarkSamplingRatio, 1, "CMSScheduleRemarkSamplingRatio");
  2277     status = status && verify_min_value(CMSBitMapYieldQuantum, 1, "CMSBitMapYieldQuantum");
  2278     status = status && verify_percentage(CMSTriggerRatio, "CMSTriggerRatio");
  2279     status = status && verify_percentage(CMSIsTooFullPercentage, "CMSIsTooFullPercentage");
  2282   if (UseParallelGC || UseParallelOldGC) {
  2283     status = status && verify_interval(ParallelOldDeadWoodLimiterMean, 0, 100, "ParallelOldDeadWoodLimiterMean");
  2284     status = status && verify_interval(ParallelOldDeadWoodLimiterStdDev, 0, 100, "ParallelOldDeadWoodLimiterStdDev");
  2286     status = status && verify_percentage(YoungGenerationSizeIncrement, "YoungGenerationSizeIncrement");
  2287     status = status && verify_percentage(TenuredGenerationSizeIncrement, "TenuredGenerationSizeIncrement");
  2289     status = status && verify_min_value(YoungGenerationSizeSupplementDecay, 1, "YoungGenerationSizeSupplementDecay");
  2290     status = status && verify_min_value(TenuredGenerationSizeSupplementDecay, 1, "TenuredGenerationSizeSupplementDecay");
  2292     status = status && verify_min_value(ParGCCardsPerStrideChunk, 1, "ParGCCardsPerStrideChunk");
  2294     status = status && verify_min_value(ParallelOldGCSplitInterval, 0, "ParallelOldGCSplitInterval");
  2296 #endif // INCLUDE_ALL_GCS
  2298   status = status && verify_interval(RefDiscoveryPolicy,
  2299                                      ReferenceProcessor::DiscoveryPolicyMin,
  2300                                      ReferenceProcessor::DiscoveryPolicyMax,
  2301                                      "RefDiscoveryPolicy");
  2303   // Limit the lower bound of this flag to 1 as it is used in a division
  2304   // expression.
  2305   status = status && verify_interval(TLABWasteTargetPercent,
  2306                                      1, 100, "TLABWasteTargetPercent");
  2308   status = status && verify_object_alignment();
  2310   status = status && verify_interval(CompressedClassSpaceSize, 1*M, 3*G,
  2311                                       "CompressedClassSpaceSize");
  2313   status = status && verify_interval(MarkStackSizeMax,
  2314                                   1, (max_jint - 1), "MarkStackSizeMax");
  2315   status = status && verify_interval(NUMAChunkResizeWeight, 0, 100, "NUMAChunkResizeWeight");
  2317   status = status && verify_min_value(LogEventsBufferEntries, 1, "LogEventsBufferEntries");
  2319   status = status && verify_min_value(HeapSizePerGCThread, (uintx) os::vm_page_size(), "HeapSizePerGCThread");
  2321   status = status && verify_min_value(GCTaskTimeStampEntries, 1, "GCTaskTimeStampEntries");
  2323   status = status && verify_percentage(ParallelGCBufferWastePct, "ParallelGCBufferWastePct");
  2324   status = status && verify_interval(TargetPLABWastePct, 1, 100, "TargetPLABWastePct");
  2326   status = status && verify_min_value(ParGCStridesPerThread, 1, "ParGCStridesPerThread");
  2328   status = status && verify_min_value(MinRAMFraction, 1, "MinRAMFraction");
  2329   status = status && verify_min_value(InitialRAMFraction, 1, "InitialRAMFraction");
  2330   status = status && verify_min_value(MaxRAMFraction, 1, "MaxRAMFraction");
  2331   status = status && verify_min_value(DefaultMaxRAMFraction, 1, "DefaultMaxRAMFraction");
  2333   status = status && verify_interval(AdaptiveTimeWeight, 0, 100, "AdaptiveTimeWeight");
  2334   status = status && verify_min_value(AdaptiveSizeDecrementScaleFactor, 1, "AdaptiveSizeDecrementScaleFactor");
  2336   status = status && verify_interval(TLABAllocationWeight, 0, 100, "TLABAllocationWeight");
  2337   status = status && verify_min_value(MinTLABSize, 1, "MinTLABSize");
  2338   status = status && verify_min_value(TLABRefillWasteFraction, 1, "TLABRefillWasteFraction");
  2340   status = status && verify_percentage(YoungGenerationSizeSupplement, "YoungGenerationSizeSupplement");
  2341   status = status && verify_percentage(TenuredGenerationSizeSupplement, "TenuredGenerationSizeSupplement");
  2343   // the "age" field in the oop header is 4 bits; do not want to pull in markOop.hpp
  2344   // just for that, so hardcode here.
  2345   status = status && verify_interval(MaxTenuringThreshold, 0, 15, "MaxTenuringThreshold");
  2346   status = status && verify_interval(InitialTenuringThreshold, 0, MaxTenuringThreshold, "MaxTenuringThreshold");
  2347   status = status && verify_percentage(TargetSurvivorRatio, "TargetSurvivorRatio");
  2348   status = status && verify_percentage(MarkSweepDeadRatio, "MarkSweepDeadRatio");
  2350   status = status && verify_min_value(MarkSweepAlwaysCompactCount, 1, "MarkSweepAlwaysCompactCount");
  2352   if (PrintNMTStatistics) {
  2353 #if INCLUDE_NMT
  2354     if (MemTracker::tracking_level() == MemTracker::NMT_off) {
  2355 #endif // INCLUDE_NMT
  2356       warning("PrintNMTStatistics is disabled, because native memory tracking is not enabled");
  2357       PrintNMTStatistics = false;
  2358 #if INCLUDE_NMT
  2360 #endif
  2363   // Need to limit the extent of the padding to reasonable size.
  2364   // 8K is well beyond the reasonable HW cache line size, even with the
  2365   // aggressive prefetching, while still leaving the room for segregating
  2366   // among the distinct pages.
  2367   if (ContendedPaddingWidth < 0 || ContendedPaddingWidth > 8192) {
  2368     jio_fprintf(defaultStream::error_stream(),
  2369                 "ContendedPaddingWidth=" INTX_FORMAT " must be in between %d and %d\n",
  2370                 ContendedPaddingWidth, 0, 8192);
  2371     status = false;
  2374   // Need to enforce the padding not to break the existing field alignments.
  2375   // It is sufficient to check against the largest type size.
  2376   if ((ContendedPaddingWidth % BytesPerLong) != 0) {
  2377     jio_fprintf(defaultStream::error_stream(),
  2378                 "ContendedPaddingWidth=" INTX_FORMAT " must be a multiple of %d\n",
  2379                 ContendedPaddingWidth, BytesPerLong);
  2380     status = false;
  2383   // Check lower bounds of the code cache
  2384   // Template Interpreter code is approximately 3X larger in debug builds.
  2385   uint min_code_cache_size = (CodeCacheMinimumUseSpace DEBUG_ONLY(* 3)) + CodeCacheMinimumFreeSpace;
  2386   if (InitialCodeCacheSize < (uintx)os::vm_page_size()) {
  2387     jio_fprintf(defaultStream::error_stream(),
  2388                 "Invalid InitialCodeCacheSize=%dK. Must be at least %dK.\n", InitialCodeCacheSize/K,
  2389                 os::vm_page_size()/K);
  2390     status = false;
  2391   } else if (ReservedCodeCacheSize < InitialCodeCacheSize) {
  2392     jio_fprintf(defaultStream::error_stream(),
  2393                 "Invalid ReservedCodeCacheSize: %dK. Must be at least InitialCodeCacheSize=%dK.\n",
  2394                 ReservedCodeCacheSize/K, InitialCodeCacheSize/K);
  2395     status = false;
  2396   } else if (ReservedCodeCacheSize < min_code_cache_size) {
  2397     jio_fprintf(defaultStream::error_stream(),
  2398                 "Invalid ReservedCodeCacheSize=%dK. Must be at least %uK.\n", ReservedCodeCacheSize/K,
  2399                 min_code_cache_size/K);
  2400     status = false;
  2401   } else if (ReservedCodeCacheSize > 2*G) {
  2402     // Code cache size larger than MAXINT is not supported.
  2403     jio_fprintf(defaultStream::error_stream(),
  2404                 "Invalid ReservedCodeCacheSize=%dM. Must be at most %uM.\n", ReservedCodeCacheSize/M,
  2405                 (2*G)/M);
  2406     status = false;
  2409   status &= verify_interval(NmethodSweepFraction, 1, ReservedCodeCacheSize/K, "NmethodSweepFraction");
  2410   status &= verify_interval(NmethodSweepActivity, 0, 2000, "NmethodSweepActivity");
  2412   if (!FLAG_IS_DEFAULT(CICompilerCount) && !FLAG_IS_DEFAULT(CICompilerCountPerCPU) && CICompilerCountPerCPU) {
  2413     warning("The VM option CICompilerCountPerCPU overrides CICompilerCount.");
  2416   status &= check_vm_args_consistency_ext();
  2418   return status;
  2421 bool Arguments::is_bad_option(const JavaVMOption* option, jboolean ignore,
  2422   const char* option_type) {
  2423   if (ignore) return false;
  2425   const char* spacer = " ";
  2426   if (option_type == NULL) {
  2427     option_type = ++spacer; // Set both to the empty string.
  2430   if (os::obsolete_option(option)) {
  2431     jio_fprintf(defaultStream::error_stream(),
  2432                 "Obsolete %s%soption: %s\n", option_type, spacer,
  2433       option->optionString);
  2434     return false;
  2435   } else {
  2436     jio_fprintf(defaultStream::error_stream(),
  2437                 "Unrecognized %s%soption: %s\n", option_type, spacer,
  2438       option->optionString);
  2439     return true;
  2443 static const char* user_assertion_options[] = {
  2444   "-da", "-ea", "-disableassertions", "-enableassertions", 0
  2445 };
  2447 static const char* system_assertion_options[] = {
  2448   "-dsa", "-esa", "-disablesystemassertions", "-enablesystemassertions", 0
  2449 };
  2451 // Return true if any of the strings in null-terminated array 'names' matches.
  2452 // If tail_allowed is true, then the tail must begin with a colon; otherwise,
  2453 // the option must match exactly.
  2454 static bool match_option(const JavaVMOption* option, const char** names, const char** tail,
  2455   bool tail_allowed) {
  2456   for (/* empty */; *names != NULL; ++names) {
  2457     if (match_option(option, *names, tail)) {
  2458       if (**tail == '\0' || tail_allowed && **tail == ':') {
  2459         return true;
  2463   return false;
  2466 bool Arguments::parse_uintx(const char* value,
  2467                             uintx* uintx_arg,
  2468                             uintx min_size) {
  2470   // Check the sign first since atomull() parses only unsigned values.
  2471   bool value_is_positive = !(*value == '-');
  2473   if (value_is_positive) {
  2474     julong n;
  2475     bool good_return = atomull(value, &n);
  2476     if (good_return) {
  2477       bool above_minimum = n >= min_size;
  2478       bool value_is_too_large = n > max_uintx;
  2480       if (above_minimum && !value_is_too_large) {
  2481         *uintx_arg = n;
  2482         return true;
  2486   return false;
  2489 Arguments::ArgsRange Arguments::parse_memory_size(const char* s,
  2490                                                   julong* long_arg,
  2491                                                   julong min_size) {
  2492   if (!atomull(s, long_arg)) return arg_unreadable;
  2493   return check_memory_size(*long_arg, min_size);
  2496 // Parse JavaVMInitArgs structure
  2498 jint Arguments::parse_vm_init_args(const JavaVMInitArgs* args) {
  2499   // For components of the system classpath.
  2500   SysClassPath scp(Arguments::get_sysclasspath());
  2501   bool scp_assembly_required = false;
  2503   // Save default settings for some mode flags
  2504   Arguments::_AlwaysCompileLoopMethods = AlwaysCompileLoopMethods;
  2505   Arguments::_UseOnStackReplacement    = UseOnStackReplacement;
  2506   Arguments::_ClipInlining             = ClipInlining;
  2507   Arguments::_BackgroundCompilation    = BackgroundCompilation;
  2509   // Setup flags for mixed which is the default
  2510   set_mode_flags(_mixed);
  2512   // Parse JAVA_TOOL_OPTIONS environment variable (if present)
  2513   jint result = parse_java_tool_options_environment_variable(&scp, &scp_assembly_required);
  2514   if (result != JNI_OK) {
  2515     return result;
  2518   // Parse JavaVMInitArgs structure passed in
  2519   result = parse_each_vm_init_arg(args, &scp, &scp_assembly_required, Flag::COMMAND_LINE);
  2520   if (result != JNI_OK) {
  2521     return result;
  2524   // Parse _JAVA_OPTIONS environment variable (if present) (mimics classic VM)
  2525   result = parse_java_options_environment_variable(&scp, &scp_assembly_required);
  2526   if (result != JNI_OK) {
  2527     return result;
  2530   // Do final processing now that all arguments have been parsed
  2531   result = finalize_vm_init_args(&scp, scp_assembly_required);
  2532   if (result != JNI_OK) {
  2533     return result;
  2536   return JNI_OK;
  2539 // Checks if name in command-line argument -agent{lib,path}:name[=options]
  2540 // represents a valid HPROF of JDWP agent.  is_path==true denotes that we
  2541 // are dealing with -agentpath (case where name is a path), otherwise with
  2542 // -agentlib
  2543 bool valid_hprof_or_jdwp_agent(char *name, bool is_path) {
  2544   char *_name;
  2545   const char *_hprof = "hprof", *_jdwp = "jdwp";
  2546   size_t _len_hprof, _len_jdwp, _len_prefix;
  2548   if (is_path) {
  2549     if ((_name = strrchr(name, (int) *os::file_separator())) == NULL) {
  2550       return false;
  2553     _name++;  // skip past last path separator
  2554     _len_prefix = strlen(JNI_LIB_PREFIX);
  2556     if (strncmp(_name, JNI_LIB_PREFIX, _len_prefix) != 0) {
  2557       return false;
  2560     _name += _len_prefix;
  2561     _len_hprof = strlen(_hprof);
  2562     _len_jdwp = strlen(_jdwp);
  2564     if (strncmp(_name, _hprof, _len_hprof) == 0) {
  2565       _name += _len_hprof;
  2567     else if (strncmp(_name, _jdwp, _len_jdwp) == 0) {
  2568       _name += _len_jdwp;
  2570     else {
  2571       return false;
  2574     if (strcmp(_name, JNI_LIB_SUFFIX) != 0) {
  2575       return false;
  2578     return true;
  2581   if (strcmp(name, _hprof) == 0 || strcmp(name, _jdwp) == 0) {
  2582     return true;
  2585   return false;
  2588 jint Arguments::parse_each_vm_init_arg(const JavaVMInitArgs* args,
  2589                                        SysClassPath* scp_p,
  2590                                        bool* scp_assembly_required_p,
  2591                                        Flag::Flags origin) {
  2592   // Remaining part of option string
  2593   const char* tail;
  2595   // iterate over arguments
  2596   for (int index = 0; index < args->nOptions; index++) {
  2597     bool is_absolute_path = false;  // for -agentpath vs -agentlib
  2599     const JavaVMOption* option = args->options + index;
  2601     if (!match_option(option, "-Djava.class.path", &tail) &&
  2602         !match_option(option, "-Dsun.java.command", &tail) &&
  2603         !match_option(option, "-Dsun.java.launcher", &tail)) {
  2605         // add all jvm options to the jvm_args string. This string
  2606         // is used later to set the java.vm.args PerfData string constant.
  2607         // the -Djava.class.path and the -Dsun.java.command options are
  2608         // omitted from jvm_args string as each have their own PerfData
  2609         // string constant object.
  2610         build_jvm_args(option->optionString);
  2613     // -verbose:[class/gc/jni]
  2614     if (match_option(option, "-verbose", &tail)) {
  2615       if (!strcmp(tail, ":class") || !strcmp(tail, "")) {
  2616         FLAG_SET_CMDLINE(bool, TraceClassLoading, true);
  2617         FLAG_SET_CMDLINE(bool, TraceClassUnloading, true);
  2618       } else if (!strcmp(tail, ":gc")) {
  2619         FLAG_SET_CMDLINE(bool, PrintGC, true);
  2620       } else if (!strcmp(tail, ":jni")) {
  2621         FLAG_SET_CMDLINE(bool, PrintJNIResolving, true);
  2623     // -da / -ea / -disableassertions / -enableassertions
  2624     // These accept an optional class/package name separated by a colon, e.g.,
  2625     // -da:java.lang.Thread.
  2626     } else if (match_option(option, user_assertion_options, &tail, true)) {
  2627       bool enable = option->optionString[1] == 'e';     // char after '-' is 'e'
  2628       if (*tail == '\0') {
  2629         JavaAssertions::setUserClassDefault(enable);
  2630       } else {
  2631         assert(*tail == ':', "bogus match by match_option()");
  2632         JavaAssertions::addOption(tail + 1, enable);
  2634     // -dsa / -esa / -disablesystemassertions / -enablesystemassertions
  2635     } else if (match_option(option, system_assertion_options, &tail, false)) {
  2636       bool enable = option->optionString[1] == 'e';     // char after '-' is 'e'
  2637       JavaAssertions::setSystemClassDefault(enable);
  2638     // -bootclasspath:
  2639     } else if (match_option(option, "-Xbootclasspath:", &tail)) {
  2640       scp_p->reset_path(tail);
  2641       *scp_assembly_required_p = true;
  2642     // -bootclasspath/a:
  2643     } else if (match_option(option, "-Xbootclasspath/a:", &tail)) {
  2644       scp_p->add_suffix(tail);
  2645       *scp_assembly_required_p = true;
  2646     // -bootclasspath/p:
  2647     } else if (match_option(option, "-Xbootclasspath/p:", &tail)) {
  2648       scp_p->add_prefix(tail);
  2649       *scp_assembly_required_p = true;
  2650     // -Xrun
  2651     } else if (match_option(option, "-Xrun", &tail)) {
  2652       if (tail != NULL) {
  2653         const char* pos = strchr(tail, ':');
  2654         size_t len = (pos == NULL) ? strlen(tail) : pos - tail;
  2655         char* name = (char*)memcpy(NEW_C_HEAP_ARRAY(char, len + 1, mtInternal), tail, len);
  2656         name[len] = '\0';
  2658         char *options = NULL;
  2659         if(pos != NULL) {
  2660           size_t len2 = strlen(pos+1) + 1; // options start after ':'.  Final zero must be copied.
  2661           options = (char*)memcpy(NEW_C_HEAP_ARRAY(char, len2, mtInternal), pos+1, len2);
  2663 #if !INCLUDE_JVMTI
  2664         if ((strcmp(name, "hprof") == 0) || (strcmp(name, "jdwp") == 0)) {
  2665           jio_fprintf(defaultStream::error_stream(),
  2666             "Profiling and debugging agents are not supported in this VM\n");
  2667           return JNI_ERR;
  2669 #endif // !INCLUDE_JVMTI
  2670         add_init_library(name, options);
  2672     // -agentlib and -agentpath
  2673     } else if (match_option(option, "-agentlib:", &tail) ||
  2674           (is_absolute_path = match_option(option, "-agentpath:", &tail))) {
  2675       if(tail != NULL) {
  2676         const char* pos = strchr(tail, '=');
  2677         size_t len = (pos == NULL) ? strlen(tail) : pos - tail;
  2678         char* name = strncpy(NEW_C_HEAP_ARRAY(char, len + 1, mtInternal), tail, len);
  2679         name[len] = '\0';
  2681         char *options = NULL;
  2682         if(pos != NULL) {
  2683           options = strcpy(NEW_C_HEAP_ARRAY(char, strlen(pos + 1) + 1, mtInternal), pos + 1);
  2685 #if !INCLUDE_JVMTI
  2686         if (valid_hprof_or_jdwp_agent(name, is_absolute_path)) {
  2687           jio_fprintf(defaultStream::error_stream(),
  2688             "Profiling and debugging agents are not supported in this VM\n");
  2689           return JNI_ERR;
  2691 #endif // !INCLUDE_JVMTI
  2692         add_init_agent(name, options, is_absolute_path);
  2694     // -javaagent
  2695     } else if (match_option(option, "-javaagent:", &tail)) {
  2696 #if !INCLUDE_JVMTI
  2697       jio_fprintf(defaultStream::error_stream(),
  2698         "Instrumentation agents are not supported in this VM\n");
  2699       return JNI_ERR;
  2700 #else
  2701       if(tail != NULL) {
  2702         char *options = strcpy(NEW_C_HEAP_ARRAY(char, strlen(tail) + 1, mtInternal), tail);
  2703         add_init_agent("instrument", options, false);
  2705 #endif // !INCLUDE_JVMTI
  2706     // -Xnoclassgc
  2707     } else if (match_option(option, "-Xnoclassgc", &tail)) {
  2708       FLAG_SET_CMDLINE(bool, ClassUnloading, false);
  2709     // -Xincgc: i-CMS
  2710     } else if (match_option(option, "-Xincgc", &tail)) {
  2711       FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, true);
  2712       FLAG_SET_CMDLINE(bool, CMSIncrementalMode, true);
  2713     // -Xnoincgc: no i-CMS
  2714     } else if (match_option(option, "-Xnoincgc", &tail)) {
  2715       FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, false);
  2716       FLAG_SET_CMDLINE(bool, CMSIncrementalMode, false);
  2717     // -Xconcgc
  2718     } else if (match_option(option, "-Xconcgc", &tail)) {
  2719       FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, true);
  2720     // -Xnoconcgc
  2721     } else if (match_option(option, "-Xnoconcgc", &tail)) {
  2722       FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, false);
  2723     // -Xbatch
  2724     } else if (match_option(option, "-Xbatch", &tail)) {
  2725       FLAG_SET_CMDLINE(bool, BackgroundCompilation, false);
  2726     // -Xmn for compatibility with other JVM vendors
  2727     } else if (match_option(option, "-Xmn", &tail)) {
  2728       julong long_initial_young_size = 0;
  2729       ArgsRange errcode = parse_memory_size(tail, &long_initial_young_size, 1);
  2730       if (errcode != arg_in_range) {
  2731         jio_fprintf(defaultStream::error_stream(),
  2732                     "Invalid initial young generation size: %s\n", option->optionString);
  2733         describe_range_error(errcode);
  2734         return JNI_EINVAL;
  2736       FLAG_SET_CMDLINE(uintx, MaxNewSize, (uintx)long_initial_young_size);
  2737       FLAG_SET_CMDLINE(uintx, NewSize, (uintx)long_initial_young_size);
  2738     // -Xms
  2739     } else if (match_option(option, "-Xms", &tail)) {
  2740       julong long_initial_heap_size = 0;
  2741       // an initial heap size of 0 means automatically determine
  2742       ArgsRange errcode = parse_memory_size(tail, &long_initial_heap_size, 0);
  2743       if (errcode != arg_in_range) {
  2744         jio_fprintf(defaultStream::error_stream(),
  2745                     "Invalid initial heap size: %s\n", option->optionString);
  2746         describe_range_error(errcode);
  2747         return JNI_EINVAL;
  2749       set_min_heap_size((uintx)long_initial_heap_size);
  2750       // Currently the minimum size and the initial heap sizes are the same.
  2751       // Can be overridden with -XX:InitialHeapSize.
  2752       FLAG_SET_CMDLINE(uintx, InitialHeapSize, (uintx)long_initial_heap_size);
  2753     // -Xmx
  2754     } else if (match_option(option, "-Xmx", &tail) || match_option(option, "-XX:MaxHeapSize=", &tail)) {
  2755       julong long_max_heap_size = 0;
  2756       ArgsRange errcode = parse_memory_size(tail, &long_max_heap_size, 1);
  2757       if (errcode != arg_in_range) {
  2758         jio_fprintf(defaultStream::error_stream(),
  2759                     "Invalid maximum heap size: %s\n", option->optionString);
  2760         describe_range_error(errcode);
  2761         return JNI_EINVAL;
  2763       FLAG_SET_CMDLINE(uintx, MaxHeapSize, (uintx)long_max_heap_size);
  2764     // Xmaxf
  2765     } else if (match_option(option, "-Xmaxf", &tail)) {
  2766       char* err;
  2767       int maxf = (int)(strtod(tail, &err) * 100);
  2768       if (*err != '\0' || *tail == '\0' || maxf < 0 || maxf > 100) {
  2769         jio_fprintf(defaultStream::error_stream(),
  2770                     "Bad max heap free percentage size: %s\n",
  2771                     option->optionString);
  2772         return JNI_EINVAL;
  2773       } else {
  2774         FLAG_SET_CMDLINE(uintx, MaxHeapFreeRatio, maxf);
  2776     // Xminf
  2777     } else if (match_option(option, "-Xminf", &tail)) {
  2778       char* err;
  2779       int minf = (int)(strtod(tail, &err) * 100);
  2780       if (*err != '\0' || *tail == '\0' || minf < 0 || minf > 100) {
  2781         jio_fprintf(defaultStream::error_stream(),
  2782                     "Bad min heap free percentage size: %s\n",
  2783                     option->optionString);
  2784         return JNI_EINVAL;
  2785       } else {
  2786         FLAG_SET_CMDLINE(uintx, MinHeapFreeRatio, minf);
  2788     // -Xss
  2789     } else if (match_option(option, "-Xss", &tail)) {
  2790       julong long_ThreadStackSize = 0;
  2791       ArgsRange errcode = parse_memory_size(tail, &long_ThreadStackSize, 1000);
  2792       if (errcode != arg_in_range) {
  2793         jio_fprintf(defaultStream::error_stream(),
  2794                     "Invalid thread stack size: %s\n", option->optionString);
  2795         describe_range_error(errcode);
  2796         return JNI_EINVAL;
  2798       // Internally track ThreadStackSize in units of 1024 bytes.
  2799       FLAG_SET_CMDLINE(intx, ThreadStackSize,
  2800                               round_to((int)long_ThreadStackSize, K) / K);
  2801     // -Xoss
  2802     } else if (match_option(option, "-Xoss", &tail)) {
  2803           // HotSpot does not have separate native and Java stacks, ignore silently for compatibility
  2804     } else if (match_option(option, "-XX:CodeCacheExpansionSize=", &tail)) {
  2805       julong long_CodeCacheExpansionSize = 0;
  2806       ArgsRange errcode = parse_memory_size(tail, &long_CodeCacheExpansionSize, os::vm_page_size());
  2807       if (errcode != arg_in_range) {
  2808         jio_fprintf(defaultStream::error_stream(),
  2809                    "Invalid argument: %s. Must be at least %luK.\n", option->optionString,
  2810                    os::vm_page_size()/K);
  2811         return JNI_EINVAL;
  2813       FLAG_SET_CMDLINE(uintx, CodeCacheExpansionSize, (uintx)long_CodeCacheExpansionSize);
  2814     } else if (match_option(option, "-Xmaxjitcodesize", &tail) ||
  2815                match_option(option, "-XX:ReservedCodeCacheSize=", &tail)) {
  2816       julong long_ReservedCodeCacheSize = 0;
  2818       ArgsRange errcode = parse_memory_size(tail, &long_ReservedCodeCacheSize, 1);
  2819       if (errcode != arg_in_range) {
  2820         jio_fprintf(defaultStream::error_stream(),
  2821                     "Invalid maximum code cache size: %s.\n", option->optionString);
  2822         return JNI_EINVAL;
  2824       FLAG_SET_CMDLINE(uintx, ReservedCodeCacheSize, (uintx)long_ReservedCodeCacheSize);
  2825       //-XX:IncreaseFirstTierCompileThresholdAt=
  2826       } else if (match_option(option, "-XX:IncreaseFirstTierCompileThresholdAt=", &tail)) {
  2827         uintx uint_IncreaseFirstTierCompileThresholdAt = 0;
  2828         if (!parse_uintx(tail, &uint_IncreaseFirstTierCompileThresholdAt, 0) || uint_IncreaseFirstTierCompileThresholdAt > 99) {
  2829           jio_fprintf(defaultStream::error_stream(),
  2830                       "Invalid value for IncreaseFirstTierCompileThresholdAt: %s. Should be between 0 and 99.\n",
  2831                       option->optionString);
  2832           return JNI_EINVAL;
  2834         FLAG_SET_CMDLINE(uintx, IncreaseFirstTierCompileThresholdAt, (uintx)uint_IncreaseFirstTierCompileThresholdAt);
  2835     // -green
  2836     } else if (match_option(option, "-green", &tail)) {
  2837       jio_fprintf(defaultStream::error_stream(),
  2838                   "Green threads support not available\n");
  2839           return JNI_EINVAL;
  2840     // -native
  2841     } else if (match_option(option, "-native", &tail)) {
  2842           // HotSpot always uses native threads, ignore silently for compatibility
  2843     // -Xsqnopause
  2844     } else if (match_option(option, "-Xsqnopause", &tail)) {
  2845           // EVM option, ignore silently for compatibility
  2846     // -Xrs
  2847     } else if (match_option(option, "-Xrs", &tail)) {
  2848           // Classic/EVM option, new functionality
  2849       FLAG_SET_CMDLINE(bool, ReduceSignalUsage, true);
  2850     } else if (match_option(option, "-Xusealtsigs", &tail)) {
  2851           // change default internal VM signals used - lower case for back compat
  2852       FLAG_SET_CMDLINE(bool, UseAltSigs, true);
  2853     // -Xoptimize
  2854     } else if (match_option(option, "-Xoptimize", &tail)) {
  2855           // EVM option, ignore silently for compatibility
  2856     // -Xprof
  2857     } else if (match_option(option, "-Xprof", &tail)) {
  2858 #if INCLUDE_FPROF
  2859       _has_profile = true;
  2860 #else // INCLUDE_FPROF
  2861       jio_fprintf(defaultStream::error_stream(),
  2862         "Flat profiling is not supported in this VM.\n");
  2863       return JNI_ERR;
  2864 #endif // INCLUDE_FPROF
  2865     // -Xconcurrentio
  2866     } else if (match_option(option, "-Xconcurrentio", &tail)) {
  2867       FLAG_SET_CMDLINE(bool, UseLWPSynchronization, true);
  2868       FLAG_SET_CMDLINE(bool, BackgroundCompilation, false);
  2869       FLAG_SET_CMDLINE(intx, DeferThrSuspendLoopCount, 1);
  2870       FLAG_SET_CMDLINE(bool, UseTLAB, false);
  2871       FLAG_SET_CMDLINE(uintx, NewSizeThreadIncrease, 16 * K);  // 20Kb per thread added to new generation
  2873       // -Xinternalversion
  2874     } else if (match_option(option, "-Xinternalversion", &tail)) {
  2875       jio_fprintf(defaultStream::output_stream(), "%s\n",
  2876                   VM_Version::internal_vm_info_string());
  2877       vm_exit(0);
  2878 #ifndef PRODUCT
  2879     // -Xprintflags
  2880     } else if (match_option(option, "-Xprintflags", &tail)) {
  2881       CommandLineFlags::printFlags(tty, false);
  2882       vm_exit(0);
  2883 #endif
  2884     // -D
  2885     } else if (match_option(option, "-D", &tail)) {
  2886       if (!add_property(tail)) {
  2887         return JNI_ENOMEM;
  2889       // Out of the box management support
  2890       if (match_option(option, "-Dcom.sun.management", &tail)) {
  2891 #if INCLUDE_MANAGEMENT
  2892         FLAG_SET_CMDLINE(bool, ManagementServer, true);
  2893 #else
  2894         jio_fprintf(defaultStream::output_stream(),
  2895           "-Dcom.sun.management is not supported in this VM.\n");
  2896         return JNI_ERR;
  2897 #endif
  2899     // -Xint
  2900     } else if (match_option(option, "-Xint", &tail)) {
  2901           set_mode_flags(_int);
  2902     // -Xmixed
  2903     } else if (match_option(option, "-Xmixed", &tail)) {
  2904           set_mode_flags(_mixed);
  2905     // -Xcomp
  2906     } else if (match_option(option, "-Xcomp", &tail)) {
  2907       // for testing the compiler; turn off all flags that inhibit compilation
  2908           set_mode_flags(_comp);
  2909     // -Xshare:dump
  2910     } else if (match_option(option, "-Xshare:dump", &tail)) {
  2911       FLAG_SET_CMDLINE(bool, DumpSharedSpaces, true);
  2912       set_mode_flags(_int);     // Prevent compilation, which creates objects
  2913     // -Xshare:on
  2914     } else if (match_option(option, "-Xshare:on", &tail)) {
  2915       FLAG_SET_CMDLINE(bool, UseSharedSpaces, true);
  2916       FLAG_SET_CMDLINE(bool, RequireSharedSpaces, true);
  2917     // -Xshare:auto
  2918     } else if (match_option(option, "-Xshare:auto", &tail)) {
  2919       FLAG_SET_CMDLINE(bool, UseSharedSpaces, true);
  2920       FLAG_SET_CMDLINE(bool, RequireSharedSpaces, false);
  2921     // -Xshare:off
  2922     } else if (match_option(option, "-Xshare:off", &tail)) {
  2923       FLAG_SET_CMDLINE(bool, UseSharedSpaces, false);
  2924       FLAG_SET_CMDLINE(bool, RequireSharedSpaces, false);
  2925     // -Xverify
  2926     } else if (match_option(option, "-Xverify", &tail)) {
  2927       if (strcmp(tail, ":all") == 0 || strcmp(tail, "") == 0) {
  2928         FLAG_SET_CMDLINE(bool, BytecodeVerificationLocal, true);
  2929         FLAG_SET_CMDLINE(bool, BytecodeVerificationRemote, true);
  2930       } else if (strcmp(tail, ":remote") == 0) {
  2931         FLAG_SET_CMDLINE(bool, BytecodeVerificationLocal, false);
  2932         FLAG_SET_CMDLINE(bool, BytecodeVerificationRemote, true);
  2933       } else if (strcmp(tail, ":none") == 0) {
  2934         FLAG_SET_CMDLINE(bool, BytecodeVerificationLocal, false);
  2935         FLAG_SET_CMDLINE(bool, BytecodeVerificationRemote, false);
  2936       } else if (is_bad_option(option, args->ignoreUnrecognized, "verification")) {
  2937         return JNI_EINVAL;
  2939     // -Xdebug
  2940     } else if (match_option(option, "-Xdebug", &tail)) {
  2941       // note this flag has been used, then ignore
  2942       set_xdebug_mode(true);
  2943     // -Xnoagent
  2944     } else if (match_option(option, "-Xnoagent", &tail)) {
  2945       // For compatibility with classic. HotSpot refuses to load the old style agent.dll.
  2946     } else if (match_option(option, "-Xboundthreads", &tail)) {
  2947       // Bind user level threads to kernel threads (Solaris only)
  2948       FLAG_SET_CMDLINE(bool, UseBoundThreads, true);
  2949     } else if (match_option(option, "-Xloggc:", &tail)) {
  2950       // Redirect GC output to the file. -Xloggc:<filename>
  2951       // ostream_init_log(), when called will use this filename
  2952       // to initialize a fileStream.
  2953       _gc_log_filename = strdup(tail);
  2954      if (!is_filename_valid(_gc_log_filename)) {
  2955        jio_fprintf(defaultStream::output_stream(),
  2956                   "Invalid file name for use with -Xloggc: Filename can only contain the "
  2957                   "characters [A-Z][a-z][0-9]-_.%%[p|t] but it has been %s\n"
  2958                   "Note %%p or %%t can only be used once\n", _gc_log_filename);
  2959         return JNI_EINVAL;
  2961       FLAG_SET_CMDLINE(bool, PrintGC, true);
  2962       FLAG_SET_CMDLINE(bool, PrintGCTimeStamps, true);
  2964     // JNI hooks
  2965     } else if (match_option(option, "-Xcheck", &tail)) {
  2966       if (!strcmp(tail, ":jni")) {
  2967 #if !INCLUDE_JNI_CHECK
  2968         warning("JNI CHECKING is not supported in this VM");
  2969 #else
  2970         CheckJNICalls = true;
  2971 #endif // INCLUDE_JNI_CHECK
  2972       } else if (is_bad_option(option, args->ignoreUnrecognized,
  2973                                      "check")) {
  2974         return JNI_EINVAL;
  2976     } else if (match_option(option, "vfprintf", &tail)) {
  2977       _vfprintf_hook = CAST_TO_FN_PTR(vfprintf_hook_t, option->extraInfo);
  2978     } else if (match_option(option, "exit", &tail)) {
  2979       _exit_hook = CAST_TO_FN_PTR(exit_hook_t, option->extraInfo);
  2980     } else if (match_option(option, "abort", &tail)) {
  2981       _abort_hook = CAST_TO_FN_PTR(abort_hook_t, option->extraInfo);
  2982     // -XX:+AggressiveHeap
  2983     } else if (match_option(option, "-XX:+AggressiveHeap", &tail)) {
  2985       // This option inspects the machine and attempts to set various
  2986       // parameters to be optimal for long-running, memory allocation
  2987       // intensive jobs.  It is intended for machines with large
  2988       // amounts of cpu and memory.
  2990       // initHeapSize is needed since _initial_heap_size is 4 bytes on a 32 bit
  2991       // VM, but we may not be able to represent the total physical memory
  2992       // available (like having 8gb of memory on a box but using a 32bit VM).
  2993       // Thus, we need to make sure we're using a julong for intermediate
  2994       // calculations.
  2995       julong initHeapSize;
  2996       julong total_memory = os::physical_memory();
  2998       if (total_memory < (julong)256*M) {
  2999         jio_fprintf(defaultStream::error_stream(),
  3000                     "You need at least 256mb of memory to use -XX:+AggressiveHeap\n");
  3001         vm_exit(1);
  3004       // The heap size is half of available memory, or (at most)
  3005       // all of possible memory less 160mb (leaving room for the OS
  3006       // when using ISM).  This is the maximum; because adaptive sizing
  3007       // is turned on below, the actual space used may be smaller.
  3009       initHeapSize = MIN2(total_memory / (julong)2,
  3010                           total_memory - (julong)160*M);
  3012       initHeapSize = limit_by_allocatable_memory(initHeapSize);
  3014       if (FLAG_IS_DEFAULT(MaxHeapSize)) {
  3015          FLAG_SET_CMDLINE(uintx, MaxHeapSize, initHeapSize);
  3016          FLAG_SET_CMDLINE(uintx, InitialHeapSize, initHeapSize);
  3017          // Currently the minimum size and the initial heap sizes are the same.
  3018          set_min_heap_size(initHeapSize);
  3020       if (FLAG_IS_DEFAULT(NewSize)) {
  3021          // Make the young generation 3/8ths of the total heap.
  3022          FLAG_SET_CMDLINE(uintx, NewSize,
  3023                                 ((julong)MaxHeapSize / (julong)8) * (julong)3);
  3024          FLAG_SET_CMDLINE(uintx, MaxNewSize, NewSize);
  3027 #ifndef _ALLBSD_SOURCE  // UseLargePages is not yet supported on BSD.
  3028       FLAG_SET_DEFAULT(UseLargePages, true);
  3029 #endif
  3031       // Increase some data structure sizes for efficiency
  3032       FLAG_SET_CMDLINE(uintx, BaseFootPrintEstimate, MaxHeapSize);
  3033       FLAG_SET_CMDLINE(bool, ResizeTLAB, false);
  3034       FLAG_SET_CMDLINE(uintx, TLABSize, 256*K);
  3036       // See the OldPLABSize comment below, but replace 'after promotion'
  3037       // with 'after copying'.  YoungPLABSize is the size of the survivor
  3038       // space per-gc-thread buffers.  The default is 4kw.
  3039       FLAG_SET_CMDLINE(uintx, YoungPLABSize, 256*K);      // Note: this is in words
  3041       // OldPLABSize is the size of the buffers in the old gen that
  3042       // UseParallelGC uses to promote live data that doesn't fit in the
  3043       // survivor spaces.  At any given time, there's one for each gc thread.
  3044       // The default size is 1kw. These buffers are rarely used, since the
  3045       // survivor spaces are usually big enough.  For specjbb, however, there
  3046       // are occasions when there's lots of live data in the young gen
  3047       // and we end up promoting some of it.  We don't have a definite
  3048       // explanation for why bumping OldPLABSize helps, but the theory
  3049       // is that a bigger PLAB results in retaining something like the
  3050       // original allocation order after promotion, which improves mutator
  3051       // locality.  A minor effect may be that larger PLABs reduce the
  3052       // number of PLAB allocation events during gc.  The value of 8kw
  3053       // was arrived at by experimenting with specjbb.
  3054       FLAG_SET_CMDLINE(uintx, OldPLABSize, 8*K);  // Note: this is in words
  3056       // Enable parallel GC and adaptive generation sizing
  3057       FLAG_SET_CMDLINE(bool, UseParallelGC, true);
  3058       FLAG_SET_DEFAULT(ParallelGCThreads,
  3059                        Abstract_VM_Version::parallel_worker_threads());
  3061       // Encourage steady state memory management
  3062       FLAG_SET_CMDLINE(uintx, ThresholdTolerance, 100);
  3064       // This appears to improve mutator locality
  3065       FLAG_SET_CMDLINE(bool, ScavengeBeforeFullGC, false);
  3067       // Get around early Solaris scheduling bug
  3068       // (affinity vs other jobs on system)
  3069       // but disallow DR and offlining (5008695).
  3070       FLAG_SET_CMDLINE(bool, BindGCTaskThreadsToCPUs, true);
  3072     } else if (match_option(option, "-XX:+NeverTenure", &tail)) {
  3073       // The last option must always win.
  3074       FLAG_SET_CMDLINE(bool, AlwaysTenure, false);
  3075       FLAG_SET_CMDLINE(bool, NeverTenure, true);
  3076     } else if (match_option(option, "-XX:+AlwaysTenure", &tail)) {
  3077       // The last option must always win.
  3078       FLAG_SET_CMDLINE(bool, NeverTenure, false);
  3079       FLAG_SET_CMDLINE(bool, AlwaysTenure, true);
  3080     } else if (match_option(option, "-XX:+CMSPermGenSweepingEnabled", &tail) ||
  3081                match_option(option, "-XX:-CMSPermGenSweepingEnabled", &tail)) {
  3082       jio_fprintf(defaultStream::error_stream(),
  3083         "Please use CMSClassUnloadingEnabled in place of "
  3084         "CMSPermGenSweepingEnabled in the future\n");
  3085     } else if (match_option(option, "-XX:+UseGCTimeLimit", &tail)) {
  3086       FLAG_SET_CMDLINE(bool, UseGCOverheadLimit, true);
  3087       jio_fprintf(defaultStream::error_stream(),
  3088         "Please use -XX:+UseGCOverheadLimit in place of "
  3089         "-XX:+UseGCTimeLimit in the future\n");
  3090     } else if (match_option(option, "-XX:-UseGCTimeLimit", &tail)) {
  3091       FLAG_SET_CMDLINE(bool, UseGCOverheadLimit, false);
  3092       jio_fprintf(defaultStream::error_stream(),
  3093         "Please use -XX:-UseGCOverheadLimit in place of "
  3094         "-XX:-UseGCTimeLimit in the future\n");
  3095     // The TLE options are for compatibility with 1.3 and will be
  3096     // removed without notice in a future release.  These options
  3097     // are not to be documented.
  3098     } else if (match_option(option, "-XX:MaxTLERatio=", &tail)) {
  3099       // No longer used.
  3100     } else if (match_option(option, "-XX:+ResizeTLE", &tail)) {
  3101       FLAG_SET_CMDLINE(bool, ResizeTLAB, true);
  3102     } else if (match_option(option, "-XX:-ResizeTLE", &tail)) {
  3103       FLAG_SET_CMDLINE(bool, ResizeTLAB, false);
  3104     } else if (match_option(option, "-XX:+PrintTLE", &tail)) {
  3105       FLAG_SET_CMDLINE(bool, PrintTLAB, true);
  3106     } else if (match_option(option, "-XX:-PrintTLE", &tail)) {
  3107       FLAG_SET_CMDLINE(bool, PrintTLAB, false);
  3108     } else if (match_option(option, "-XX:TLEFragmentationRatio=", &tail)) {
  3109       // No longer used.
  3110     } else if (match_option(option, "-XX:TLESize=", &tail)) {
  3111       julong long_tlab_size = 0;
  3112       ArgsRange errcode = parse_memory_size(tail, &long_tlab_size, 1);
  3113       if (errcode != arg_in_range) {
  3114         jio_fprintf(defaultStream::error_stream(),
  3115                     "Invalid TLAB size: %s\n", option->optionString);
  3116         describe_range_error(errcode);
  3117         return JNI_EINVAL;
  3119       FLAG_SET_CMDLINE(uintx, TLABSize, long_tlab_size);
  3120     } else if (match_option(option, "-XX:TLEThreadRatio=", &tail)) {
  3121       // No longer used.
  3122     } else if (match_option(option, "-XX:+UseTLE", &tail)) {
  3123       FLAG_SET_CMDLINE(bool, UseTLAB, true);
  3124     } else if (match_option(option, "-XX:-UseTLE", &tail)) {
  3125       FLAG_SET_CMDLINE(bool, UseTLAB, false);
  3126     } else if (match_option(option, "-XX:+DisplayVMOutputToStderr", &tail)) {
  3127       FLAG_SET_CMDLINE(bool, DisplayVMOutputToStdout, false);
  3128       FLAG_SET_CMDLINE(bool, DisplayVMOutputToStderr, true);
  3129     } else if (match_option(option, "-XX:+DisplayVMOutputToStdout", &tail)) {
  3130       FLAG_SET_CMDLINE(bool, DisplayVMOutputToStderr, false);
  3131       FLAG_SET_CMDLINE(bool, DisplayVMOutputToStdout, true);
  3132     } else if (match_option(option, "-XX:+ExtendedDTraceProbes", &tail)) {
  3133 #if defined(DTRACE_ENABLED)
  3134       FLAG_SET_CMDLINE(bool, ExtendedDTraceProbes, true);
  3135       FLAG_SET_CMDLINE(bool, DTraceMethodProbes, true);
  3136       FLAG_SET_CMDLINE(bool, DTraceAllocProbes, true);
  3137       FLAG_SET_CMDLINE(bool, DTraceMonitorProbes, true);
  3138 #else // defined(DTRACE_ENABLED)
  3139       jio_fprintf(defaultStream::error_stream(),
  3140                   "ExtendedDTraceProbes flag is not applicable for this configuration\n");
  3141       return JNI_EINVAL;
  3142 #endif // defined(DTRACE_ENABLED)
  3143 #ifdef ASSERT
  3144     } else if (match_option(option, "-XX:+FullGCALot", &tail)) {
  3145       FLAG_SET_CMDLINE(bool, FullGCALot, true);
  3146       // disable scavenge before parallel mark-compact
  3147       FLAG_SET_CMDLINE(bool, ScavengeBeforeFullGC, false);
  3148 #endif
  3149     } else if (match_option(option, "-XX:CMSParPromoteBlocksToClaim=", &tail)) {
  3150       julong cms_blocks_to_claim = (julong)atol(tail);
  3151       FLAG_SET_CMDLINE(uintx, CMSParPromoteBlocksToClaim, cms_blocks_to_claim);
  3152       jio_fprintf(defaultStream::error_stream(),
  3153         "Please use -XX:OldPLABSize in place of "
  3154         "-XX:CMSParPromoteBlocksToClaim in the future\n");
  3155     } else if (match_option(option, "-XX:ParCMSPromoteBlocksToClaim=", &tail)) {
  3156       julong cms_blocks_to_claim = (julong)atol(tail);
  3157       FLAG_SET_CMDLINE(uintx, CMSParPromoteBlocksToClaim, cms_blocks_to_claim);
  3158       jio_fprintf(defaultStream::error_stream(),
  3159         "Please use -XX:OldPLABSize in place of "
  3160         "-XX:ParCMSPromoteBlocksToClaim in the future\n");
  3161     } else if (match_option(option, "-XX:ParallelGCOldGenAllocBufferSize=", &tail)) {
  3162       julong old_plab_size = 0;
  3163       ArgsRange errcode = parse_memory_size(tail, &old_plab_size, 1);
  3164       if (errcode != arg_in_range) {
  3165         jio_fprintf(defaultStream::error_stream(),
  3166                     "Invalid old PLAB size: %s\n", option->optionString);
  3167         describe_range_error(errcode);
  3168         return JNI_EINVAL;
  3170       FLAG_SET_CMDLINE(uintx, OldPLABSize, old_plab_size);
  3171       jio_fprintf(defaultStream::error_stream(),
  3172                   "Please use -XX:OldPLABSize in place of "
  3173                   "-XX:ParallelGCOldGenAllocBufferSize in the future\n");
  3174     } else if (match_option(option, "-XX:ParallelGCToSpaceAllocBufferSize=", &tail)) {
  3175       julong young_plab_size = 0;
  3176       ArgsRange errcode = parse_memory_size(tail, &young_plab_size, 1);
  3177       if (errcode != arg_in_range) {
  3178         jio_fprintf(defaultStream::error_stream(),
  3179                     "Invalid young PLAB size: %s\n", option->optionString);
  3180         describe_range_error(errcode);
  3181         return JNI_EINVAL;
  3183       FLAG_SET_CMDLINE(uintx, YoungPLABSize, young_plab_size);
  3184       jio_fprintf(defaultStream::error_stream(),
  3185                   "Please use -XX:YoungPLABSize in place of "
  3186                   "-XX:ParallelGCToSpaceAllocBufferSize in the future\n");
  3187     } else if (match_option(option, "-XX:CMSMarkStackSize=", &tail) ||
  3188                match_option(option, "-XX:G1MarkStackSize=", &tail)) {
  3189       julong stack_size = 0;
  3190       ArgsRange errcode = parse_memory_size(tail, &stack_size, 1);
  3191       if (errcode != arg_in_range) {
  3192         jio_fprintf(defaultStream::error_stream(),
  3193                     "Invalid mark stack size: %s\n", option->optionString);
  3194         describe_range_error(errcode);
  3195         return JNI_EINVAL;
  3197       FLAG_SET_CMDLINE(uintx, MarkStackSize, stack_size);
  3198     } else if (match_option(option, "-XX:CMSMarkStackSizeMax=", &tail)) {
  3199       julong max_stack_size = 0;
  3200       ArgsRange errcode = parse_memory_size(tail, &max_stack_size, 1);
  3201       if (errcode != arg_in_range) {
  3202         jio_fprintf(defaultStream::error_stream(),
  3203                     "Invalid maximum mark stack size: %s\n",
  3204                     option->optionString);
  3205         describe_range_error(errcode);
  3206         return JNI_EINVAL;
  3208       FLAG_SET_CMDLINE(uintx, MarkStackSizeMax, max_stack_size);
  3209     } else if (match_option(option, "-XX:ParallelMarkingThreads=", &tail) ||
  3210                match_option(option, "-XX:ParallelCMSThreads=", &tail)) {
  3211       uintx conc_threads = 0;
  3212       if (!parse_uintx(tail, &conc_threads, 1)) {
  3213         jio_fprintf(defaultStream::error_stream(),
  3214                     "Invalid concurrent threads: %s\n", option->optionString);
  3215         return JNI_EINVAL;
  3217       FLAG_SET_CMDLINE(uintx, ConcGCThreads, conc_threads);
  3218     } else if (match_option(option, "-XX:MaxDirectMemorySize=", &tail)) {
  3219       julong max_direct_memory_size = 0;
  3220       ArgsRange errcode = parse_memory_size(tail, &max_direct_memory_size, 0);
  3221       if (errcode != arg_in_range) {
  3222         jio_fprintf(defaultStream::error_stream(),
  3223                     "Invalid maximum direct memory size: %s\n",
  3224                     option->optionString);
  3225         describe_range_error(errcode);
  3226         return JNI_EINVAL;
  3228       FLAG_SET_CMDLINE(uintx, MaxDirectMemorySize, max_direct_memory_size);
  3229     } else if (match_option(option, "-XX:+UseVMInterruptibleIO", &tail)) {
  3230       // NOTE! In JDK 9, the UseVMInterruptibleIO flag will completely go
  3231       //       away and will cause VM initialization failures!
  3232       warning("-XX:+UseVMInterruptibleIO is obsolete and will be removed in a future release.");
  3233       FLAG_SET_CMDLINE(bool, UseVMInterruptibleIO, true);
  3234 #if !INCLUDE_MANAGEMENT
  3235     } else if (match_option(option, "-XX:+ManagementServer", &tail)) {
  3236         jio_fprintf(defaultStream::error_stream(),
  3237           "ManagementServer is not supported in this VM.\n");
  3238         return JNI_ERR;
  3239 #endif // INCLUDE_MANAGEMENT
  3240     } else if (match_option(option, "-XX:", &tail)) { // -XX:xxxx
  3241       // Skip -XX:Flags= since that case has already been handled
  3242       if (strncmp(tail, "Flags=", strlen("Flags=")) != 0) {
  3243         if (!process_argument(tail, args->ignoreUnrecognized, origin)) {
  3244           return JNI_EINVAL;
  3247     // Unknown option
  3248     } else if (is_bad_option(option, args->ignoreUnrecognized)) {
  3249       return JNI_ERR;
  3253   // Change the default value for flags  which have different default values
  3254   // when working with older JDKs.
  3255 #ifdef LINUX
  3256  if (JDK_Version::current().compare_major(6) <= 0 &&
  3257       FLAG_IS_DEFAULT(UseLinuxPosixThreadCPUClocks)) {
  3258     FLAG_SET_DEFAULT(UseLinuxPosixThreadCPUClocks, false);
  3260 #endif // LINUX
  3261   return JNI_OK;
  3264 jint Arguments::finalize_vm_init_args(SysClassPath* scp_p, bool scp_assembly_required) {
  3265   // This must be done after all -D arguments have been processed.
  3266   scp_p->expand_endorsed();
  3268   if (scp_assembly_required || scp_p->get_endorsed() != NULL) {
  3269     // Assemble the bootclasspath elements into the final path.
  3270     Arguments::set_sysclasspath(scp_p->combined_path());
  3273   // This must be done after all arguments have been processed.
  3274   // java_compiler() true means set to "NONE" or empty.
  3275   if (java_compiler() && !xdebug_mode()) {
  3276     // For backwards compatibility, we switch to interpreted mode if
  3277     // -Djava.compiler="NONE" or "" is specified AND "-Xdebug" was
  3278     // not specified.
  3279     set_mode_flags(_int);
  3281   if (CompileThreshold == 0) {
  3282     set_mode_flags(_int);
  3285   // eventually fix up InitialTenuringThreshold if only MaxTenuringThreshold is set
  3286   if (FLAG_IS_DEFAULT(InitialTenuringThreshold) && (InitialTenuringThreshold > MaxTenuringThreshold)) {
  3287     FLAG_SET_ERGO(uintx, InitialTenuringThreshold, MaxTenuringThreshold);
  3290 #ifndef COMPILER2
  3291   // Don't degrade server performance for footprint
  3292   if (FLAG_IS_DEFAULT(UseLargePages) &&
  3293       MaxHeapSize < LargePageHeapSizeThreshold) {
  3294     // No need for large granularity pages w/small heaps.
  3295     // Note that large pages are enabled/disabled for both the
  3296     // Java heap and the code cache.
  3297     FLAG_SET_DEFAULT(UseLargePages, false);
  3300 #else
  3301   if (!FLAG_IS_DEFAULT(OptoLoopAlignment) && FLAG_IS_DEFAULT(MaxLoopPad)) {
  3302     FLAG_SET_DEFAULT(MaxLoopPad, OptoLoopAlignment-1);
  3304 #endif
  3306 #ifndef TIERED
  3307   // Tiered compilation is undefined.
  3308   UNSUPPORTED_OPTION(TieredCompilation, "TieredCompilation");
  3309 #endif
  3311   // If we are running in a headless jre, force java.awt.headless property
  3312   // to be true unless the property has already been set.
  3313   // Also allow the OS environment variable JAVA_AWT_HEADLESS to set headless state.
  3314   if (os::is_headless_jre()) {
  3315     const char* headless = Arguments::get_property("java.awt.headless");
  3316     if (headless == NULL) {
  3317       char envbuffer[128];
  3318       if (!os::getenv("JAVA_AWT_HEADLESS", envbuffer, sizeof(envbuffer))) {
  3319         if (!add_property("java.awt.headless=true")) {
  3320           return JNI_ENOMEM;
  3322       } else {
  3323         char buffer[256];
  3324         strcpy(buffer, "java.awt.headless=");
  3325         strcat(buffer, envbuffer);
  3326         if (!add_property(buffer)) {
  3327           return JNI_ENOMEM;
  3333   if (!check_vm_args_consistency()) {
  3334     return JNI_ERR;
  3337   return JNI_OK;
  3340 jint Arguments::parse_java_options_environment_variable(SysClassPath* scp_p, bool* scp_assembly_required_p) {
  3341   return parse_options_environment_variable("_JAVA_OPTIONS", scp_p,
  3342                                             scp_assembly_required_p);
  3345 jint Arguments::parse_java_tool_options_environment_variable(SysClassPath* scp_p, bool* scp_assembly_required_p) {
  3346   return parse_options_environment_variable("JAVA_TOOL_OPTIONS", scp_p,
  3347                                             scp_assembly_required_p);
  3350 jint Arguments::parse_options_environment_variable(const char* name, SysClassPath* scp_p, bool* scp_assembly_required_p) {
  3351   const int N_MAX_OPTIONS = 64;
  3352   const int OPTION_BUFFER_SIZE = 1024;
  3353   char buffer[OPTION_BUFFER_SIZE];
  3355   // The variable will be ignored if it exceeds the length of the buffer.
  3356   // Don't check this variable if user has special privileges
  3357   // (e.g. unix su command).
  3358   if (os::getenv(name, buffer, sizeof(buffer)) &&
  3359       !os::have_special_privileges()) {
  3360     JavaVMOption options[N_MAX_OPTIONS];      // Construct option array
  3361     jio_fprintf(defaultStream::error_stream(),
  3362                 "Picked up %s: %s\n", name, buffer);
  3363     char* rd = buffer;                        // pointer to the input string (rd)
  3364     int i;
  3365     for (i = 0; i < N_MAX_OPTIONS;) {         // repeat for all options in the input string
  3366       while (isspace(*rd)) rd++;              // skip whitespace
  3367       if (*rd == 0) break;                    // we re done when the input string is read completely
  3369       // The output, option string, overwrites the input string.
  3370       // Because of quoting, the pointer to the option string (wrt) may lag the pointer to
  3371       // input string (rd).
  3372       char* wrt = rd;
  3374       options[i++].optionString = wrt;        // Fill in option
  3375       while (*rd != 0 && !isspace(*rd)) {     // unquoted strings terminate with a space or NULL
  3376         if (*rd == '\'' || *rd == '"') {      // handle a quoted string
  3377           int quote = *rd;                    // matching quote to look for
  3378           rd++;                               // don't copy open quote
  3379           while (*rd != quote) {              // include everything (even spaces) up until quote
  3380             if (*rd == 0) {                   // string termination means unmatched string
  3381               jio_fprintf(defaultStream::error_stream(),
  3382                           "Unmatched quote in %s\n", name);
  3383               return JNI_ERR;
  3385             *wrt++ = *rd++;                   // copy to option string
  3387           rd++;                               // don't copy close quote
  3388         } else {
  3389           *wrt++ = *rd++;                     // copy to option string
  3392       // Need to check if we're done before writing a NULL,
  3393       // because the write could be to the byte that rd is pointing to.
  3394       if (*rd++ == 0) {
  3395         *wrt = 0;
  3396         break;
  3398       *wrt = 0;                               // Zero terminate option
  3400     // Construct JavaVMInitArgs structure and parse as if it was part of the command line
  3401     JavaVMInitArgs vm_args;
  3402     vm_args.version = JNI_VERSION_1_2;
  3403     vm_args.options = options;
  3404     vm_args.nOptions = i;
  3405     vm_args.ignoreUnrecognized = IgnoreUnrecognizedVMOptions;
  3407     if (PrintVMOptions) {
  3408       const char* tail;
  3409       for (int i = 0; i < vm_args.nOptions; i++) {
  3410         const JavaVMOption *option = vm_args.options + i;
  3411         if (match_option(option, "-XX:", &tail)) {
  3412           logOption(tail);
  3417     return(parse_each_vm_init_arg(&vm_args, scp_p, scp_assembly_required_p, Flag::ENVIRON_VAR));
  3419   return JNI_OK;
  3422 void Arguments::set_shared_spaces_flags() {
  3423   if (DumpSharedSpaces) {
  3424     if (RequireSharedSpaces) {
  3425       warning("cannot dump shared archive while using shared archive");
  3427     UseSharedSpaces = false;
  3428 #ifdef _LP64
  3429     if (!UseCompressedOops || !UseCompressedClassPointers) {
  3430       vm_exit_during_initialization(
  3431         "Cannot dump shared archive when UseCompressedOops or UseCompressedClassPointers is off.", NULL);
  3433   } else {
  3434     // UseCompressedOops and UseCompressedClassPointers must be on for UseSharedSpaces.
  3435     if (!UseCompressedOops || !UseCompressedClassPointers) {
  3436       no_shared_spaces();
  3438 #endif
  3442 #if !INCLUDE_ALL_GCS
  3443 static void force_serial_gc() {
  3444   FLAG_SET_DEFAULT(UseSerialGC, true);
  3445   FLAG_SET_DEFAULT(CMSIncrementalMode, false);  // special CMS suboption
  3446   UNSUPPORTED_GC_OPTION(UseG1GC);
  3447   UNSUPPORTED_GC_OPTION(UseParallelGC);
  3448   UNSUPPORTED_GC_OPTION(UseParallelOldGC);
  3449   UNSUPPORTED_GC_OPTION(UseConcMarkSweepGC);
  3450   UNSUPPORTED_GC_OPTION(UseParNewGC);
  3452 #endif // INCLUDE_ALL_GCS
  3454 // Sharing support
  3455 // Construct the path to the archive
  3456 static char* get_shared_archive_path() {
  3457   char *shared_archive_path;
  3458   if (SharedArchiveFile == NULL) {
  3459     char jvm_path[JVM_MAXPATHLEN];
  3460     os::jvm_path(jvm_path, sizeof(jvm_path));
  3461     char *end = strrchr(jvm_path, *os::file_separator());
  3462     if (end != NULL) *end = '\0';
  3463     size_t jvm_path_len = strlen(jvm_path);
  3464     size_t file_sep_len = strlen(os::file_separator());
  3465     shared_archive_path = NEW_C_HEAP_ARRAY(char, jvm_path_len +
  3466         file_sep_len + 20, mtInternal);
  3467     if (shared_archive_path != NULL) {
  3468       strncpy(shared_archive_path, jvm_path, jvm_path_len + 1);
  3469       strncat(shared_archive_path, os::file_separator(), file_sep_len);
  3470       strncat(shared_archive_path, "classes.jsa", 11);
  3472   } else {
  3473     shared_archive_path = NEW_C_HEAP_ARRAY(char, strlen(SharedArchiveFile) + 1, mtInternal);
  3474     if (shared_archive_path != NULL) {
  3475       strncpy(shared_archive_path, SharedArchiveFile, strlen(SharedArchiveFile) + 1);
  3478   return shared_archive_path;
  3481 #ifndef PRODUCT
  3482 // Determine whether LogVMOutput should be implicitly turned on.
  3483 static bool use_vm_log() {
  3484   if (LogCompilation || !FLAG_IS_DEFAULT(LogFile) ||
  3485       PrintCompilation || PrintInlining || PrintDependencies || PrintNativeNMethods ||
  3486       PrintDebugInfo || PrintRelocations || PrintNMethods || PrintExceptionHandlers ||
  3487       PrintAssembly || TraceDeoptimization || TraceDependencies ||
  3488       (VerifyDependencies && FLAG_IS_CMDLINE(VerifyDependencies))) {
  3489     return true;
  3492 #ifdef COMPILER1
  3493   if (PrintC1Statistics) {
  3494     return true;
  3496 #endif // COMPILER1
  3498 #ifdef COMPILER2
  3499   if (PrintOptoAssembly || PrintOptoStatistics) {
  3500     return true;
  3502 #endif // COMPILER2
  3504   return false;
  3506 #endif // PRODUCT
  3508 // Parse entry point called from JNI_CreateJavaVM
  3510 jint Arguments::parse(const JavaVMInitArgs* args) {
  3512   // Remaining part of option string
  3513   const char* tail;
  3515   // If flag "-XX:Flags=flags-file" is used it will be the first option to be processed.
  3516   const char* hotspotrc = ".hotspotrc";
  3517   bool settings_file_specified = false;
  3518   bool needs_hotspotrc_warning = false;
  3520   const char* flags_file;
  3521   int index;
  3522   for (index = 0; index < args->nOptions; index++) {
  3523     const JavaVMOption *option = args->options + index;
  3524     if (match_option(option, "-XX:Flags=", &tail)) {
  3525       flags_file = tail;
  3526       settings_file_specified = true;
  3528     if (match_option(option, "-XX:+PrintVMOptions", &tail)) {
  3529       PrintVMOptions = true;
  3531     if (match_option(option, "-XX:-PrintVMOptions", &tail)) {
  3532       PrintVMOptions = false;
  3534     if (match_option(option, "-XX:+IgnoreUnrecognizedVMOptions", &tail)) {
  3535       IgnoreUnrecognizedVMOptions = true;
  3537     if (match_option(option, "-XX:-IgnoreUnrecognizedVMOptions", &tail)) {
  3538       IgnoreUnrecognizedVMOptions = false;
  3540     if (match_option(option, "-XX:+PrintFlagsInitial", &tail)) {
  3541       CommandLineFlags::printFlags(tty, false);
  3542       vm_exit(0);
  3544     if (match_option(option, "-XX:NativeMemoryTracking", &tail)) {
  3545 #if INCLUDE_NMT
  3546       MemTracker::init_tracking_options(tail);
  3547 #else
  3548       jio_fprintf(defaultStream::error_stream(),
  3549         "Native Memory Tracking is not supported in this VM\n");
  3550       return JNI_ERR;
  3551 #endif
  3555 #ifndef PRODUCT
  3556     if (match_option(option, "-XX:+PrintFlagsWithComments", &tail)) {
  3557       CommandLineFlags::printFlags(tty, true);
  3558       vm_exit(0);
  3560 #endif
  3563   if (IgnoreUnrecognizedVMOptions) {
  3564     // uncast const to modify the flag args->ignoreUnrecognized
  3565     *(jboolean*)(&args->ignoreUnrecognized) = true;
  3568   // Parse specified settings file
  3569   if (settings_file_specified) {
  3570     if (!process_settings_file(flags_file, true, args->ignoreUnrecognized)) {
  3571       return JNI_EINVAL;
  3573   } else {
  3574 #ifdef ASSERT
  3575     // Parse default .hotspotrc settings file
  3576     if (!process_settings_file(".hotspotrc", false, args->ignoreUnrecognized)) {
  3577       return JNI_EINVAL;
  3579 #else
  3580     struct stat buf;
  3581     if (os::stat(hotspotrc, &buf) == 0) {
  3582       needs_hotspotrc_warning = true;
  3584 #endif
  3587   if (PrintVMOptions) {
  3588     for (index = 0; index < args->nOptions; index++) {
  3589       const JavaVMOption *option = args->options + index;
  3590       if (match_option(option, "-XX:", &tail)) {
  3591         logOption(tail);
  3596   // Parse JavaVMInitArgs structure passed in, as well as JAVA_TOOL_OPTIONS and _JAVA_OPTIONS
  3597   jint result = parse_vm_init_args(args);
  3598   if (result != JNI_OK) {
  3599     return result;
  3602   // Call get_shared_archive_path() here, after possible SharedArchiveFile option got parsed.
  3603   SharedArchivePath = get_shared_archive_path();
  3604   if (SharedArchivePath == NULL) {
  3605     return JNI_ENOMEM;
  3608   // Delay warning until here so that we've had a chance to process
  3609   // the -XX:-PrintWarnings flag
  3610   if (needs_hotspotrc_warning) {
  3611     warning("%s file is present but has been ignored.  "
  3612             "Run with -XX:Flags=%s to load the file.",
  3613             hotspotrc, hotspotrc);
  3616 #ifdef _ALLBSD_SOURCE  // UseLargePages is not yet supported on BSD.
  3617   UNSUPPORTED_OPTION(UseLargePages, "-XX:+UseLargePages");
  3618 #endif
  3620 #if INCLUDE_ALL_GCS
  3621   #if (defined JAVASE_EMBEDDED || defined ARM)
  3622     UNSUPPORTED_OPTION(UseG1GC, "G1 GC");
  3623   #endif
  3624 #endif
  3626 #ifndef PRODUCT
  3627   if (TraceBytecodesAt != 0) {
  3628     TraceBytecodes = true;
  3630   if (CountCompiledCalls) {
  3631     if (UseCounterDecay) {
  3632       warning("UseCounterDecay disabled because CountCalls is set");
  3633       UseCounterDecay = false;
  3636 #endif // PRODUCT
  3638   // JSR 292 is not supported before 1.7
  3639   if (!JDK_Version::is_gte_jdk17x_version()) {
  3640     if (EnableInvokeDynamic) {
  3641       if (!FLAG_IS_DEFAULT(EnableInvokeDynamic)) {
  3642         warning("JSR 292 is not supported before 1.7.  Disabling support.");
  3644       EnableInvokeDynamic = false;
  3648   if (EnableInvokeDynamic && ScavengeRootsInCode == 0) {
  3649     if (!FLAG_IS_DEFAULT(ScavengeRootsInCode)) {
  3650       warning("forcing ScavengeRootsInCode non-zero because EnableInvokeDynamic is true");
  3652     ScavengeRootsInCode = 1;
  3655   if (PrintGCDetails) {
  3656     // Turn on -verbose:gc options as well
  3657     PrintGC = true;
  3660   if (!JDK_Version::is_gte_jdk18x_version()) {
  3661     // To avoid changing the log format for 7 updates this flag is only
  3662     // true by default in JDK8 and above.
  3663     if (FLAG_IS_DEFAULT(PrintGCCause)) {
  3664       FLAG_SET_DEFAULT(PrintGCCause, false);
  3668   // Set object alignment values.
  3669   set_object_alignment();
  3671 #if !INCLUDE_ALL_GCS
  3672   force_serial_gc();
  3673 #endif // INCLUDE_ALL_GCS
  3674 #if !INCLUDE_CDS
  3675   if (DumpSharedSpaces || RequireSharedSpaces) {
  3676     jio_fprintf(defaultStream::error_stream(),
  3677       "Shared spaces are not supported in this VM\n");
  3678     return JNI_ERR;
  3680   if ((UseSharedSpaces && FLAG_IS_CMDLINE(UseSharedSpaces)) || PrintSharedSpaces) {
  3681     warning("Shared spaces are not supported in this VM");
  3682     FLAG_SET_DEFAULT(UseSharedSpaces, false);
  3683     FLAG_SET_DEFAULT(PrintSharedSpaces, false);
  3685   no_shared_spaces();
  3686 #endif // INCLUDE_CDS
  3688   return JNI_OK;
  3691 jint Arguments::apply_ergo() {
  3693   // Set flags based on ergonomics.
  3694   set_ergonomics_flags();
  3696   set_shared_spaces_flags();
  3698   // Check the GC selections again.
  3699   if (!check_gc_consistency()) {
  3700     return JNI_EINVAL;
  3703   if (TieredCompilation) {
  3704     set_tiered_flags();
  3705   } else {
  3706     // Check if the policy is valid. Policies 0 and 1 are valid for non-tiered setup.
  3707     if (CompilationPolicyChoice >= 2) {
  3708       vm_exit_during_initialization(
  3709         "Incompatible compilation policy selected", NULL);
  3712   // Set NmethodSweepFraction after the size of the code cache is adapted (in case of tiered)
  3713   if (FLAG_IS_DEFAULT(NmethodSweepFraction)) {
  3714     FLAG_SET_DEFAULT(NmethodSweepFraction, 1 + ReservedCodeCacheSize / (16 * M));
  3718   // Set heap size based on available physical memory
  3719   set_heap_size();
  3721 #if INCLUDE_ALL_GCS
  3722   // Set per-collector flags
  3723   if (UseParallelGC || UseParallelOldGC) {
  3724     set_parallel_gc_flags();
  3725   } else if (UseConcMarkSweepGC) { // Should be done before ParNew check below
  3726     set_cms_and_parnew_gc_flags();
  3727   } else if (UseParNewGC) {  // Skipped if CMS is set above
  3728     set_parnew_gc_flags();
  3729   } else if (UseG1GC) {
  3730     set_g1_gc_flags();
  3732   check_deprecated_gcs();
  3733   check_deprecated_gc_flags();
  3734   if (AssumeMP && !UseSerialGC) {
  3735     if (FLAG_IS_DEFAULT(ParallelGCThreads) && ParallelGCThreads == 1) {
  3736       warning("If the number of processors is expected to increase from one, then"
  3737               " you should configure the number of parallel GC threads appropriately"
  3738               " using -XX:ParallelGCThreads=N");
  3741   if (MinHeapFreeRatio == 100) {
  3742     // Keeping the heap 100% free is hard ;-) so limit it to 99%.
  3743     FLAG_SET_ERGO(uintx, MinHeapFreeRatio, 99);
  3745 #else // INCLUDE_ALL_GCS
  3746   assert(verify_serial_gc_flags(), "SerialGC unset");
  3747 #endif // INCLUDE_ALL_GCS
  3749   // Initialize Metaspace flags and alignments.
  3750   Metaspace::ergo_initialize();
  3752   // Set bytecode rewriting flags
  3753   set_bytecode_flags();
  3755   // Set flags if Aggressive optimization flags (-XX:+AggressiveOpts) enabled.
  3756   set_aggressive_opts_flags();
  3758   // Turn off biased locking for locking debug mode flags,
  3759   // which are subtlely different from each other but neither works with
  3760   // biased locking.
  3761   if (UseHeavyMonitors
  3762 #ifdef COMPILER1
  3763       || !UseFastLocking
  3764 #endif // COMPILER1
  3765     ) {
  3766     if (!FLAG_IS_DEFAULT(UseBiasedLocking) && UseBiasedLocking) {
  3767       // flag set to true on command line; warn the user that they
  3768       // can't enable biased locking here
  3769       warning("Biased Locking is not supported with locking debug flags"
  3770               "; ignoring UseBiasedLocking flag." );
  3772     UseBiasedLocking = false;
  3775 #ifdef ZERO
  3776   // Clear flags not supported on zero.
  3777   FLAG_SET_DEFAULT(ProfileInterpreter, false);
  3778   FLAG_SET_DEFAULT(UseBiasedLocking, false);
  3779   LP64_ONLY(FLAG_SET_DEFAULT(UseCompressedOops, false));
  3780   LP64_ONLY(FLAG_SET_DEFAULT(UseCompressedClassPointers, false));
  3781 #endif // CC_INTERP
  3783 #ifdef COMPILER2
  3784   if (!EliminateLocks) {
  3785     EliminateNestedLocks = false;
  3787   if (!Inline) {
  3788     IncrementalInline = false;
  3790 #ifndef PRODUCT
  3791   if (!IncrementalInline) {
  3792     AlwaysIncrementalInline = false;
  3794 #endif
  3795   if (IncrementalInline && FLAG_IS_DEFAULT(MaxNodeLimit)) {
  3796     // incremental inlining: bump MaxNodeLimit
  3797     FLAG_SET_DEFAULT(MaxNodeLimit, (intx)75000);
  3799   if (!UseTypeSpeculation && FLAG_IS_DEFAULT(TypeProfileLevel)) {
  3800     // nothing to use the profiling, turn if off
  3801     FLAG_SET_DEFAULT(TypeProfileLevel, 0);
  3803 #endif
  3805   if (PrintAssembly && FLAG_IS_DEFAULT(DebugNonSafepoints)) {
  3806     warning("PrintAssembly is enabled; turning on DebugNonSafepoints to gain additional output");
  3807     DebugNonSafepoints = true;
  3810   if (FLAG_IS_CMDLINE(CompressedClassSpaceSize) && !UseCompressedClassPointers) {
  3811     warning("Setting CompressedClassSpaceSize has no effect when compressed class pointers are not used");
  3814 #ifndef PRODUCT
  3815   if (CompileTheWorld) {
  3816     // Force NmethodSweeper to sweep whole CodeCache each time.
  3817     if (FLAG_IS_DEFAULT(NmethodSweepFraction)) {
  3818       NmethodSweepFraction = 1;
  3822   if (!LogVMOutput && FLAG_IS_DEFAULT(LogVMOutput)) {
  3823     if (use_vm_log()) {
  3824       LogVMOutput = true;
  3827 #endif // PRODUCT
  3829   if (PrintCommandLineFlags) {
  3830     CommandLineFlags::printSetFlags(tty);
  3833   // Apply CPU specific policy for the BiasedLocking
  3834   if (UseBiasedLocking) {
  3835     if (!VM_Version::use_biased_locking() &&
  3836         !(FLAG_IS_CMDLINE(UseBiasedLocking))) {
  3837       UseBiasedLocking = false;
  3840 #ifdef COMPILER2
  3841   if (!UseBiasedLocking || EmitSync != 0) {
  3842     UseOptoBiasInlining = false;
  3844 #endif
  3846   // set PauseAtExit if the gamma launcher was used and a debugger is attached
  3847   // but only if not already set on the commandline
  3848   if (Arguments::created_by_gamma_launcher() && os::is_debugger_attached()) {
  3849     bool set = false;
  3850     CommandLineFlags::wasSetOnCmdline("PauseAtExit", &set);
  3851     if (!set) {
  3852       FLAG_SET_DEFAULT(PauseAtExit, true);
  3856   return JNI_OK;
  3859 jint Arguments::adjust_after_os() {
  3860   if (UseNUMA) {
  3861     if (UseParallelGC || UseParallelOldGC) {
  3862       if (FLAG_IS_DEFAULT(MinHeapDeltaBytes)) {
  3863          FLAG_SET_DEFAULT(MinHeapDeltaBytes, 64*M);
  3866     // UseNUMAInterleaving is set to ON for all collectors and
  3867     // platforms when UseNUMA is set to ON. NUMA-aware collectors
  3868     // such as the parallel collector for Linux and Solaris will
  3869     // interleave old gen and survivor spaces on top of NUMA
  3870     // allocation policy for the eden space.
  3871     // Non NUMA-aware collectors such as CMS, G1 and Serial-GC on
  3872     // all platforms and ParallelGC on Windows will interleave all
  3873     // of the heap spaces across NUMA nodes.
  3874     if (FLAG_IS_DEFAULT(UseNUMAInterleaving)) {
  3875       FLAG_SET_ERGO(bool, UseNUMAInterleaving, true);
  3878   return JNI_OK;
  3881 int Arguments::PropertyList_count(SystemProperty* pl) {
  3882   int count = 0;
  3883   while(pl != NULL) {
  3884     count++;
  3885     pl = pl->next();
  3887   return count;
  3890 const char* Arguments::PropertyList_get_value(SystemProperty *pl, const char* key) {
  3891   assert(key != NULL, "just checking");
  3892   SystemProperty* prop;
  3893   for (prop = pl; prop != NULL; prop = prop->next()) {
  3894     if (strcmp(key, prop->key()) == 0) return prop->value();
  3896   return NULL;
  3899 const char* Arguments::PropertyList_get_key_at(SystemProperty *pl, int index) {
  3900   int count = 0;
  3901   const char* ret_val = NULL;
  3903   while(pl != NULL) {
  3904     if(count >= index) {
  3905       ret_val = pl->key();
  3906       break;
  3908     count++;
  3909     pl = pl->next();
  3912   return ret_val;
  3915 char* Arguments::PropertyList_get_value_at(SystemProperty* pl, int index) {
  3916   int count = 0;
  3917   char* ret_val = NULL;
  3919   while(pl != NULL) {
  3920     if(count >= index) {
  3921       ret_val = pl->value();
  3922       break;
  3924     count++;
  3925     pl = pl->next();
  3928   return ret_val;
  3931 void Arguments::PropertyList_add(SystemProperty** plist, SystemProperty *new_p) {
  3932   SystemProperty* p = *plist;
  3933   if (p == NULL) {
  3934     *plist = new_p;
  3935   } else {
  3936     while (p->next() != NULL) {
  3937       p = p->next();
  3939     p->set_next(new_p);
  3943 void Arguments::PropertyList_add(SystemProperty** plist, const char* k, char* v) {
  3944   if (plist == NULL)
  3945     return;
  3947   SystemProperty* new_p = new SystemProperty(k, v, true);
  3948   PropertyList_add(plist, new_p);
  3951 // This add maintains unique property key in the list.
  3952 void Arguments::PropertyList_unique_add(SystemProperty** plist, const char* k, char* v, jboolean append) {
  3953   if (plist == NULL)
  3954     return;
  3956   // If property key exist then update with new value.
  3957   SystemProperty* prop;
  3958   for (prop = *plist; prop != NULL; prop = prop->next()) {
  3959     if (strcmp(k, prop->key()) == 0) {
  3960       if (append) {
  3961         prop->append_value(v);
  3962       } else {
  3963         prop->set_value(v);
  3965       return;
  3969   PropertyList_add(plist, k, v);
  3972 // Copies src into buf, replacing "%%" with "%" and "%p" with pid
  3973 // Returns true if all of the source pointed by src has been copied over to
  3974 // the destination buffer pointed by buf. Otherwise, returns false.
  3975 // Notes:
  3976 // 1. If the length (buflen) of the destination buffer excluding the
  3977 // NULL terminator character is not long enough for holding the expanded
  3978 // pid characters, it also returns false instead of returning the partially
  3979 // expanded one.
  3980 // 2. The passed in "buflen" should be large enough to hold the null terminator.
  3981 bool Arguments::copy_expand_pid(const char* src, size_t srclen,
  3982                                 char* buf, size_t buflen) {
  3983   const char* p = src;
  3984   char* b = buf;
  3985   const char* src_end = &src[srclen];
  3986   char* buf_end = &buf[buflen - 1];
  3988   while (p < src_end && b < buf_end) {
  3989     if (*p == '%') {
  3990       switch (*(++p)) {
  3991       case '%':         // "%%" ==> "%"
  3992         *b++ = *p++;
  3993         break;
  3994       case 'p':  {       //  "%p" ==> current process id
  3995         // buf_end points to the character before the last character so
  3996         // that we could write '\0' to the end of the buffer.
  3997         size_t buf_sz = buf_end - b + 1;
  3998         int ret = jio_snprintf(b, buf_sz, "%d", os::current_process_id());
  4000         // if jio_snprintf fails or the buffer is not long enough to hold
  4001         // the expanded pid, returns false.
  4002         if (ret < 0 || ret >= (int)buf_sz) {
  4003           return false;
  4004         } else {
  4005           b += ret;
  4006           assert(*b == '\0', "fail in copy_expand_pid");
  4007           if (p == src_end && b == buf_end + 1) {
  4008             // reach the end of the buffer.
  4009             return true;
  4012         p++;
  4013         break;
  4015       default :
  4016         *b++ = '%';
  4018     } else {
  4019       *b++ = *p++;
  4022   *b = '\0';
  4023   return (p == src_end); // return false if not all of the source was copied

mercurial