src/share/vm/runtime/arguments.cpp

Wed, 03 Mar 2010 14:48:26 -0800

author
jcoomes
date
Wed, 03 Mar 2010 14:48:26 -0800
changeset 1746
2a1472c30599
parent 1719
5f1f51edaff6
child 1751
cc98cc548f51
permissions
-rw-r--r--

4396719: Mark Sweep stack overflow on deeply nested Object arrays
Summary: Use an explicit stack for object arrays and process them in chunks.
Reviewed-by: iveresov, apetrusenko

     1 /*
     2  * Copyright 1997-2010 Sun Microsystems, Inc.  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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    20  * CA 95054 USA or visit www.sun.com if you need additional information or
    21  * have any questions.
    22  *
    23  */
    25 #include "incls/_precompiled.incl"
    26 #include "incls/_arguments.cpp.incl"
    28 #define DEFAULT_VENDOR_URL_BUG "http://java.sun.com/webapps/bugreport/crash.jsp"
    29 #define DEFAULT_JAVA_LAUNCHER  "generic"
    31 char**  Arguments::_jvm_flags_array             = NULL;
    32 int     Arguments::_num_jvm_flags               = 0;
    33 char**  Arguments::_jvm_args_array              = NULL;
    34 int     Arguments::_num_jvm_args                = 0;
    35 char*  Arguments::_java_command                 = NULL;
    36 SystemProperty* Arguments::_system_properties   = NULL;
    37 const char*  Arguments::_gc_log_filename        = NULL;
    38 bool   Arguments::_has_profile                  = false;
    39 bool   Arguments::_has_alloc_profile            = false;
    40 uintx  Arguments::_min_heap_size                = 0;
    41 Arguments::Mode Arguments::_mode                = _mixed;
    42 bool   Arguments::_java_compiler                = false;
    43 bool   Arguments::_xdebug_mode                  = false;
    44 const char*  Arguments::_java_vendor_url_bug    = DEFAULT_VENDOR_URL_BUG;
    45 const char*  Arguments::_sun_java_launcher      = DEFAULT_JAVA_LAUNCHER;
    46 int    Arguments::_sun_java_launcher_pid        = -1;
    48 // These parameters are reset in method parse_vm_init_args(JavaVMInitArgs*)
    49 bool   Arguments::_AlwaysCompileLoopMethods     = AlwaysCompileLoopMethods;
    50 bool   Arguments::_UseOnStackReplacement        = UseOnStackReplacement;
    51 bool   Arguments::_BackgroundCompilation        = BackgroundCompilation;
    52 bool   Arguments::_ClipInlining                 = ClipInlining;
    53 intx   Arguments::_Tier2CompileThreshold        = Tier2CompileThreshold;
    55 char*  Arguments::SharedArchivePath             = NULL;
    57 AgentLibraryList Arguments::_libraryList;
    58 AgentLibraryList Arguments::_agentList;
    60 abort_hook_t     Arguments::_abort_hook         = NULL;
    61 exit_hook_t      Arguments::_exit_hook          = NULL;
    62 vfprintf_hook_t  Arguments::_vfprintf_hook      = NULL;
    65 SystemProperty *Arguments::_java_ext_dirs = NULL;
    66 SystemProperty *Arguments::_java_endorsed_dirs = NULL;
    67 SystemProperty *Arguments::_sun_boot_library_path = NULL;
    68 SystemProperty *Arguments::_java_library_path = NULL;
    69 SystemProperty *Arguments::_java_home = NULL;
    70 SystemProperty *Arguments::_java_class_path = NULL;
    71 SystemProperty *Arguments::_sun_boot_class_path = NULL;
    73 char* Arguments::_meta_index_path = NULL;
    74 char* Arguments::_meta_index_dir = NULL;
    76 static bool force_client_mode = false;
    78 // Check if head of 'option' matches 'name', and sets 'tail' remaining part of option string
    80 static bool match_option(const JavaVMOption *option, const char* name,
    81                          const char** tail) {
    82   int len = (int)strlen(name);
    83   if (strncmp(option->optionString, name, len) == 0) {
    84     *tail = option->optionString + len;
    85     return true;
    86   } else {
    87     return false;
    88   }
    89 }
    91 static void logOption(const char* opt) {
    92   if (PrintVMOptions) {
    93     jio_fprintf(defaultStream::output_stream(), "VM option '%s'\n", opt);
    94   }
    95 }
    97 // Process java launcher properties.
    98 void Arguments::process_sun_java_launcher_properties(JavaVMInitArgs* args) {
    99   // See if sun.java.launcher or sun.java.launcher.pid is defined.
   100   // Must do this before setting up other system properties,
   101   // as some of them may depend on launcher type.
   102   for (int index = 0; index < args->nOptions; index++) {
   103     const JavaVMOption* option = args->options + index;
   104     const char* tail;
   106     if (match_option(option, "-Dsun.java.launcher=", &tail)) {
   107       process_java_launcher_argument(tail, option->extraInfo);
   108       continue;
   109     }
   110     if (match_option(option, "-Dsun.java.launcher.pid=", &tail)) {
   111       _sun_java_launcher_pid = atoi(tail);
   112       continue;
   113     }
   114   }
   115 }
   117 // Initialize system properties key and value.
   118 void Arguments::init_system_properties() {
   120   PropertyList_add(&_system_properties, new SystemProperty("java.vm.specification.version", "1.0", false));
   121   PropertyList_add(&_system_properties, new SystemProperty("java.vm.specification.name",
   122                                                                  "Java Virtual Machine Specification",  false));
   123   PropertyList_add(&_system_properties, new SystemProperty("java.vm.specification.vendor",
   124                                                                  "Sun Microsystems Inc.",  false));
   125   PropertyList_add(&_system_properties, new SystemProperty("java.vm.version", VM_Version::vm_release(),  false));
   126   PropertyList_add(&_system_properties, new SystemProperty("java.vm.name", VM_Version::vm_name(),  false));
   127   PropertyList_add(&_system_properties, new SystemProperty("java.vm.vendor", VM_Version::vm_vendor(),  false));
   128   PropertyList_add(&_system_properties, new SystemProperty("java.vm.info", VM_Version::vm_info_string(),  true));
   130   // following are JVMTI agent writeable properties.
   131   // Properties values are set to NULL and they are
   132   // os specific they are initialized in os::init_system_properties_values().
   133   _java_ext_dirs = new SystemProperty("java.ext.dirs", NULL,  true);
   134   _java_endorsed_dirs = new SystemProperty("java.endorsed.dirs", NULL,  true);
   135   _sun_boot_library_path = new SystemProperty("sun.boot.library.path", NULL,  true);
   136   _java_library_path = new SystemProperty("java.library.path", NULL,  true);
   137   _java_home =  new SystemProperty("java.home", NULL,  true);
   138   _sun_boot_class_path = new SystemProperty("sun.boot.class.path", NULL,  true);
   140   _java_class_path = new SystemProperty("java.class.path", "",  true);
   142   // Add to System Property list.
   143   PropertyList_add(&_system_properties, _java_ext_dirs);
   144   PropertyList_add(&_system_properties, _java_endorsed_dirs);
   145   PropertyList_add(&_system_properties, _sun_boot_library_path);
   146   PropertyList_add(&_system_properties, _java_library_path);
   147   PropertyList_add(&_system_properties, _java_home);
   148   PropertyList_add(&_system_properties, _java_class_path);
   149   PropertyList_add(&_system_properties, _sun_boot_class_path);
   151   // Set OS specific system properties values
   152   os::init_system_properties_values();
   153 }
   155 /**
   156  * Provide a slightly more user-friendly way of eliminating -XX flags.
   157  * When a flag is eliminated, it can be added to this list in order to
   158  * continue accepting this flag on the command-line, while issuing a warning
   159  * and ignoring the value.  Once the JDK version reaches the 'accept_until'
   160  * limit, we flatly refuse to admit the existence of the flag.  This allows
   161  * a flag to die correctly over JDK releases using HSX.
   162  */
   163 typedef struct {
   164   const char* name;
   165   JDK_Version obsoleted_in; // when the flag went away
   166   JDK_Version accept_until; // which version to start denying the existence
   167 } ObsoleteFlag;
   169 static ObsoleteFlag obsolete_jvm_flags[] = {
   170   { "UseTrainGC",                    JDK_Version::jdk(5), JDK_Version::jdk(7) },
   171   { "UseSpecialLargeObjectHandling", JDK_Version::jdk(5), JDK_Version::jdk(7) },
   172   { "UseOversizedCarHandling",       JDK_Version::jdk(5), JDK_Version::jdk(7) },
   173   { "TraceCarAllocation",            JDK_Version::jdk(5), JDK_Version::jdk(7) },
   174   { "PrintTrainGCProcessingStats",   JDK_Version::jdk(5), JDK_Version::jdk(7) },
   175   { "LogOfCarSpaceSize",             JDK_Version::jdk(5), JDK_Version::jdk(7) },
   176   { "OversizedCarThreshold",         JDK_Version::jdk(5), JDK_Version::jdk(7) },
   177   { "MinTickInterval",               JDK_Version::jdk(5), JDK_Version::jdk(7) },
   178   { "DefaultTickInterval",           JDK_Version::jdk(5), JDK_Version::jdk(7) },
   179   { "MaxTickInterval",               JDK_Version::jdk(5), JDK_Version::jdk(7) },
   180   { "DelayTickAdjustment",           JDK_Version::jdk(5), JDK_Version::jdk(7) },
   181   { "ProcessingToTenuringRatio",     JDK_Version::jdk(5), JDK_Version::jdk(7) },
   182   { "MinTrainLength",                JDK_Version::jdk(5), JDK_Version::jdk(7) },
   183   { "AppendRatio",         JDK_Version::jdk_update(6,10), JDK_Version::jdk(7) },
   184   { "DefaultMaxRAM",       JDK_Version::jdk_update(6,18), JDK_Version::jdk(7) },
   185   { "DefaultInitialRAMFraction",
   186                            JDK_Version::jdk_update(6,18), JDK_Version::jdk(7) },
   187   { NULL, JDK_Version(0), JDK_Version(0) }
   188 };
   190 // Returns true if the flag is obsolete and fits into the range specified
   191 // for being ignored.  In the case that the flag is ignored, the 'version'
   192 // value is filled in with the version number when the flag became
   193 // obsolete so that that value can be displayed to the user.
   194 bool Arguments::is_newly_obsolete(const char *s, JDK_Version* version) {
   195   int i = 0;
   196   assert(version != NULL, "Must provide a version buffer");
   197   while (obsolete_jvm_flags[i].name != NULL) {
   198     const ObsoleteFlag& flag_status = obsolete_jvm_flags[i];
   199     // <flag>=xxx form
   200     // [-|+]<flag> form
   201     if ((strncmp(flag_status.name, s, strlen(flag_status.name)) == 0) ||
   202         ((s[0] == '+' || s[0] == '-') &&
   203         (strncmp(flag_status.name, &s[1], strlen(flag_status.name)) == 0))) {
   204       if (JDK_Version::current().compare(flag_status.accept_until) == -1) {
   205           *version = flag_status.obsoleted_in;
   206           return true;
   207       }
   208     }
   209     i++;
   210   }
   211   return false;
   212 }
   214 // Constructs the system class path (aka boot class path) from the following
   215 // components, in order:
   216 //
   217 //     prefix           // from -Xbootclasspath/p:...
   218 //     endorsed         // the expansion of -Djava.endorsed.dirs=...
   219 //     base             // from os::get_system_properties() or -Xbootclasspath=
   220 //     suffix           // from -Xbootclasspath/a:...
   221 //
   222 // java.endorsed.dirs is a list of directories; any jar or zip files in the
   223 // directories are added to the sysclasspath just before the base.
   224 //
   225 // This could be AllStatic, but it isn't needed after argument processing is
   226 // complete.
   227 class SysClassPath: public StackObj {
   228 public:
   229   SysClassPath(const char* base);
   230   ~SysClassPath();
   232   inline void set_base(const char* base);
   233   inline void add_prefix(const char* prefix);
   234   inline void add_suffix_to_prefix(const char* suffix);
   235   inline void add_suffix(const char* suffix);
   236   inline void reset_path(const char* base);
   238   // Expand the jar/zip files in each directory listed by the java.endorsed.dirs
   239   // property.  Must be called after all command-line arguments have been
   240   // processed (in particular, -Djava.endorsed.dirs=...) and before calling
   241   // combined_path().
   242   void expand_endorsed();
   244   inline const char* get_base()     const { return _items[_scp_base]; }
   245   inline const char* get_prefix()   const { return _items[_scp_prefix]; }
   246   inline const char* get_suffix()   const { return _items[_scp_suffix]; }
   247   inline const char* get_endorsed() const { return _items[_scp_endorsed]; }
   249   // Combine all the components into a single c-heap-allocated string; caller
   250   // must free the string if/when no longer needed.
   251   char* combined_path();
   253 private:
   254   // Utility routines.
   255   static char* add_to_path(const char* path, const char* str, bool prepend);
   256   static char* add_jars_to_path(char* path, const char* directory);
   258   inline void reset_item_at(int index);
   260   // Array indices for the items that make up the sysclasspath.  All except the
   261   // base are allocated in the C heap and freed by this class.
   262   enum {
   263     _scp_prefix,        // from -Xbootclasspath/p:...
   264     _scp_endorsed,      // the expansion of -Djava.endorsed.dirs=...
   265     _scp_base,          // the default sysclasspath
   266     _scp_suffix,        // from -Xbootclasspath/a:...
   267     _scp_nitems         // the number of items, must be last.
   268   };
   270   const char* _items[_scp_nitems];
   271   DEBUG_ONLY(bool _expansion_done;)
   272 };
   274 SysClassPath::SysClassPath(const char* base) {
   275   memset(_items, 0, sizeof(_items));
   276   _items[_scp_base] = base;
   277   DEBUG_ONLY(_expansion_done = false;)
   278 }
   280 SysClassPath::~SysClassPath() {
   281   // Free everything except the base.
   282   for (int i = 0; i < _scp_nitems; ++i) {
   283     if (i != _scp_base) reset_item_at(i);
   284   }
   285   DEBUG_ONLY(_expansion_done = false;)
   286 }
   288 inline void SysClassPath::set_base(const char* base) {
   289   _items[_scp_base] = base;
   290 }
   292 inline void SysClassPath::add_prefix(const char* prefix) {
   293   _items[_scp_prefix] = add_to_path(_items[_scp_prefix], prefix, true);
   294 }
   296 inline void SysClassPath::add_suffix_to_prefix(const char* suffix) {
   297   _items[_scp_prefix] = add_to_path(_items[_scp_prefix], suffix, false);
   298 }
   300 inline void SysClassPath::add_suffix(const char* suffix) {
   301   _items[_scp_suffix] = add_to_path(_items[_scp_suffix], suffix, false);
   302 }
   304 inline void SysClassPath::reset_item_at(int index) {
   305   assert(index < _scp_nitems && index != _scp_base, "just checking");
   306   if (_items[index] != NULL) {
   307     FREE_C_HEAP_ARRAY(char, _items[index]);
   308     _items[index] = NULL;
   309   }
   310 }
   312 inline void SysClassPath::reset_path(const char* base) {
   313   // Clear the prefix and suffix.
   314   reset_item_at(_scp_prefix);
   315   reset_item_at(_scp_suffix);
   316   set_base(base);
   317 }
   319 //------------------------------------------------------------------------------
   321 void SysClassPath::expand_endorsed() {
   322   assert(_items[_scp_endorsed] == NULL, "can only be called once.");
   324   const char* path = Arguments::get_property("java.endorsed.dirs");
   325   if (path == NULL) {
   326     path = Arguments::get_endorsed_dir();
   327     assert(path != NULL, "no default for java.endorsed.dirs");
   328   }
   330   char* expanded_path = NULL;
   331   const char separator = *os::path_separator();
   332   const char* const end = path + strlen(path);
   333   while (path < end) {
   334     const char* tmp_end = strchr(path, separator);
   335     if (tmp_end == NULL) {
   336       expanded_path = add_jars_to_path(expanded_path, path);
   337       path = end;
   338     } else {
   339       char* dirpath = NEW_C_HEAP_ARRAY(char, tmp_end - path + 1);
   340       memcpy(dirpath, path, tmp_end - path);
   341       dirpath[tmp_end - path] = '\0';
   342       expanded_path = add_jars_to_path(expanded_path, dirpath);
   343       FREE_C_HEAP_ARRAY(char, dirpath);
   344       path = tmp_end + 1;
   345     }
   346   }
   347   _items[_scp_endorsed] = expanded_path;
   348   DEBUG_ONLY(_expansion_done = true;)
   349 }
   351 // Combine the bootclasspath elements, some of which may be null, into a single
   352 // c-heap-allocated string.
   353 char* SysClassPath::combined_path() {
   354   assert(_items[_scp_base] != NULL, "empty default sysclasspath");
   355   assert(_expansion_done, "must call expand_endorsed() first.");
   357   size_t lengths[_scp_nitems];
   358   size_t total_len = 0;
   360   const char separator = *os::path_separator();
   362   // Get the lengths.
   363   int i;
   364   for (i = 0; i < _scp_nitems; ++i) {
   365     if (_items[i] != NULL) {
   366       lengths[i] = strlen(_items[i]);
   367       // Include space for the separator char (or a NULL for the last item).
   368       total_len += lengths[i] + 1;
   369     }
   370   }
   371   assert(total_len > 0, "empty sysclasspath not allowed");
   373   // Copy the _items to a single string.
   374   char* cp = NEW_C_HEAP_ARRAY(char, total_len);
   375   char* cp_tmp = cp;
   376   for (i = 0; i < _scp_nitems; ++i) {
   377     if (_items[i] != NULL) {
   378       memcpy(cp_tmp, _items[i], lengths[i]);
   379       cp_tmp += lengths[i];
   380       *cp_tmp++ = separator;
   381     }
   382   }
   383   *--cp_tmp = '\0';     // Replace the extra separator.
   384   return cp;
   385 }
   387 // Note:  path must be c-heap-allocated (or NULL); it is freed if non-null.
   388 char*
   389 SysClassPath::add_to_path(const char* path, const char* str, bool prepend) {
   390   char *cp;
   392   assert(str != NULL, "just checking");
   393   if (path == NULL) {
   394     size_t len = strlen(str) + 1;
   395     cp = NEW_C_HEAP_ARRAY(char, len);
   396     memcpy(cp, str, len);                       // copy the trailing null
   397   } else {
   398     const char separator = *os::path_separator();
   399     size_t old_len = strlen(path);
   400     size_t str_len = strlen(str);
   401     size_t len = old_len + str_len + 2;
   403     if (prepend) {
   404       cp = NEW_C_HEAP_ARRAY(char, len);
   405       char* cp_tmp = cp;
   406       memcpy(cp_tmp, str, str_len);
   407       cp_tmp += str_len;
   408       *cp_tmp = separator;
   409       memcpy(++cp_tmp, path, old_len + 1);      // copy the trailing null
   410       FREE_C_HEAP_ARRAY(char, path);
   411     } else {
   412       cp = REALLOC_C_HEAP_ARRAY(char, path, len);
   413       char* cp_tmp = cp + old_len;
   414       *cp_tmp = separator;
   415       memcpy(++cp_tmp, str, str_len + 1);       // copy the trailing null
   416     }
   417   }
   418   return cp;
   419 }
   421 // Scan the directory and append any jar or zip files found to path.
   422 // Note:  path must be c-heap-allocated (or NULL); it is freed if non-null.
   423 char* SysClassPath::add_jars_to_path(char* path, const char* directory) {
   424   DIR* dir = os::opendir(directory);
   425   if (dir == NULL) return path;
   427   char dir_sep[2] = { '\0', '\0' };
   428   size_t directory_len = strlen(directory);
   429   const char fileSep = *os::file_separator();
   430   if (directory[directory_len - 1] != fileSep) dir_sep[0] = fileSep;
   432   /* Scan the directory for jars/zips, appending them to path. */
   433   struct dirent *entry;
   434   char *dbuf = NEW_C_HEAP_ARRAY(char, os::readdir_buf_size(directory));
   435   while ((entry = os::readdir(dir, (dirent *) dbuf)) != NULL) {
   436     const char* name = entry->d_name;
   437     const char* ext = name + strlen(name) - 4;
   438     bool isJarOrZip = ext > name &&
   439       (os::file_name_strcmp(ext, ".jar") == 0 ||
   440        os::file_name_strcmp(ext, ".zip") == 0);
   441     if (isJarOrZip) {
   442       char* jarpath = NEW_C_HEAP_ARRAY(char, directory_len + 2 + strlen(name));
   443       sprintf(jarpath, "%s%s%s", directory, dir_sep, name);
   444       path = add_to_path(path, jarpath, false);
   445       FREE_C_HEAP_ARRAY(char, jarpath);
   446     }
   447   }
   448   FREE_C_HEAP_ARRAY(char, dbuf);
   449   os::closedir(dir);
   450   return path;
   451 }
   453 // Parses a memory size specification string.
   454 static bool atomull(const char *s, julong* result) {
   455   julong n = 0;
   456   int args_read = sscanf(s, os::julong_format_specifier(), &n);
   457   if (args_read != 1) {
   458     return false;
   459   }
   460   while (*s != '\0' && isdigit(*s)) {
   461     s++;
   462   }
   463   // 4705540: illegal if more characters are found after the first non-digit
   464   if (strlen(s) > 1) {
   465     return false;
   466   }
   467   switch (*s) {
   468     case 'T': case 't':
   469       *result = n * G * K;
   470       // Check for overflow.
   471       if (*result/((julong)G * K) != n) return false;
   472       return true;
   473     case 'G': case 'g':
   474       *result = n * G;
   475       if (*result/G != n) return false;
   476       return true;
   477     case 'M': case 'm':
   478       *result = n * M;
   479       if (*result/M != n) return false;
   480       return true;
   481     case 'K': case 'k':
   482       *result = n * K;
   483       if (*result/K != n) return false;
   484       return true;
   485     case '\0':
   486       *result = n;
   487       return true;
   488     default:
   489       return false;
   490   }
   491 }
   493 Arguments::ArgsRange Arguments::check_memory_size(julong size, julong min_size) {
   494   if (size < min_size) return arg_too_small;
   495   // Check that size will fit in a size_t (only relevant on 32-bit)
   496   if (size > max_uintx) return arg_too_big;
   497   return arg_in_range;
   498 }
   500 // Describe an argument out of range error
   501 void Arguments::describe_range_error(ArgsRange errcode) {
   502   switch(errcode) {
   503   case arg_too_big:
   504     jio_fprintf(defaultStream::error_stream(),
   505                 "The specified size exceeds the maximum "
   506                 "representable size.\n");
   507     break;
   508   case arg_too_small:
   509   case arg_unreadable:
   510   case arg_in_range:
   511     // do nothing for now
   512     break;
   513   default:
   514     ShouldNotReachHere();
   515   }
   516 }
   518 static bool set_bool_flag(char* name, bool value, FlagValueOrigin origin) {
   519   return CommandLineFlags::boolAtPut(name, &value, origin);
   520 }
   522 static bool set_fp_numeric_flag(char* name, char* value, FlagValueOrigin origin) {
   523   double v;
   524   if (sscanf(value, "%lf", &v) != 1) {
   525     return false;
   526   }
   528   if (CommandLineFlags::doubleAtPut(name, &v, origin)) {
   529     return true;
   530   }
   531   return false;
   532 }
   534 static bool set_numeric_flag(char* name, char* value, FlagValueOrigin origin) {
   535   julong v;
   536   intx intx_v;
   537   bool is_neg = false;
   538   // Check the sign first since atomull() parses only unsigned values.
   539   if (*value == '-') {
   540     if (!CommandLineFlags::intxAt(name, &intx_v)) {
   541       return false;
   542     }
   543     value++;
   544     is_neg = true;
   545   }
   546   if (!atomull(value, &v)) {
   547     return false;
   548   }
   549   intx_v = (intx) v;
   550   if (is_neg) {
   551     intx_v = -intx_v;
   552   }
   553   if (CommandLineFlags::intxAtPut(name, &intx_v, origin)) {
   554     return true;
   555   }
   556   uintx uintx_v = (uintx) v;
   557   if (!is_neg && CommandLineFlags::uintxAtPut(name, &uintx_v, origin)) {
   558     return true;
   559   }
   560   uint64_t uint64_t_v = (uint64_t) v;
   561   if (!is_neg && CommandLineFlags::uint64_tAtPut(name, &uint64_t_v, origin)) {
   562     return true;
   563   }
   564   return false;
   565 }
   567 static bool set_string_flag(char* name, const char* value, FlagValueOrigin origin) {
   568   if (!CommandLineFlags::ccstrAtPut(name, &value, origin))  return false;
   569   // Contract:  CommandLineFlags always returns a pointer that needs freeing.
   570   FREE_C_HEAP_ARRAY(char, value);
   571   return true;
   572 }
   574 static bool append_to_string_flag(char* name, const char* new_value, FlagValueOrigin origin) {
   575   const char* old_value = "";
   576   if (!CommandLineFlags::ccstrAt(name, &old_value))  return false;
   577   size_t old_len = old_value != NULL ? strlen(old_value) : 0;
   578   size_t new_len = strlen(new_value);
   579   const char* value;
   580   char* free_this_too = NULL;
   581   if (old_len == 0) {
   582     value = new_value;
   583   } else if (new_len == 0) {
   584     value = old_value;
   585   } else {
   586     char* buf = NEW_C_HEAP_ARRAY(char, old_len + 1 + new_len + 1);
   587     // each new setting adds another LINE to the switch:
   588     sprintf(buf, "%s\n%s", old_value, new_value);
   589     value = buf;
   590     free_this_too = buf;
   591   }
   592   (void) CommandLineFlags::ccstrAtPut(name, &value, origin);
   593   // CommandLineFlags always returns a pointer that needs freeing.
   594   FREE_C_HEAP_ARRAY(char, value);
   595   if (free_this_too != NULL) {
   596     // CommandLineFlags made its own copy, so I must delete my own temp. buffer.
   597     FREE_C_HEAP_ARRAY(char, free_this_too);
   598   }
   599   return true;
   600 }
   602 bool Arguments::parse_argument(const char* arg, FlagValueOrigin origin) {
   604   // range of acceptable characters spelled out for portability reasons
   605 #define NAME_RANGE  "[abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_]"
   606 #define BUFLEN 255
   607   char name[BUFLEN+1];
   608   char dummy;
   610   if (sscanf(arg, "-%" XSTR(BUFLEN) NAME_RANGE "%c", name, &dummy) == 1) {
   611     return set_bool_flag(name, false, origin);
   612   }
   613   if (sscanf(arg, "+%" XSTR(BUFLEN) NAME_RANGE "%c", name, &dummy) == 1) {
   614     return set_bool_flag(name, true, origin);
   615   }
   617   char punct;
   618   if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "%c", name, &punct) == 2 && punct == '=') {
   619     const char* value = strchr(arg, '=') + 1;
   620     Flag* flag = Flag::find_flag(name, strlen(name));
   621     if (flag != NULL && flag->is_ccstr()) {
   622       if (flag->ccstr_accumulates()) {
   623         return append_to_string_flag(name, value, origin);
   624       } else {
   625         if (value[0] == '\0') {
   626           value = NULL;
   627         }
   628         return set_string_flag(name, value, origin);
   629       }
   630     }
   631   }
   633   if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE ":%c", name, &punct) == 2 && punct == '=') {
   634     const char* value = strchr(arg, '=') + 1;
   635     // -XX:Foo:=xxx will reset the string flag to the given value.
   636     if (value[0] == '\0') {
   637       value = NULL;
   638     }
   639     return set_string_flag(name, value, origin);
   640   }
   642 #define SIGNED_FP_NUMBER_RANGE "[-0123456789.]"
   643 #define SIGNED_NUMBER_RANGE    "[-0123456789]"
   644 #define        NUMBER_RANGE    "[0123456789]"
   645   char value[BUFLEN + 1];
   646   char value2[BUFLEN + 1];
   647   if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "=" "%" XSTR(BUFLEN) SIGNED_NUMBER_RANGE "." "%" XSTR(BUFLEN) NUMBER_RANGE "%c", name, value, value2, &dummy) == 3) {
   648     // Looks like a floating-point number -- try again with more lenient format string
   649     if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "=" "%" XSTR(BUFLEN) SIGNED_FP_NUMBER_RANGE "%c", name, value, &dummy) == 2) {
   650       return set_fp_numeric_flag(name, value, origin);
   651     }
   652   }
   654 #define VALUE_RANGE "[-kmgtKMGT0123456789]"
   655   if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "=" "%" XSTR(BUFLEN) VALUE_RANGE "%c", name, value, &dummy) == 2) {
   656     return set_numeric_flag(name, value, origin);
   657   }
   659   return false;
   660 }
   662 void Arguments::add_string(char*** bldarray, int* count, const char* arg) {
   663   assert(bldarray != NULL, "illegal argument");
   665   if (arg == NULL) {
   666     return;
   667   }
   669   int index = *count;
   671   // expand the array and add arg to the last element
   672   (*count)++;
   673   if (*bldarray == NULL) {
   674     *bldarray = NEW_C_HEAP_ARRAY(char*, *count);
   675   } else {
   676     *bldarray = REALLOC_C_HEAP_ARRAY(char*, *bldarray, *count);
   677   }
   678   (*bldarray)[index] = strdup(arg);
   679 }
   681 void Arguments::build_jvm_args(const char* arg) {
   682   add_string(&_jvm_args_array, &_num_jvm_args, arg);
   683 }
   685 void Arguments::build_jvm_flags(const char* arg) {
   686   add_string(&_jvm_flags_array, &_num_jvm_flags, arg);
   687 }
   689 // utility function to return a string that concatenates all
   690 // strings in a given char** array
   691 const char* Arguments::build_resource_string(char** args, int count) {
   692   if (args == NULL || count == 0) {
   693     return NULL;
   694   }
   695   size_t length = strlen(args[0]) + 1; // add 1 for the null terminator
   696   for (int i = 1; i < count; i++) {
   697     length += strlen(args[i]) + 1; // add 1 for a space
   698   }
   699   char* s = NEW_RESOURCE_ARRAY(char, length);
   700   strcpy(s, args[0]);
   701   for (int j = 1; j < count; j++) {
   702     strcat(s, " ");
   703     strcat(s, args[j]);
   704   }
   705   return (const char*) s;
   706 }
   708 void Arguments::print_on(outputStream* st) {
   709   st->print_cr("VM Arguments:");
   710   if (num_jvm_flags() > 0) {
   711     st->print("jvm_flags: "); print_jvm_flags_on(st);
   712   }
   713   if (num_jvm_args() > 0) {
   714     st->print("jvm_args: "); print_jvm_args_on(st);
   715   }
   716   st->print_cr("java_command: %s", java_command() ? java_command() : "<unknown>");
   717   st->print_cr("Launcher Type: %s", _sun_java_launcher);
   718 }
   720 void Arguments::print_jvm_flags_on(outputStream* st) {
   721   if (_num_jvm_flags > 0) {
   722     for (int i=0; i < _num_jvm_flags; i++) {
   723       st->print("%s ", _jvm_flags_array[i]);
   724     }
   725     st->print_cr("");
   726   }
   727 }
   729 void Arguments::print_jvm_args_on(outputStream* st) {
   730   if (_num_jvm_args > 0) {
   731     for (int i=0; i < _num_jvm_args; i++) {
   732       st->print("%s ", _jvm_args_array[i]);
   733     }
   734     st->print_cr("");
   735   }
   736 }
   738 bool Arguments::process_argument(const char* arg,
   739     jboolean ignore_unrecognized, FlagValueOrigin origin) {
   741   JDK_Version since = JDK_Version();
   743   if (parse_argument(arg, origin)) {
   744     // do nothing
   745   } else if (is_newly_obsolete(arg, &since)) {
   746     enum { bufsize = 256 };
   747     char buffer[bufsize];
   748     since.to_string(buffer, bufsize);
   749     jio_fprintf(defaultStream::error_stream(),
   750       "Warning: The flag %s has been EOL'd as of %s and will"
   751       " be ignored\n", arg, buffer);
   752   } else {
   753     if (!ignore_unrecognized) {
   754       jio_fprintf(defaultStream::error_stream(),
   755                   "Unrecognized VM option '%s'\n", arg);
   756       // allow for commandline "commenting out" options like -XX:#+Verbose
   757       if (strlen(arg) == 0 || arg[0] != '#') {
   758         return false;
   759       }
   760     }
   761   }
   762   return true;
   763 }
   765 bool Arguments::process_settings_file(const char* file_name, bool should_exist, jboolean ignore_unrecognized) {
   766   FILE* stream = fopen(file_name, "rb");
   767   if (stream == NULL) {
   768     if (should_exist) {
   769       jio_fprintf(defaultStream::error_stream(),
   770                   "Could not open settings file %s\n", file_name);
   771       return false;
   772     } else {
   773       return true;
   774     }
   775   }
   777   char token[1024];
   778   int  pos = 0;
   780   bool in_white_space = true;
   781   bool in_comment     = false;
   782   bool in_quote       = false;
   783   char quote_c        = 0;
   784   bool result         = true;
   786   int c = getc(stream);
   787   while(c != EOF) {
   788     if (in_white_space) {
   789       if (in_comment) {
   790         if (c == '\n') in_comment = false;
   791       } else {
   792         if (c == '#') in_comment = true;
   793         else if (!isspace(c)) {
   794           in_white_space = false;
   795           token[pos++] = c;
   796         }
   797       }
   798     } else {
   799       if (c == '\n' || (!in_quote && isspace(c))) {
   800         // token ends at newline, or at unquoted whitespace
   801         // this allows a way to include spaces in string-valued options
   802         token[pos] = '\0';
   803         logOption(token);
   804         result &= process_argument(token, ignore_unrecognized, CONFIG_FILE);
   805         build_jvm_flags(token);
   806         pos = 0;
   807         in_white_space = true;
   808         in_quote = false;
   809       } else if (!in_quote && (c == '\'' || c == '"')) {
   810         in_quote = true;
   811         quote_c = c;
   812       } else if (in_quote && (c == quote_c)) {
   813         in_quote = false;
   814       } else {
   815         token[pos++] = c;
   816       }
   817     }
   818     c = getc(stream);
   819   }
   820   if (pos > 0) {
   821     token[pos] = '\0';
   822     result &= process_argument(token, ignore_unrecognized, CONFIG_FILE);
   823     build_jvm_flags(token);
   824   }
   825   fclose(stream);
   826   return result;
   827 }
   829 //=============================================================================================================
   830 // Parsing of properties (-D)
   832 const char* Arguments::get_property(const char* key) {
   833   return PropertyList_get_value(system_properties(), key);
   834 }
   836 bool Arguments::add_property(const char* prop) {
   837   const char* eq = strchr(prop, '=');
   838   char* key;
   839   // ns must be static--its address may be stored in a SystemProperty object.
   840   const static char ns[1] = {0};
   841   char* value = (char *)ns;
   843   size_t key_len = (eq == NULL) ? strlen(prop) : (eq - prop);
   844   key = AllocateHeap(key_len + 1, "add_property");
   845   strncpy(key, prop, key_len);
   846   key[key_len] = '\0';
   848   if (eq != NULL) {
   849     size_t value_len = strlen(prop) - key_len - 1;
   850     value = AllocateHeap(value_len + 1, "add_property");
   851     strncpy(value, &prop[key_len + 1], value_len + 1);
   852   }
   854   if (strcmp(key, "java.compiler") == 0) {
   855     process_java_compiler_argument(value);
   856     FreeHeap(key);
   857     if (eq != NULL) {
   858       FreeHeap(value);
   859     }
   860     return true;
   861   } else if (strcmp(key, "sun.java.command") == 0) {
   862     _java_command = value;
   864     // don't add this property to the properties exposed to the java application
   865     FreeHeap(key);
   866     return true;
   867   } else if (strcmp(key, "sun.java.launcher.pid") == 0) {
   868     // launcher.pid property is private and is processed
   869     // in process_sun_java_launcher_properties();
   870     // the sun.java.launcher property is passed on to the java application
   871     FreeHeap(key);
   872     if (eq != NULL) {
   873       FreeHeap(value);
   874     }
   875     return true;
   876   } else if (strcmp(key, "java.vendor.url.bug") == 0) {
   877     // save it in _java_vendor_url_bug, so JVM fatal error handler can access
   878     // its value without going through the property list or making a Java call.
   879     _java_vendor_url_bug = value;
   880   } else if (strcmp(key, "sun.boot.library.path") == 0) {
   881     PropertyList_unique_add(&_system_properties, key, value, true);
   882     return true;
   883   }
   884   // Create new property and add at the end of the list
   885   PropertyList_unique_add(&_system_properties, key, value);
   886   return true;
   887 }
   889 //===========================================================================================================
   890 // Setting int/mixed/comp mode flags
   892 void Arguments::set_mode_flags(Mode mode) {
   893   // Set up default values for all flags.
   894   // If you add a flag to any of the branches below,
   895   // add a default value for it here.
   896   set_java_compiler(false);
   897   _mode                      = mode;
   899   // Ensure Agent_OnLoad has the correct initial values.
   900   // This may not be the final mode; mode may change later in onload phase.
   901   PropertyList_unique_add(&_system_properties, "java.vm.info",
   902                           (char*)Abstract_VM_Version::vm_info_string(), false);
   904   UseInterpreter             = true;
   905   UseCompiler                = true;
   906   UseLoopCounter             = true;
   908   // Default values may be platform/compiler dependent -
   909   // use the saved values
   910   ClipInlining               = Arguments::_ClipInlining;
   911   AlwaysCompileLoopMethods   = Arguments::_AlwaysCompileLoopMethods;
   912   UseOnStackReplacement      = Arguments::_UseOnStackReplacement;
   913   BackgroundCompilation      = Arguments::_BackgroundCompilation;
   914   Tier2CompileThreshold      = Arguments::_Tier2CompileThreshold;
   916   // Change from defaults based on mode
   917   switch (mode) {
   918   default:
   919     ShouldNotReachHere();
   920     break;
   921   case _int:
   922     UseCompiler              = false;
   923     UseLoopCounter           = false;
   924     AlwaysCompileLoopMethods = false;
   925     UseOnStackReplacement    = false;
   926     break;
   927   case _mixed:
   928     // same as default
   929     break;
   930   case _comp:
   931     UseInterpreter           = false;
   932     BackgroundCompilation    = false;
   933     ClipInlining             = false;
   934     break;
   935   }
   936 }
   938 // Conflict: required to use shared spaces (-Xshare:on), but
   939 // incompatible command line options were chosen.
   941 static void no_shared_spaces() {
   942   if (RequireSharedSpaces) {
   943     jio_fprintf(defaultStream::error_stream(),
   944       "Class data sharing is inconsistent with other specified options.\n");
   945     vm_exit_during_initialization("Unable to use shared archive.", NULL);
   946   } else {
   947     FLAG_SET_DEFAULT(UseSharedSpaces, false);
   948   }
   949 }
   951 #ifndef KERNEL
   952 // If the user has chosen ParallelGCThreads > 0, we set UseParNewGC
   953 // if it's not explictly set or unset. If the user has chosen
   954 // UseParNewGC and not explicitly set ParallelGCThreads we
   955 // set it, unless this is a single cpu machine.
   956 void Arguments::set_parnew_gc_flags() {
   957   assert(!UseSerialGC && !UseParallelOldGC && !UseParallelGC && !UseG1GC,
   958          "control point invariant");
   959   assert(UseParNewGC, "Error");
   961   // Turn off AdaptiveSizePolicy by default for parnew until it is
   962   // complete.
   963   if (FLAG_IS_DEFAULT(UseAdaptiveSizePolicy)) {
   964     FLAG_SET_DEFAULT(UseAdaptiveSizePolicy, false);
   965   }
   967   if (ParallelGCThreads == 0) {
   968     FLAG_SET_DEFAULT(ParallelGCThreads,
   969                      Abstract_VM_Version::parallel_worker_threads());
   970     if (ParallelGCThreads == 1) {
   971       FLAG_SET_DEFAULT(UseParNewGC, false);
   972       FLAG_SET_DEFAULT(ParallelGCThreads, 0);
   973     }
   974   }
   975   if (UseParNewGC) {
   976     // CDS doesn't work with ParNew yet
   977     no_shared_spaces();
   979     // By default YoungPLABSize and OldPLABSize are set to 4096 and 1024 respectively,
   980     // these settings are default for Parallel Scavenger. For ParNew+Tenured configuration
   981     // we set them to 1024 and 1024.
   982     // See CR 6362902.
   983     if (FLAG_IS_DEFAULT(YoungPLABSize)) {
   984       FLAG_SET_DEFAULT(YoungPLABSize, (intx)1024);
   985     }
   986     if (FLAG_IS_DEFAULT(OldPLABSize)) {
   987       FLAG_SET_DEFAULT(OldPLABSize, (intx)1024);
   988     }
   990     // AlwaysTenure flag should make ParNew promote all at first collection.
   991     // See CR 6362902.
   992     if (AlwaysTenure) {
   993       FLAG_SET_CMDLINE(intx, MaxTenuringThreshold, 0);
   994     }
   995     // When using compressed oops, we use local overflow stacks,
   996     // rather than using a global overflow list chained through
   997     // the klass word of the object's pre-image.
   998     if (UseCompressedOops && !ParGCUseLocalOverflow) {
   999       if (!FLAG_IS_DEFAULT(ParGCUseLocalOverflow)) {
  1000         warning("Forcing +ParGCUseLocalOverflow: needed if using compressed references");
  1002       FLAG_SET_DEFAULT(ParGCUseLocalOverflow, true);
  1004     assert(ParGCUseLocalOverflow || !UseCompressedOops, "Error");
  1008 // Adjust some sizes to suit CMS and/or ParNew needs; these work well on
  1009 // sparc/solaris for certain applications, but would gain from
  1010 // further optimization and tuning efforts, and would almost
  1011 // certainly gain from analysis of platform and environment.
  1012 void Arguments::set_cms_and_parnew_gc_flags() {
  1013   assert(!UseSerialGC && !UseParallelOldGC && !UseParallelGC, "Error");
  1014   assert(UseConcMarkSweepGC, "CMS is expected to be on here");
  1016   // If we are using CMS, we prefer to UseParNewGC,
  1017   // unless explicitly forbidden.
  1018   if (FLAG_IS_DEFAULT(UseParNewGC)) {
  1019     FLAG_SET_ERGO(bool, UseParNewGC, true);
  1022   // Turn off AdaptiveSizePolicy by default for cms until it is
  1023   // complete.
  1024   if (FLAG_IS_DEFAULT(UseAdaptiveSizePolicy)) {
  1025     FLAG_SET_DEFAULT(UseAdaptiveSizePolicy, false);
  1028   // In either case, adjust ParallelGCThreads and/or UseParNewGC
  1029   // as needed.
  1030   if (UseParNewGC) {
  1031     set_parnew_gc_flags();
  1034   // Now make adjustments for CMS
  1035   size_t young_gen_per_worker;
  1036   intx new_ratio;
  1037   size_t min_new_default;
  1038   intx tenuring_default;
  1039   if (CMSUseOldDefaults) {  // old defaults: "old" as of 6.0
  1040     if FLAG_IS_DEFAULT(CMSYoungGenPerWorker) {
  1041       FLAG_SET_ERGO(intx, CMSYoungGenPerWorker, 4*M);
  1043     young_gen_per_worker = 4*M;
  1044     new_ratio = (intx)15;
  1045     min_new_default = 4*M;
  1046     tenuring_default = (intx)0;
  1047   } else { // new defaults: "new" as of 6.0
  1048     young_gen_per_worker = CMSYoungGenPerWorker;
  1049     new_ratio = (intx)7;
  1050     min_new_default = 16*M;
  1051     tenuring_default = (intx)4;
  1054   // Preferred young gen size for "short" pauses
  1055   const uintx parallel_gc_threads =
  1056     (ParallelGCThreads == 0 ? 1 : ParallelGCThreads);
  1057   const size_t preferred_max_new_size_unaligned =
  1058     ScaleForWordSize(young_gen_per_worker * parallel_gc_threads);
  1059   const size_t preferred_max_new_size =
  1060     align_size_up(preferred_max_new_size_unaligned, os::vm_page_size());
  1062   // Unless explicitly requested otherwise, size young gen
  1063   // for "short" pauses ~ 4M*ParallelGCThreads
  1065   // If either MaxNewSize or NewRatio is set on the command line,
  1066   // assume the user is trying to set the size of the young gen.
  1068   if (FLAG_IS_DEFAULT(MaxNewSize) && FLAG_IS_DEFAULT(NewRatio)) {
  1070     // Set MaxNewSize to our calculated preferred_max_new_size unless
  1071     // NewSize was set on the command line and it is larger than
  1072     // preferred_max_new_size.
  1073     if (!FLAG_IS_DEFAULT(NewSize)) {   // NewSize explicitly set at command-line
  1074       FLAG_SET_ERGO(uintx, MaxNewSize, MAX2(NewSize, preferred_max_new_size));
  1075     } else {
  1076       FLAG_SET_ERGO(uintx, MaxNewSize, preferred_max_new_size);
  1078     if (PrintGCDetails && Verbose) {
  1079       // Too early to use gclog_or_tty
  1080       tty->print_cr("Ergo set MaxNewSize: " SIZE_FORMAT, MaxNewSize);
  1083     // Unless explicitly requested otherwise, prefer a large
  1084     // Old to Young gen size so as to shift the collection load
  1085     // to the old generation concurrent collector
  1087     // If this is only guarded by FLAG_IS_DEFAULT(NewRatio)
  1088     // then NewSize and OldSize may be calculated.  That would
  1089     // generally lead to some differences with ParNewGC for which
  1090     // there was no obvious reason.  Also limit to the case where
  1091     // MaxNewSize has not been set.
  1093     FLAG_SET_ERGO(intx, NewRatio, MAX2(NewRatio, new_ratio));
  1095     // Code along this path potentially sets NewSize and OldSize
  1097     // Calculate the desired minimum size of the young gen but if
  1098     // NewSize has been set on the command line, use it here since
  1099     // it should be the final value.
  1100     size_t min_new;
  1101     if (FLAG_IS_DEFAULT(NewSize)) {
  1102       min_new = align_size_up(ScaleForWordSize(min_new_default),
  1103                               os::vm_page_size());
  1104     } else {
  1105       min_new = NewSize;
  1107     size_t prev_initial_size = InitialHeapSize;
  1108     if (prev_initial_size != 0 && prev_initial_size < min_new + OldSize) {
  1109       FLAG_SET_ERGO(uintx, InitialHeapSize, min_new + OldSize);
  1110       // Currently minimum size and the initial heap sizes are the same.
  1111       set_min_heap_size(InitialHeapSize);
  1112       if (PrintGCDetails && Verbose) {
  1113         warning("Initial heap size increased to " SIZE_FORMAT " M from "
  1114                 SIZE_FORMAT " M; use -XX:NewSize=... for finer control.",
  1115                 InitialHeapSize/M, prev_initial_size/M);
  1119     // MaxHeapSize is aligned down in collectorPolicy
  1120     size_t max_heap =
  1121       align_size_down(MaxHeapSize,
  1122                       CardTableRS::ct_max_alignment_constraint());
  1124     if (PrintGCDetails && Verbose) {
  1125       // Too early to use gclog_or_tty
  1126       tty->print_cr("CMS set min_heap_size: " SIZE_FORMAT
  1127            " initial_heap_size:  " SIZE_FORMAT
  1128            " max_heap: " SIZE_FORMAT,
  1129            min_heap_size(), InitialHeapSize, max_heap);
  1131     if (max_heap > min_new) {
  1132       // Unless explicitly requested otherwise, make young gen
  1133       // at least min_new, and at most preferred_max_new_size.
  1134       if (FLAG_IS_DEFAULT(NewSize)) {
  1135         FLAG_SET_ERGO(uintx, NewSize, MAX2(NewSize, min_new));
  1136         FLAG_SET_ERGO(uintx, NewSize, MIN2(preferred_max_new_size, NewSize));
  1137         if (PrintGCDetails && Verbose) {
  1138           // Too early to use gclog_or_tty
  1139           tty->print_cr("Ergo set NewSize: " SIZE_FORMAT, NewSize);
  1142       // Unless explicitly requested otherwise, size old gen
  1143       // so that it's at least 3X of NewSize to begin with;
  1144       // later NewRatio will decide how it grows; see above.
  1145       if (FLAG_IS_DEFAULT(OldSize)) {
  1146         if (max_heap > NewSize) {
  1147           FLAG_SET_ERGO(uintx, OldSize, MIN2(3*NewSize, max_heap - NewSize));
  1148           if (PrintGCDetails && Verbose) {
  1149             // Too early to use gclog_or_tty
  1150             tty->print_cr("Ergo set OldSize: " SIZE_FORMAT, OldSize);
  1156   // Unless explicitly requested otherwise, definitely
  1157   // promote all objects surviving "tenuring_default" scavenges.
  1158   if (FLAG_IS_DEFAULT(MaxTenuringThreshold) &&
  1159       FLAG_IS_DEFAULT(SurvivorRatio)) {
  1160     FLAG_SET_ERGO(intx, MaxTenuringThreshold, tenuring_default);
  1162   // If we decided above (or user explicitly requested)
  1163   // `promote all' (via MaxTenuringThreshold := 0),
  1164   // prefer minuscule survivor spaces so as not to waste
  1165   // space for (non-existent) survivors
  1166   if (FLAG_IS_DEFAULT(SurvivorRatio) && MaxTenuringThreshold == 0) {
  1167     FLAG_SET_ERGO(intx, SurvivorRatio, MAX2((intx)1024, SurvivorRatio));
  1169   // If OldPLABSize is set and CMSParPromoteBlocksToClaim is not,
  1170   // set CMSParPromoteBlocksToClaim equal to OldPLABSize.
  1171   // This is done in order to make ParNew+CMS configuration to work
  1172   // with YoungPLABSize and OldPLABSize options.
  1173   // See CR 6362902.
  1174   if (!FLAG_IS_DEFAULT(OldPLABSize)) {
  1175     if (FLAG_IS_DEFAULT(CMSParPromoteBlocksToClaim)) {
  1176       // OldPLABSize is not the default value but CMSParPromoteBlocksToClaim
  1177       // is.  In this situtation let CMSParPromoteBlocksToClaim follow
  1178       // the value (either from the command line or ergonomics) of
  1179       // OldPLABSize.  Following OldPLABSize is an ergonomics decision.
  1180       FLAG_SET_ERGO(uintx, CMSParPromoteBlocksToClaim, OldPLABSize);
  1181     } else {
  1182       // OldPLABSize and CMSParPromoteBlocksToClaim are both set.
  1183       // CMSParPromoteBlocksToClaim is a collector-specific flag, so
  1184       // we'll let it to take precedence.
  1185       jio_fprintf(defaultStream::error_stream(),
  1186                   "Both OldPLABSize and CMSParPromoteBlocksToClaim"
  1187                   " options are specified for the CMS collector."
  1188                   " CMSParPromoteBlocksToClaim will take precedence.\n");
  1191   if (!FLAG_IS_DEFAULT(ResizeOldPLAB) && !ResizeOldPLAB) {
  1192     // OldPLAB sizing manually turned off: Use a larger default setting,
  1193     // unless it was manually specified. This is because a too-low value
  1194     // will slow down scavenges.
  1195     if (FLAG_IS_DEFAULT(CMSParPromoteBlocksToClaim)) {
  1196       FLAG_SET_ERGO(uintx, CMSParPromoteBlocksToClaim, 50); // default value before 6631166
  1199   // Overwrite OldPLABSize which is the variable we will internally use everywhere.
  1200   FLAG_SET_ERGO(uintx, OldPLABSize, CMSParPromoteBlocksToClaim);
  1201   // If either of the static initialization defaults have changed, note this
  1202   // modification.
  1203   if (!FLAG_IS_DEFAULT(CMSParPromoteBlocksToClaim) || !FLAG_IS_DEFAULT(OldPLABWeight)) {
  1204     CFLS_LAB::modify_initialization(OldPLABSize, OldPLABWeight);
  1206   if (PrintGCDetails && Verbose) {
  1207     tty->print_cr("MarkStackSize: %uk  MarkStackSizeMax: %uk",
  1208       MarkStackSize / K, MarkStackSizeMax / K);
  1209     tty->print_cr("ConcGCThreads: %u", ConcGCThreads);
  1212 #endif // KERNEL
  1214 inline uintx max_heap_for_compressed_oops() {
  1215   LP64_ONLY(return oopDesc::OopEncodingHeapMax - MaxPermSize - os::vm_page_size());
  1216   NOT_LP64(ShouldNotReachHere(); return 0);
  1219 bool Arguments::should_auto_select_low_pause_collector() {
  1220   if (UseAutoGCSelectPolicy &&
  1221       !FLAG_IS_DEFAULT(MaxGCPauseMillis) &&
  1222       (MaxGCPauseMillis <= AutoGCSelectPauseMillis)) {
  1223     if (PrintGCDetails) {
  1224       // Cannot use gclog_or_tty yet.
  1225       tty->print_cr("Automatic selection of the low pause collector"
  1226        " based on pause goal of %d (ms)", MaxGCPauseMillis);
  1228     return true;
  1230   return false;
  1233 void Arguments::set_ergonomics_flags() {
  1234   // Parallel GC is not compatible with sharing. If one specifies
  1235   // that they want sharing explicitly, do not set ergonomics flags.
  1236   if (DumpSharedSpaces || ForceSharedSpaces) {
  1237     return;
  1240   if (os::is_server_class_machine() && !force_client_mode ) {
  1241     // If no other collector is requested explicitly,
  1242     // let the VM select the collector based on
  1243     // machine class and automatic selection policy.
  1244     if (!UseSerialGC &&
  1245         !UseConcMarkSweepGC &&
  1246         !UseG1GC &&
  1247         !UseParNewGC &&
  1248         !DumpSharedSpaces &&
  1249         FLAG_IS_DEFAULT(UseParallelGC)) {
  1250       if (should_auto_select_low_pause_collector()) {
  1251         FLAG_SET_ERGO(bool, UseConcMarkSweepGC, true);
  1252       } else {
  1253         FLAG_SET_ERGO(bool, UseParallelGC, true);
  1255       no_shared_spaces();
  1259 #ifndef ZERO
  1260 #ifdef _LP64
  1261   // Check that UseCompressedOops can be set with the max heap size allocated
  1262   // by ergonomics.
  1263   if (MaxHeapSize <= max_heap_for_compressed_oops()) {
  1264 #ifndef COMPILER1
  1265     if (FLAG_IS_DEFAULT(UseCompressedOops) && !UseG1GC) {
  1266       FLAG_SET_ERGO(bool, UseCompressedOops, true);
  1268 #endif
  1269 #ifdef _WIN64
  1270     if (UseLargePages && UseCompressedOops) {
  1271       // Cannot allocate guard pages for implicit checks in indexed addressing
  1272       // mode, when large pages are specified on windows.
  1273       // This flag could be switched ON if narrow oop base address is set to 0,
  1274       // see code in Universe::initialize_heap().
  1275       Universe::set_narrow_oop_use_implicit_null_checks(false);
  1277 #endif //  _WIN64
  1278   } else {
  1279     if (UseCompressedOops && !FLAG_IS_DEFAULT(UseCompressedOops)) {
  1280       warning("Max heap size too large for Compressed Oops");
  1281       FLAG_SET_DEFAULT(UseCompressedOops, false);
  1284   // Also checks that certain machines are slower with compressed oops
  1285   // in vm_version initialization code.
  1286 #endif // _LP64
  1287 #endif // !ZERO
  1290 void Arguments::set_parallel_gc_flags() {
  1291   assert(UseParallelGC || UseParallelOldGC, "Error");
  1292   // If parallel old was requested, automatically enable parallel scavenge.
  1293   if (UseParallelOldGC && !UseParallelGC && FLAG_IS_DEFAULT(UseParallelGC)) {
  1294     FLAG_SET_DEFAULT(UseParallelGC, true);
  1297   // If no heap maximum was requested explicitly, use some reasonable fraction
  1298   // of the physical memory, up to a maximum of 1GB.
  1299   if (UseParallelGC) {
  1300     FLAG_SET_ERGO(uintx, ParallelGCThreads,
  1301                   Abstract_VM_Version::parallel_worker_threads());
  1303     // If InitialSurvivorRatio or MinSurvivorRatio were not specified, but the
  1304     // SurvivorRatio has been set, reset their default values to SurvivorRatio +
  1305     // 2.  By doing this we make SurvivorRatio also work for Parallel Scavenger.
  1306     // See CR 6362902 for details.
  1307     if (!FLAG_IS_DEFAULT(SurvivorRatio)) {
  1308       if (FLAG_IS_DEFAULT(InitialSurvivorRatio)) {
  1309          FLAG_SET_DEFAULT(InitialSurvivorRatio, SurvivorRatio + 2);
  1311       if (FLAG_IS_DEFAULT(MinSurvivorRatio)) {
  1312         FLAG_SET_DEFAULT(MinSurvivorRatio, SurvivorRatio + 2);
  1316     if (UseParallelOldGC) {
  1317       // Par compact uses lower default values since they are treated as
  1318       // minimums.  These are different defaults because of the different
  1319       // interpretation and are not ergonomically set.
  1320       if (FLAG_IS_DEFAULT(MarkSweepDeadRatio)) {
  1321         FLAG_SET_DEFAULT(MarkSweepDeadRatio, 1);
  1323       if (FLAG_IS_DEFAULT(PermMarkSweepDeadRatio)) {
  1324         FLAG_SET_DEFAULT(PermMarkSweepDeadRatio, 5);
  1330 void Arguments::set_g1_gc_flags() {
  1331   assert(UseG1GC, "Error");
  1332 #ifdef COMPILER1
  1333   FastTLABRefill = false;
  1334 #endif
  1335   FLAG_SET_DEFAULT(ParallelGCThreads,
  1336                      Abstract_VM_Version::parallel_worker_threads());
  1337   if (ParallelGCThreads == 0) {
  1338     FLAG_SET_DEFAULT(ParallelGCThreads,
  1339                      Abstract_VM_Version::parallel_worker_threads());
  1341   no_shared_spaces();
  1343   // Set the maximum pause time goal to be a reasonable default.
  1344   if (FLAG_IS_DEFAULT(MaxGCPauseMillis)) {
  1345     FLAG_SET_DEFAULT(MaxGCPauseMillis, 200);
  1348   if (FLAG_IS_DEFAULT(MarkStackSize)) {
  1349     FLAG_SET_DEFAULT(MarkStackSize, 128 * TASKQUEUE_SIZE);
  1351   if (PrintGCDetails && Verbose) {
  1352     tty->print_cr("MarkStackSize: %uk  MarkStackSizeMax: %uk",
  1353       MarkStackSize / K, MarkStackSizeMax / K);
  1354     tty->print_cr("ConcGCThreads: %u", ConcGCThreads);
  1358 void Arguments::set_heap_size() {
  1359   if (!FLAG_IS_DEFAULT(DefaultMaxRAMFraction)) {
  1360     // Deprecated flag
  1361     FLAG_SET_CMDLINE(uintx, MaxRAMFraction, DefaultMaxRAMFraction);
  1364   const julong phys_mem =
  1365     FLAG_IS_DEFAULT(MaxRAM) ? MIN2(os::physical_memory(), (julong)MaxRAM)
  1366                             : (julong)MaxRAM;
  1368   // If the maximum heap size has not been set with -Xmx,
  1369   // then set it as fraction of the size of physical memory,
  1370   // respecting the maximum and minimum sizes of the heap.
  1371   if (FLAG_IS_DEFAULT(MaxHeapSize)) {
  1372     julong reasonable_max = phys_mem / MaxRAMFraction;
  1374     if (phys_mem <= MaxHeapSize * MinRAMFraction) {
  1375       // Small physical memory, so use a minimum fraction of it for the heap
  1376       reasonable_max = phys_mem / MinRAMFraction;
  1377     } else {
  1378       // Not-small physical memory, so require a heap at least
  1379       // as large as MaxHeapSize
  1380       reasonable_max = MAX2(reasonable_max, (julong)MaxHeapSize);
  1382     if (!FLAG_IS_DEFAULT(ErgoHeapSizeLimit) && ErgoHeapSizeLimit != 0) {
  1383       // Limit the heap size to ErgoHeapSizeLimit
  1384       reasonable_max = MIN2(reasonable_max, (julong)ErgoHeapSizeLimit);
  1386     if (UseCompressedOops) {
  1387       // Limit the heap size to the maximum possible when using compressed oops
  1388       reasonable_max = MIN2(reasonable_max, (julong)max_heap_for_compressed_oops());
  1390     reasonable_max = os::allocatable_physical_memory(reasonable_max);
  1392     if (!FLAG_IS_DEFAULT(InitialHeapSize)) {
  1393       // An initial heap size was specified on the command line,
  1394       // so be sure that the maximum size is consistent.  Done
  1395       // after call to allocatable_physical_memory because that
  1396       // method might reduce the allocation size.
  1397       reasonable_max = MAX2(reasonable_max, (julong)InitialHeapSize);
  1400     if (PrintGCDetails && Verbose) {
  1401       // Cannot use gclog_or_tty yet.
  1402       tty->print_cr("  Maximum heap size " SIZE_FORMAT, reasonable_max);
  1404     FLAG_SET_ERGO(uintx, MaxHeapSize, (uintx)reasonable_max);
  1407   // If the initial_heap_size has not been set with InitialHeapSize
  1408   // or -Xms, then set it as fraction of the size of physical memory,
  1409   // respecting the maximum and minimum sizes of the heap.
  1410   if (FLAG_IS_DEFAULT(InitialHeapSize)) {
  1411     julong reasonable_minimum = (julong)(OldSize + NewSize);
  1413     reasonable_minimum = MIN2(reasonable_minimum, (julong)MaxHeapSize);
  1415     reasonable_minimum = os::allocatable_physical_memory(reasonable_minimum);
  1417     julong reasonable_initial = phys_mem / InitialRAMFraction;
  1419     reasonable_initial = MAX2(reasonable_initial, reasonable_minimum);
  1420     reasonable_initial = MIN2(reasonable_initial, (julong)MaxHeapSize);
  1422     reasonable_initial = os::allocatable_physical_memory(reasonable_initial);
  1424     if (PrintGCDetails && Verbose) {
  1425       // Cannot use gclog_or_tty yet.
  1426       tty->print_cr("  Initial heap size " SIZE_FORMAT, (uintx)reasonable_initial);
  1427       tty->print_cr("  Minimum heap size " SIZE_FORMAT, (uintx)reasonable_minimum);
  1429     FLAG_SET_ERGO(uintx, InitialHeapSize, (uintx)reasonable_initial);
  1430     set_min_heap_size((uintx)reasonable_minimum);
  1434 // This must be called after ergonomics because we want bytecode rewriting
  1435 // if the server compiler is used, or if UseSharedSpaces is disabled.
  1436 void Arguments::set_bytecode_flags() {
  1437   // Better not attempt to store into a read-only space.
  1438   if (UseSharedSpaces) {
  1439     FLAG_SET_DEFAULT(RewriteBytecodes, false);
  1440     FLAG_SET_DEFAULT(RewriteFrequentPairs, false);
  1443   if (!RewriteBytecodes) {
  1444     FLAG_SET_DEFAULT(RewriteFrequentPairs, false);
  1448 // Aggressive optimization flags  -XX:+AggressiveOpts
  1449 void Arguments::set_aggressive_opts_flags() {
  1450 #ifdef COMPILER2
  1451   if (AggressiveOpts || !FLAG_IS_DEFAULT(AutoBoxCacheMax)) {
  1452     if (FLAG_IS_DEFAULT(EliminateAutoBox)) {
  1453       FLAG_SET_DEFAULT(EliminateAutoBox, true);
  1455     if (FLAG_IS_DEFAULT(AutoBoxCacheMax)) {
  1456       FLAG_SET_DEFAULT(AutoBoxCacheMax, 20000);
  1459     // Feed the cache size setting into the JDK
  1460     char buffer[1024];
  1461     sprintf(buffer, "java.lang.Integer.IntegerCache.high=" INTX_FORMAT, AutoBoxCacheMax);
  1462     add_property(buffer);
  1464   if (AggressiveOpts && FLAG_IS_DEFAULT(DoEscapeAnalysis)) {
  1465     FLAG_SET_DEFAULT(DoEscapeAnalysis, true);
  1467   if (AggressiveOpts && FLAG_IS_DEFAULT(BiasedLockingStartupDelay)) {
  1468     FLAG_SET_DEFAULT(BiasedLockingStartupDelay, 500);
  1470 #endif
  1472   if (AggressiveOpts) {
  1473 // Sample flag setting code
  1474 //    if (FLAG_IS_DEFAULT(EliminateZeroing)) {
  1475 //      FLAG_SET_DEFAULT(EliminateZeroing, true);
  1476 //    }
  1480 //===========================================================================================================
  1481 // Parsing of java.compiler property
  1483 void Arguments::process_java_compiler_argument(char* arg) {
  1484   // For backwards compatibility, Djava.compiler=NONE or ""
  1485   // causes us to switch to -Xint mode UNLESS -Xdebug
  1486   // is also specified.
  1487   if (strlen(arg) == 0 || strcasecmp(arg, "NONE") == 0) {
  1488     set_java_compiler(true);    // "-Djava.compiler[=...]" most recently seen.
  1492 void Arguments::process_java_launcher_argument(const char* launcher, void* extra_info) {
  1493   _sun_java_launcher = strdup(launcher);
  1496 bool Arguments::created_by_java_launcher() {
  1497   assert(_sun_java_launcher != NULL, "property must have value");
  1498   return strcmp(DEFAULT_JAVA_LAUNCHER, _sun_java_launcher) != 0;
  1501 //===========================================================================================================
  1502 // Parsing of main arguments
  1504 bool Arguments::verify_interval(uintx val, uintx min,
  1505                                 uintx max, const char* name) {
  1506   // Returns true iff value is in the inclusive interval [min..max]
  1507   // false, otherwise.
  1508   if (val >= min && val <= max) {
  1509     return true;
  1511   jio_fprintf(defaultStream::error_stream(),
  1512               "%s of " UINTX_FORMAT " is invalid; must be between " UINTX_FORMAT
  1513               " and " UINTX_FORMAT "\n",
  1514               name, val, min, max);
  1515   return false;
  1518 bool Arguments::verify_percentage(uintx value, const char* name) {
  1519   if (value <= 100) {
  1520     return true;
  1522   jio_fprintf(defaultStream::error_stream(),
  1523               "%s of " UINTX_FORMAT " is invalid; must be between 0 and 100\n",
  1524               name, value);
  1525   return false;
  1528 static void force_serial_gc() {
  1529   FLAG_SET_DEFAULT(UseSerialGC, true);
  1530   FLAG_SET_DEFAULT(UseParNewGC, false);
  1531   FLAG_SET_DEFAULT(UseConcMarkSweepGC, false);
  1532   FLAG_SET_DEFAULT(CMSIncrementalMode, false);  // special CMS suboption
  1533   FLAG_SET_DEFAULT(UseParallelGC, false);
  1534   FLAG_SET_DEFAULT(UseParallelOldGC, false);
  1535   FLAG_SET_DEFAULT(UseG1GC, false);
  1538 static bool verify_serial_gc_flags() {
  1539   return (UseSerialGC &&
  1540         !(UseParNewGC || (UseConcMarkSweepGC || CMSIncrementalMode) || UseG1GC ||
  1541           UseParallelGC || UseParallelOldGC));
  1544 // Check consistency of GC selection
  1545 bool Arguments::check_gc_consistency() {
  1546   bool status = true;
  1547   // Ensure that the user has not selected conflicting sets
  1548   // of collectors. [Note: this check is merely a user convenience;
  1549   // collectors over-ride each other so that only a non-conflicting
  1550   // set is selected; however what the user gets is not what they
  1551   // may have expected from the combination they asked for. It's
  1552   // better to reduce user confusion by not allowing them to
  1553   // select conflicting combinations.
  1554   uint i = 0;
  1555   if (UseSerialGC)                       i++;
  1556   if (UseConcMarkSweepGC || UseParNewGC) i++;
  1557   if (UseParallelGC || UseParallelOldGC) i++;
  1558   if (UseG1GC)                           i++;
  1559   if (i > 1) {
  1560     jio_fprintf(defaultStream::error_stream(),
  1561                 "Conflicting collector combinations in option list; "
  1562                 "please refer to the release notes for the combinations "
  1563                 "allowed\n");
  1564     status = false;
  1567   return status;
  1570 // Check the consistency of vm_init_args
  1571 bool Arguments::check_vm_args_consistency() {
  1572   // Method for adding checks for flag consistency.
  1573   // The intent is to warn the user of all possible conflicts,
  1574   // before returning an error.
  1575   // Note: Needs platform-dependent factoring.
  1576   bool status = true;
  1578 #if ( (defined(COMPILER2) && defined(SPARC)))
  1579   // NOTE: The call to VM_Version_init depends on the fact that VM_Version_init
  1580   // on sparc doesn't require generation of a stub as is the case on, e.g.,
  1581   // x86.  Normally, VM_Version_init must be called from init_globals in
  1582   // init.cpp, which is called by the initial java thread *after* arguments
  1583   // have been parsed.  VM_Version_init gets called twice on sparc.
  1584   extern void VM_Version_init();
  1585   VM_Version_init();
  1586   if (!VM_Version::has_v9()) {
  1587     jio_fprintf(defaultStream::error_stream(),
  1588                 "V8 Machine detected, Server requires V9\n");
  1589     status = false;
  1591 #endif /* COMPILER2 && SPARC */
  1593   // Allow both -XX:-UseStackBanging and -XX:-UseBoundThreads in non-product
  1594   // builds so the cost of stack banging can be measured.
  1595 #if (defined(PRODUCT) && defined(SOLARIS))
  1596   if (!UseBoundThreads && !UseStackBanging) {
  1597     jio_fprintf(defaultStream::error_stream(),
  1598                 "-UseStackBanging conflicts with -UseBoundThreads\n");
  1600      status = false;
  1602 #endif
  1604   if (TLABRefillWasteFraction == 0) {
  1605     jio_fprintf(defaultStream::error_stream(),
  1606                 "TLABRefillWasteFraction should be a denominator, "
  1607                 "not " SIZE_FORMAT "\n",
  1608                 TLABRefillWasteFraction);
  1609     status = false;
  1612   status = status && verify_percentage(MaxLiveObjectEvacuationRatio,
  1613                               "MaxLiveObjectEvacuationRatio");
  1614   status = status && verify_percentage(AdaptiveSizePolicyWeight,
  1615                               "AdaptiveSizePolicyWeight");
  1616   status = status && verify_percentage(AdaptivePermSizeWeight, "AdaptivePermSizeWeight");
  1617   status = status && verify_percentage(ThresholdTolerance, "ThresholdTolerance");
  1618   status = status && verify_percentage(MinHeapFreeRatio, "MinHeapFreeRatio");
  1619   status = status && verify_percentage(MaxHeapFreeRatio, "MaxHeapFreeRatio");
  1621   if (MinHeapFreeRatio > MaxHeapFreeRatio) {
  1622     jio_fprintf(defaultStream::error_stream(),
  1623                 "MinHeapFreeRatio (" UINTX_FORMAT ") must be less than or "
  1624                 "equal to MaxHeapFreeRatio (" UINTX_FORMAT ")\n",
  1625                 MinHeapFreeRatio, MaxHeapFreeRatio);
  1626     status = false;
  1628   // Keeping the heap 100% free is hard ;-) so limit it to 99%.
  1629   MinHeapFreeRatio = MIN2(MinHeapFreeRatio, (uintx) 99);
  1631   if (FullGCALot && FLAG_IS_DEFAULT(MarkSweepAlwaysCompactCount)) {
  1632     MarkSweepAlwaysCompactCount = 1;  // Move objects every gc.
  1635   if (UseParallelOldGC && ParallelOldGCSplitALot) {
  1636     // Settings to encourage splitting.
  1637     if (!FLAG_IS_CMDLINE(NewRatio)) {
  1638       FLAG_SET_CMDLINE(intx, NewRatio, 2);
  1640     if (!FLAG_IS_CMDLINE(ScavengeBeforeFullGC)) {
  1641       FLAG_SET_CMDLINE(bool, ScavengeBeforeFullGC, false);
  1645   status = status && verify_percentage(GCHeapFreeLimit, "GCHeapFreeLimit");
  1646   status = status && verify_percentage(GCTimeLimit, "GCTimeLimit");
  1647   if (GCTimeLimit == 100) {
  1648     // Turn off gc-overhead-limit-exceeded checks
  1649     FLAG_SET_DEFAULT(UseGCOverheadLimit, false);
  1652   status = status && verify_percentage(GCHeapFreeLimit, "GCHeapFreeLimit");
  1654   // Check user specified sharing option conflict with Parallel GC
  1655   bool cannot_share = ((UseConcMarkSweepGC || CMSIncrementalMode) || UseG1GC || UseParNewGC ||
  1656                        UseParallelGC || UseParallelOldGC ||
  1657                        SOLARIS_ONLY(UseISM) NOT_SOLARIS(UseLargePages));
  1659   if (cannot_share) {
  1660     // Either force sharing on by forcing the other options off, or
  1661     // force sharing off.
  1662     if (DumpSharedSpaces || ForceSharedSpaces) {
  1663       jio_fprintf(defaultStream::error_stream(),
  1664                   "Reverting to Serial GC because of %s\n",
  1665                   ForceSharedSpaces ? " -Xshare:on" : "-Xshare:dump");
  1666       force_serial_gc();
  1667       FLAG_SET_DEFAULT(SOLARIS_ONLY(UseISM) NOT_SOLARIS(UseLargePages), false);
  1668     } else {
  1669       if (UseSharedSpaces && Verbose) {
  1670         jio_fprintf(defaultStream::error_stream(),
  1671                     "Turning off use of shared archive because of "
  1672                     "choice of garbage collector or large pages\n");
  1674       no_shared_spaces();
  1678   status = status && check_gc_consistency();
  1680   if (_has_alloc_profile) {
  1681     if (UseParallelGC || UseParallelOldGC) {
  1682       jio_fprintf(defaultStream::error_stream(),
  1683                   "error:  invalid argument combination.\n"
  1684                   "Allocation profiling (-Xaprof) cannot be used together with "
  1685                   "Parallel GC (-XX:+UseParallelGC or -XX:+UseParallelOldGC).\n");
  1686       status = false;
  1688     if (UseConcMarkSweepGC) {
  1689       jio_fprintf(defaultStream::error_stream(),
  1690                   "error:  invalid argument combination.\n"
  1691                   "Allocation profiling (-Xaprof) cannot be used together with "
  1692                   "the CMS collector (-XX:+UseConcMarkSweepGC).\n");
  1693       status = false;
  1697   if (CMSIncrementalMode) {
  1698     if (!UseConcMarkSweepGC) {
  1699       jio_fprintf(defaultStream::error_stream(),
  1700                   "error:  invalid argument combination.\n"
  1701                   "The CMS collector (-XX:+UseConcMarkSweepGC) must be "
  1702                   "selected in order\nto use CMSIncrementalMode.\n");
  1703       status = false;
  1704     } else {
  1705       status = status && verify_percentage(CMSIncrementalDutyCycle,
  1706                                   "CMSIncrementalDutyCycle");
  1707       status = status && verify_percentage(CMSIncrementalDutyCycleMin,
  1708                                   "CMSIncrementalDutyCycleMin");
  1709       status = status && verify_percentage(CMSIncrementalSafetyFactor,
  1710                                   "CMSIncrementalSafetyFactor");
  1711       status = status && verify_percentage(CMSIncrementalOffset,
  1712                                   "CMSIncrementalOffset");
  1713       status = status && verify_percentage(CMSExpAvgFactor,
  1714                                   "CMSExpAvgFactor");
  1715       // If it was not set on the command line, set
  1716       // CMSInitiatingOccupancyFraction to 1 so icms can initiate cycles early.
  1717       if (CMSInitiatingOccupancyFraction < 0) {
  1718         FLAG_SET_DEFAULT(CMSInitiatingOccupancyFraction, 1);
  1723   // CMS space iteration, which FLSVerifyAllHeapreferences entails,
  1724   // insists that we hold the requisite locks so that the iteration is
  1725   // MT-safe. For the verification at start-up and shut-down, we don't
  1726   // yet have a good way of acquiring and releasing these locks,
  1727   // which are not visible at the CollectedHeap level. We want to
  1728   // be able to acquire these locks and then do the iteration rather
  1729   // than just disable the lock verification. This will be fixed under
  1730   // bug 4788986.
  1731   if (UseConcMarkSweepGC && FLSVerifyAllHeapReferences) {
  1732     if (VerifyGCStartAt == 0) {
  1733       warning("Heap verification at start-up disabled "
  1734               "(due to current incompatibility with FLSVerifyAllHeapReferences)");
  1735       VerifyGCStartAt = 1;      // Disable verification at start-up
  1737     if (VerifyBeforeExit) {
  1738       warning("Heap verification at shutdown disabled "
  1739               "(due to current incompatibility with FLSVerifyAllHeapReferences)");
  1740       VerifyBeforeExit = false; // Disable verification at shutdown
  1744   // Note: only executed in non-PRODUCT mode
  1745   if (!UseAsyncConcMarkSweepGC &&
  1746       (ExplicitGCInvokesConcurrent ||
  1747        ExplicitGCInvokesConcurrentAndUnloadsClasses)) {
  1748     jio_fprintf(defaultStream::error_stream(),
  1749                 "error: +ExplictGCInvokesConcurrent[AndUnloadsClasses] conflicts"
  1750                 " with -UseAsyncConcMarkSweepGC");
  1751     status = false;
  1754   if (UseG1GC) {
  1755     status = status && verify_percentage(InitiatingHeapOccupancyPercent,
  1756                                          "InitiatingHeapOccupancyPercent");
  1759   status = status && verify_interval(RefDiscoveryPolicy,
  1760                                      ReferenceProcessor::DiscoveryPolicyMin,
  1761                                      ReferenceProcessor::DiscoveryPolicyMax,
  1762                                      "RefDiscoveryPolicy");
  1764   // Limit the lower bound of this flag to 1 as it is used in a division
  1765   // expression.
  1766   status = status && verify_interval(TLABWasteTargetPercent,
  1767                                      1, 100, "TLABWasteTargetPercent");
  1769   return status;
  1772 bool Arguments::is_bad_option(const JavaVMOption* option, jboolean ignore,
  1773   const char* option_type) {
  1774   if (ignore) return false;
  1776   const char* spacer = " ";
  1777   if (option_type == NULL) {
  1778     option_type = ++spacer; // Set both to the empty string.
  1781   if (os::obsolete_option(option)) {
  1782     jio_fprintf(defaultStream::error_stream(),
  1783                 "Obsolete %s%soption: %s\n", option_type, spacer,
  1784       option->optionString);
  1785     return false;
  1786   } else {
  1787     jio_fprintf(defaultStream::error_stream(),
  1788                 "Unrecognized %s%soption: %s\n", option_type, spacer,
  1789       option->optionString);
  1790     return true;
  1794 static const char* user_assertion_options[] = {
  1795   "-da", "-ea", "-disableassertions", "-enableassertions", 0
  1796 };
  1798 static const char* system_assertion_options[] = {
  1799   "-dsa", "-esa", "-disablesystemassertions", "-enablesystemassertions", 0
  1800 };
  1802 // Return true if any of the strings in null-terminated array 'names' matches.
  1803 // If tail_allowed is true, then the tail must begin with a colon; otherwise,
  1804 // the option must match exactly.
  1805 static bool match_option(const JavaVMOption* option, const char** names, const char** tail,
  1806   bool tail_allowed) {
  1807   for (/* empty */; *names != NULL; ++names) {
  1808     if (match_option(option, *names, tail)) {
  1809       if (**tail == '\0' || tail_allowed && **tail == ':') {
  1810         return true;
  1814   return false;
  1817 bool Arguments::parse_uintx(const char* value,
  1818                             uintx* uintx_arg,
  1819                             uintx min_size) {
  1821   // Check the sign first since atomull() parses only unsigned values.
  1822   bool value_is_positive = !(*value == '-');
  1824   if (value_is_positive) {
  1825     julong n;
  1826     bool good_return = atomull(value, &n);
  1827     if (good_return) {
  1828       bool above_minimum = n >= min_size;
  1829       bool value_is_too_large = n > max_uintx;
  1831       if (above_minimum && !value_is_too_large) {
  1832         *uintx_arg = n;
  1833         return true;
  1837   return false;
  1840 Arguments::ArgsRange Arguments::parse_memory_size(const char* s,
  1841                                                   julong* long_arg,
  1842                                                   julong min_size) {
  1843   if (!atomull(s, long_arg)) return arg_unreadable;
  1844   return check_memory_size(*long_arg, min_size);
  1847 // Parse JavaVMInitArgs structure
  1849 jint Arguments::parse_vm_init_args(const JavaVMInitArgs* args) {
  1850   // For components of the system classpath.
  1851   SysClassPath scp(Arguments::get_sysclasspath());
  1852   bool scp_assembly_required = false;
  1854   // Save default settings for some mode flags
  1855   Arguments::_AlwaysCompileLoopMethods = AlwaysCompileLoopMethods;
  1856   Arguments::_UseOnStackReplacement    = UseOnStackReplacement;
  1857   Arguments::_ClipInlining             = ClipInlining;
  1858   Arguments::_BackgroundCompilation    = BackgroundCompilation;
  1859   Arguments::_Tier2CompileThreshold    = Tier2CompileThreshold;
  1861   // Parse JAVA_TOOL_OPTIONS environment variable (if present)
  1862   jint result = parse_java_tool_options_environment_variable(&scp, &scp_assembly_required);
  1863   if (result != JNI_OK) {
  1864     return result;
  1867   // Parse JavaVMInitArgs structure passed in
  1868   result = parse_each_vm_init_arg(args, &scp, &scp_assembly_required, COMMAND_LINE);
  1869   if (result != JNI_OK) {
  1870     return result;
  1873   if (AggressiveOpts) {
  1874     // Insert alt-rt.jar between user-specified bootclasspath
  1875     // prefix and the default bootclasspath.  os::set_boot_path()
  1876     // uses meta_index_dir as the default bootclasspath directory.
  1877     const char* altclasses_jar = "alt-rt.jar";
  1878     size_t altclasses_path_len = strlen(get_meta_index_dir()) + 1 +
  1879                                  strlen(altclasses_jar);
  1880     char* altclasses_path = NEW_C_HEAP_ARRAY(char, altclasses_path_len);
  1881     strcpy(altclasses_path, get_meta_index_dir());
  1882     strcat(altclasses_path, altclasses_jar);
  1883     scp.add_suffix_to_prefix(altclasses_path);
  1884     scp_assembly_required = true;
  1885     FREE_C_HEAP_ARRAY(char, altclasses_path);
  1888   // Parse _JAVA_OPTIONS environment variable (if present) (mimics classic VM)
  1889   result = parse_java_options_environment_variable(&scp, &scp_assembly_required);
  1890   if (result != JNI_OK) {
  1891     return result;
  1894   // Do final processing now that all arguments have been parsed
  1895   result = finalize_vm_init_args(&scp, scp_assembly_required);
  1896   if (result != JNI_OK) {
  1897     return result;
  1900   return JNI_OK;
  1903 jint Arguments::parse_each_vm_init_arg(const JavaVMInitArgs* args,
  1904                                        SysClassPath* scp_p,
  1905                                        bool* scp_assembly_required_p,
  1906                                        FlagValueOrigin origin) {
  1907   // Remaining part of option string
  1908   const char* tail;
  1910   // iterate over arguments
  1911   for (int index = 0; index < args->nOptions; index++) {
  1912     bool is_absolute_path = false;  // for -agentpath vs -agentlib
  1914     const JavaVMOption* option = args->options + index;
  1916     if (!match_option(option, "-Djava.class.path", &tail) &&
  1917         !match_option(option, "-Dsun.java.command", &tail) &&
  1918         !match_option(option, "-Dsun.java.launcher", &tail)) {
  1920         // add all jvm options to the jvm_args string. This string
  1921         // is used later to set the java.vm.args PerfData string constant.
  1922         // the -Djava.class.path and the -Dsun.java.command options are
  1923         // omitted from jvm_args string as each have their own PerfData
  1924         // string constant object.
  1925         build_jvm_args(option->optionString);
  1928     // -verbose:[class/gc/jni]
  1929     if (match_option(option, "-verbose", &tail)) {
  1930       if (!strcmp(tail, ":class") || !strcmp(tail, "")) {
  1931         FLAG_SET_CMDLINE(bool, TraceClassLoading, true);
  1932         FLAG_SET_CMDLINE(bool, TraceClassUnloading, true);
  1933       } else if (!strcmp(tail, ":gc")) {
  1934         FLAG_SET_CMDLINE(bool, PrintGC, true);
  1935       } else if (!strcmp(tail, ":jni")) {
  1936         FLAG_SET_CMDLINE(bool, PrintJNIResolving, true);
  1938     // -da / -ea / -disableassertions / -enableassertions
  1939     // These accept an optional class/package name separated by a colon, e.g.,
  1940     // -da:java.lang.Thread.
  1941     } else if (match_option(option, user_assertion_options, &tail, true)) {
  1942       bool enable = option->optionString[1] == 'e';     // char after '-' is 'e'
  1943       if (*tail == '\0') {
  1944         JavaAssertions::setUserClassDefault(enable);
  1945       } else {
  1946         assert(*tail == ':', "bogus match by match_option()");
  1947         JavaAssertions::addOption(tail + 1, enable);
  1949     // -dsa / -esa / -disablesystemassertions / -enablesystemassertions
  1950     } else if (match_option(option, system_assertion_options, &tail, false)) {
  1951       bool enable = option->optionString[1] == 'e';     // char after '-' is 'e'
  1952       JavaAssertions::setSystemClassDefault(enable);
  1953     // -bootclasspath:
  1954     } else if (match_option(option, "-Xbootclasspath:", &tail)) {
  1955       scp_p->reset_path(tail);
  1956       *scp_assembly_required_p = true;
  1957     // -bootclasspath/a:
  1958     } else if (match_option(option, "-Xbootclasspath/a:", &tail)) {
  1959       scp_p->add_suffix(tail);
  1960       *scp_assembly_required_p = true;
  1961     // -bootclasspath/p:
  1962     } else if (match_option(option, "-Xbootclasspath/p:", &tail)) {
  1963       scp_p->add_prefix(tail);
  1964       *scp_assembly_required_p = true;
  1965     // -Xrun
  1966     } else if (match_option(option, "-Xrun", &tail)) {
  1967       if (tail != NULL) {
  1968         const char* pos = strchr(tail, ':');
  1969         size_t len = (pos == NULL) ? strlen(tail) : pos - tail;
  1970         char* name = (char*)memcpy(NEW_C_HEAP_ARRAY(char, len + 1), tail, len);
  1971         name[len] = '\0';
  1973         char *options = NULL;
  1974         if(pos != NULL) {
  1975           size_t len2 = strlen(pos+1) + 1; // options start after ':'.  Final zero must be copied.
  1976           options = (char*)memcpy(NEW_C_HEAP_ARRAY(char, len2), pos+1, len2);
  1978 #ifdef JVMTI_KERNEL
  1979         if ((strcmp(name, "hprof") == 0) || (strcmp(name, "jdwp") == 0)) {
  1980           warning("profiling and debugging agents are not supported with Kernel VM");
  1981         } else
  1982 #endif // JVMTI_KERNEL
  1983         add_init_library(name, options);
  1985     // -agentlib and -agentpath
  1986     } else if (match_option(option, "-agentlib:", &tail) ||
  1987           (is_absolute_path = match_option(option, "-agentpath:", &tail))) {
  1988       if(tail != NULL) {
  1989         const char* pos = strchr(tail, '=');
  1990         size_t len = (pos == NULL) ? strlen(tail) : pos - tail;
  1991         char* name = strncpy(NEW_C_HEAP_ARRAY(char, len + 1), tail, len);
  1992         name[len] = '\0';
  1994         char *options = NULL;
  1995         if(pos != NULL) {
  1996           options = strcpy(NEW_C_HEAP_ARRAY(char, strlen(pos + 1) + 1), pos + 1);
  1998 #ifdef JVMTI_KERNEL
  1999         if ((strcmp(name, "hprof") == 0) || (strcmp(name, "jdwp") == 0)) {
  2000           warning("profiling and debugging agents are not supported with Kernel VM");
  2001         } else
  2002 #endif // JVMTI_KERNEL
  2003         add_init_agent(name, options, is_absolute_path);
  2006     // -javaagent
  2007     } else if (match_option(option, "-javaagent:", &tail)) {
  2008       if(tail != NULL) {
  2009         char *options = strcpy(NEW_C_HEAP_ARRAY(char, strlen(tail) + 1), tail);
  2010         add_init_agent("instrument", options, false);
  2012     // -Xnoclassgc
  2013     } else if (match_option(option, "-Xnoclassgc", &tail)) {
  2014       FLAG_SET_CMDLINE(bool, ClassUnloading, false);
  2015     // -Xincgc: i-CMS
  2016     } else if (match_option(option, "-Xincgc", &tail)) {
  2017       FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, true);
  2018       FLAG_SET_CMDLINE(bool, CMSIncrementalMode, true);
  2019     // -Xnoincgc: no i-CMS
  2020     } else if (match_option(option, "-Xnoincgc", &tail)) {
  2021       FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, false);
  2022       FLAG_SET_CMDLINE(bool, CMSIncrementalMode, false);
  2023     // -Xconcgc
  2024     } else if (match_option(option, "-Xconcgc", &tail)) {
  2025       FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, true);
  2026     // -Xnoconcgc
  2027     } else if (match_option(option, "-Xnoconcgc", &tail)) {
  2028       FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, false);
  2029     // -Xbatch
  2030     } else if (match_option(option, "-Xbatch", &tail)) {
  2031       FLAG_SET_CMDLINE(bool, BackgroundCompilation, false);
  2032     // -Xmn for compatibility with other JVM vendors
  2033     } else if (match_option(option, "-Xmn", &tail)) {
  2034       julong long_initial_eden_size = 0;
  2035       ArgsRange errcode = parse_memory_size(tail, &long_initial_eden_size, 1);
  2036       if (errcode != arg_in_range) {
  2037         jio_fprintf(defaultStream::error_stream(),
  2038                     "Invalid initial eden size: %s\n", option->optionString);
  2039         describe_range_error(errcode);
  2040         return JNI_EINVAL;
  2042       FLAG_SET_CMDLINE(uintx, MaxNewSize, (uintx)long_initial_eden_size);
  2043       FLAG_SET_CMDLINE(uintx, NewSize, (uintx)long_initial_eden_size);
  2044     // -Xms
  2045     } else if (match_option(option, "-Xms", &tail)) {
  2046       julong long_initial_heap_size = 0;
  2047       ArgsRange errcode = parse_memory_size(tail, &long_initial_heap_size, 1);
  2048       if (errcode != arg_in_range) {
  2049         jio_fprintf(defaultStream::error_stream(),
  2050                     "Invalid initial heap size: %s\n", option->optionString);
  2051         describe_range_error(errcode);
  2052         return JNI_EINVAL;
  2054       FLAG_SET_CMDLINE(uintx, InitialHeapSize, (uintx)long_initial_heap_size);
  2055       // Currently the minimum size and the initial heap sizes are the same.
  2056       set_min_heap_size(InitialHeapSize);
  2057     // -Xmx
  2058     } else if (match_option(option, "-Xmx", &tail)) {
  2059       julong long_max_heap_size = 0;
  2060       ArgsRange errcode = parse_memory_size(tail, &long_max_heap_size, 1);
  2061       if (errcode != arg_in_range) {
  2062         jio_fprintf(defaultStream::error_stream(),
  2063                     "Invalid maximum heap size: %s\n", option->optionString);
  2064         describe_range_error(errcode);
  2065         return JNI_EINVAL;
  2067       FLAG_SET_CMDLINE(uintx, MaxHeapSize, (uintx)long_max_heap_size);
  2068     // Xmaxf
  2069     } else if (match_option(option, "-Xmaxf", &tail)) {
  2070       int maxf = (int)(atof(tail) * 100);
  2071       if (maxf < 0 || maxf > 100) {
  2072         jio_fprintf(defaultStream::error_stream(),
  2073                     "Bad max heap free percentage size: %s\n",
  2074                     option->optionString);
  2075         return JNI_EINVAL;
  2076       } else {
  2077         FLAG_SET_CMDLINE(uintx, MaxHeapFreeRatio, maxf);
  2079     // Xminf
  2080     } else if (match_option(option, "-Xminf", &tail)) {
  2081       int minf = (int)(atof(tail) * 100);
  2082       if (minf < 0 || minf > 100) {
  2083         jio_fprintf(defaultStream::error_stream(),
  2084                     "Bad min heap free percentage size: %s\n",
  2085                     option->optionString);
  2086         return JNI_EINVAL;
  2087       } else {
  2088         FLAG_SET_CMDLINE(uintx, MinHeapFreeRatio, minf);
  2090     // -Xss
  2091     } else if (match_option(option, "-Xss", &tail)) {
  2092       julong long_ThreadStackSize = 0;
  2093       ArgsRange errcode = parse_memory_size(tail, &long_ThreadStackSize, 1000);
  2094       if (errcode != arg_in_range) {
  2095         jio_fprintf(defaultStream::error_stream(),
  2096                     "Invalid thread stack size: %s\n", option->optionString);
  2097         describe_range_error(errcode);
  2098         return JNI_EINVAL;
  2100       // Internally track ThreadStackSize in units of 1024 bytes.
  2101       FLAG_SET_CMDLINE(intx, ThreadStackSize,
  2102                               round_to((int)long_ThreadStackSize, K) / K);
  2103     // -Xoss
  2104     } else if (match_option(option, "-Xoss", &tail)) {
  2105           // HotSpot does not have separate native and Java stacks, ignore silently for compatibility
  2106     // -Xmaxjitcodesize
  2107     } else if (match_option(option, "-Xmaxjitcodesize", &tail)) {
  2108       julong long_ReservedCodeCacheSize = 0;
  2109       ArgsRange errcode = parse_memory_size(tail, &long_ReservedCodeCacheSize,
  2110                                             (size_t)InitialCodeCacheSize);
  2111       if (errcode != arg_in_range) {
  2112         jio_fprintf(defaultStream::error_stream(),
  2113                     "Invalid maximum code cache size: %s\n",
  2114                     option->optionString);
  2115         describe_range_error(errcode);
  2116         return JNI_EINVAL;
  2118       FLAG_SET_CMDLINE(uintx, ReservedCodeCacheSize, (uintx)long_ReservedCodeCacheSize);
  2119     // -green
  2120     } else if (match_option(option, "-green", &tail)) {
  2121       jio_fprintf(defaultStream::error_stream(),
  2122                   "Green threads support not available\n");
  2123           return JNI_EINVAL;
  2124     // -native
  2125     } else if (match_option(option, "-native", &tail)) {
  2126           // HotSpot always uses native threads, ignore silently for compatibility
  2127     // -Xsqnopause
  2128     } else if (match_option(option, "-Xsqnopause", &tail)) {
  2129           // EVM option, ignore silently for compatibility
  2130     // -Xrs
  2131     } else if (match_option(option, "-Xrs", &tail)) {
  2132           // Classic/EVM option, new functionality
  2133       FLAG_SET_CMDLINE(bool, ReduceSignalUsage, true);
  2134     } else if (match_option(option, "-Xusealtsigs", &tail)) {
  2135           // change default internal VM signals used - lower case for back compat
  2136       FLAG_SET_CMDLINE(bool, UseAltSigs, true);
  2137     // -Xoptimize
  2138     } else if (match_option(option, "-Xoptimize", &tail)) {
  2139           // EVM option, ignore silently for compatibility
  2140     // -Xprof
  2141     } else if (match_option(option, "-Xprof", &tail)) {
  2142 #ifndef FPROF_KERNEL
  2143       _has_profile = true;
  2144 #else // FPROF_KERNEL
  2145       // do we have to exit?
  2146       warning("Kernel VM does not support flat profiling.");
  2147 #endif // FPROF_KERNEL
  2148     // -Xaprof
  2149     } else if (match_option(option, "-Xaprof", &tail)) {
  2150       _has_alloc_profile = true;
  2151     // -Xconcurrentio
  2152     } else if (match_option(option, "-Xconcurrentio", &tail)) {
  2153       FLAG_SET_CMDLINE(bool, UseLWPSynchronization, true);
  2154       FLAG_SET_CMDLINE(bool, BackgroundCompilation, false);
  2155       FLAG_SET_CMDLINE(intx, DeferThrSuspendLoopCount, 1);
  2156       FLAG_SET_CMDLINE(bool, UseTLAB, false);
  2157       FLAG_SET_CMDLINE(uintx, NewSizeThreadIncrease, 16 * K);  // 20Kb per thread added to new generation
  2159       // -Xinternalversion
  2160     } else if (match_option(option, "-Xinternalversion", &tail)) {
  2161       jio_fprintf(defaultStream::output_stream(), "%s\n",
  2162                   VM_Version::internal_vm_info_string());
  2163       vm_exit(0);
  2164 #ifndef PRODUCT
  2165     // -Xprintflags
  2166     } else if (match_option(option, "-Xprintflags", &tail)) {
  2167       CommandLineFlags::printFlags();
  2168       vm_exit(0);
  2169 #endif
  2170     // -D
  2171     } else if (match_option(option, "-D", &tail)) {
  2172       if (!add_property(tail)) {
  2173         return JNI_ENOMEM;
  2175       // Out of the box management support
  2176       if (match_option(option, "-Dcom.sun.management", &tail)) {
  2177         FLAG_SET_CMDLINE(bool, ManagementServer, true);
  2179     // -Xint
  2180     } else if (match_option(option, "-Xint", &tail)) {
  2181           set_mode_flags(_int);
  2182     // -Xmixed
  2183     } else if (match_option(option, "-Xmixed", &tail)) {
  2184           set_mode_flags(_mixed);
  2185     // -Xcomp
  2186     } else if (match_option(option, "-Xcomp", &tail)) {
  2187       // for testing the compiler; turn off all flags that inhibit compilation
  2188           set_mode_flags(_comp);
  2190     // -Xshare:dump
  2191     } else if (match_option(option, "-Xshare:dump", &tail)) {
  2192 #ifdef TIERED
  2193       FLAG_SET_CMDLINE(bool, DumpSharedSpaces, true);
  2194       set_mode_flags(_int);     // Prevent compilation, which creates objects
  2195 #elif defined(COMPILER2)
  2196       vm_exit_during_initialization(
  2197           "Dumping a shared archive is not supported on the Server JVM.", NULL);
  2198 #elif defined(KERNEL)
  2199       vm_exit_during_initialization(
  2200           "Dumping a shared archive is not supported on the Kernel JVM.", NULL);
  2201 #else
  2202       FLAG_SET_CMDLINE(bool, DumpSharedSpaces, true);
  2203       set_mode_flags(_int);     // Prevent compilation, which creates objects
  2204 #endif
  2205     // -Xshare:on
  2206     } else if (match_option(option, "-Xshare:on", &tail)) {
  2207       FLAG_SET_CMDLINE(bool, UseSharedSpaces, true);
  2208       FLAG_SET_CMDLINE(bool, RequireSharedSpaces, true);
  2209 #ifdef TIERED
  2210       FLAG_SET_CMDLINE(bool, ForceSharedSpaces, true);
  2211 #endif // TIERED
  2212     // -Xshare:auto
  2213     } else if (match_option(option, "-Xshare:auto", &tail)) {
  2214       FLAG_SET_CMDLINE(bool, UseSharedSpaces, true);
  2215       FLAG_SET_CMDLINE(bool, RequireSharedSpaces, false);
  2216     // -Xshare:off
  2217     } else if (match_option(option, "-Xshare:off", &tail)) {
  2218       FLAG_SET_CMDLINE(bool, UseSharedSpaces, false);
  2219       FLAG_SET_CMDLINE(bool, RequireSharedSpaces, false);
  2221     // -Xverify
  2222     } else if (match_option(option, "-Xverify", &tail)) {
  2223       if (strcmp(tail, ":all") == 0 || strcmp(tail, "") == 0) {
  2224         FLAG_SET_CMDLINE(bool, BytecodeVerificationLocal, true);
  2225         FLAG_SET_CMDLINE(bool, BytecodeVerificationRemote, true);
  2226       } else if (strcmp(tail, ":remote") == 0) {
  2227         FLAG_SET_CMDLINE(bool, BytecodeVerificationLocal, false);
  2228         FLAG_SET_CMDLINE(bool, BytecodeVerificationRemote, true);
  2229       } else if (strcmp(tail, ":none") == 0) {
  2230         FLAG_SET_CMDLINE(bool, BytecodeVerificationLocal, false);
  2231         FLAG_SET_CMDLINE(bool, BytecodeVerificationRemote, false);
  2232       } else if (is_bad_option(option, args->ignoreUnrecognized, "verification")) {
  2233         return JNI_EINVAL;
  2235     // -Xdebug
  2236     } else if (match_option(option, "-Xdebug", &tail)) {
  2237       // note this flag has been used, then ignore
  2238       set_xdebug_mode(true);
  2239     // -Xnoagent
  2240     } else if (match_option(option, "-Xnoagent", &tail)) {
  2241       // For compatibility with classic. HotSpot refuses to load the old style agent.dll.
  2242     } else if (match_option(option, "-Xboundthreads", &tail)) {
  2243       // Bind user level threads to kernel threads (Solaris only)
  2244       FLAG_SET_CMDLINE(bool, UseBoundThreads, true);
  2245     } else if (match_option(option, "-Xloggc:", &tail)) {
  2246       // Redirect GC output to the file. -Xloggc:<filename>
  2247       // ostream_init_log(), when called will use this filename
  2248       // to initialize a fileStream.
  2249       _gc_log_filename = strdup(tail);
  2250       FLAG_SET_CMDLINE(bool, PrintGC, true);
  2251       FLAG_SET_CMDLINE(bool, PrintGCTimeStamps, true);
  2252       FLAG_SET_CMDLINE(bool, TraceClassUnloading, true);
  2254     // JNI hooks
  2255     } else if (match_option(option, "-Xcheck", &tail)) {
  2256       if (!strcmp(tail, ":jni")) {
  2257         CheckJNICalls = true;
  2258       } else if (is_bad_option(option, args->ignoreUnrecognized,
  2259                                      "check")) {
  2260         return JNI_EINVAL;
  2262     } else if (match_option(option, "vfprintf", &tail)) {
  2263       _vfprintf_hook = CAST_TO_FN_PTR(vfprintf_hook_t, option->extraInfo);
  2264     } else if (match_option(option, "exit", &tail)) {
  2265       _exit_hook = CAST_TO_FN_PTR(exit_hook_t, option->extraInfo);
  2266     } else if (match_option(option, "abort", &tail)) {
  2267       _abort_hook = CAST_TO_FN_PTR(abort_hook_t, option->extraInfo);
  2268     // -XX:+AggressiveHeap
  2269     } else if (match_option(option, "-XX:+AggressiveHeap", &tail)) {
  2271       // This option inspects the machine and attempts to set various
  2272       // parameters to be optimal for long-running, memory allocation
  2273       // intensive jobs.  It is intended for machines with large
  2274       // amounts of cpu and memory.
  2276       // initHeapSize is needed since _initial_heap_size is 4 bytes on a 32 bit
  2277       // VM, but we may not be able to represent the total physical memory
  2278       // available (like having 8gb of memory on a box but using a 32bit VM).
  2279       // Thus, we need to make sure we're using a julong for intermediate
  2280       // calculations.
  2281       julong initHeapSize;
  2282       julong total_memory = os::physical_memory();
  2284       if (total_memory < (julong)256*M) {
  2285         jio_fprintf(defaultStream::error_stream(),
  2286                     "You need at least 256mb of memory to use -XX:+AggressiveHeap\n");
  2287         vm_exit(1);
  2290       // The heap size is half of available memory, or (at most)
  2291       // all of possible memory less 160mb (leaving room for the OS
  2292       // when using ISM).  This is the maximum; because adaptive sizing
  2293       // is turned on below, the actual space used may be smaller.
  2295       initHeapSize = MIN2(total_memory / (julong)2,
  2296                           total_memory - (julong)160*M);
  2298       // Make sure that if we have a lot of memory we cap the 32 bit
  2299       // process space.  The 64bit VM version of this function is a nop.
  2300       initHeapSize = os::allocatable_physical_memory(initHeapSize);
  2302       // The perm gen is separate but contiguous with the
  2303       // object heap (and is reserved with it) so subtract it
  2304       // from the heap size.
  2305       if (initHeapSize > MaxPermSize) {
  2306         initHeapSize = initHeapSize - MaxPermSize;
  2307       } else {
  2308         warning("AggressiveHeap and MaxPermSize values may conflict");
  2311       if (FLAG_IS_DEFAULT(MaxHeapSize)) {
  2312          FLAG_SET_CMDLINE(uintx, MaxHeapSize, initHeapSize);
  2313          FLAG_SET_CMDLINE(uintx, InitialHeapSize, initHeapSize);
  2314          // Currently the minimum size and the initial heap sizes are the same.
  2315          set_min_heap_size(initHeapSize);
  2317       if (FLAG_IS_DEFAULT(NewSize)) {
  2318          // Make the young generation 3/8ths of the total heap.
  2319          FLAG_SET_CMDLINE(uintx, NewSize,
  2320                                 ((julong)MaxHeapSize / (julong)8) * (julong)3);
  2321          FLAG_SET_CMDLINE(uintx, MaxNewSize, NewSize);
  2324       FLAG_SET_DEFAULT(UseLargePages, true);
  2326       // Increase some data structure sizes for efficiency
  2327       FLAG_SET_CMDLINE(uintx, BaseFootPrintEstimate, MaxHeapSize);
  2328       FLAG_SET_CMDLINE(bool, ResizeTLAB, false);
  2329       FLAG_SET_CMDLINE(uintx, TLABSize, 256*K);
  2331       // See the OldPLABSize comment below, but replace 'after promotion'
  2332       // with 'after copying'.  YoungPLABSize is the size of the survivor
  2333       // space per-gc-thread buffers.  The default is 4kw.
  2334       FLAG_SET_CMDLINE(uintx, YoungPLABSize, 256*K);      // Note: this is in words
  2336       // OldPLABSize is the size of the buffers in the old gen that
  2337       // UseParallelGC uses to promote live data that doesn't fit in the
  2338       // survivor spaces.  At any given time, there's one for each gc thread.
  2339       // The default size is 1kw. These buffers are rarely used, since the
  2340       // survivor spaces are usually big enough.  For specjbb, however, there
  2341       // are occasions when there's lots of live data in the young gen
  2342       // and we end up promoting some of it.  We don't have a definite
  2343       // explanation for why bumping OldPLABSize helps, but the theory
  2344       // is that a bigger PLAB results in retaining something like the
  2345       // original allocation order after promotion, which improves mutator
  2346       // locality.  A minor effect may be that larger PLABs reduce the
  2347       // number of PLAB allocation events during gc.  The value of 8kw
  2348       // was arrived at by experimenting with specjbb.
  2349       FLAG_SET_CMDLINE(uintx, OldPLABSize, 8*K);  // Note: this is in words
  2351       // CompilationPolicyChoice=0 causes the server compiler to adopt
  2352       // a more conservative which-method-do-I-compile policy when one
  2353       // of the counters maintained by the interpreter trips.  The
  2354       // result is reduced startup time and improved specjbb and
  2355       // alacrity performance.  Zero is the default, but we set it
  2356       // explicitly here in case the default changes.
  2357       // See runtime/compilationPolicy.*.
  2358       FLAG_SET_CMDLINE(intx, CompilationPolicyChoice, 0);
  2360       // Enable parallel GC and adaptive generation sizing
  2361       FLAG_SET_CMDLINE(bool, UseParallelGC, true);
  2362       FLAG_SET_DEFAULT(ParallelGCThreads,
  2363                        Abstract_VM_Version::parallel_worker_threads());
  2365       // Encourage steady state memory management
  2366       FLAG_SET_CMDLINE(uintx, ThresholdTolerance, 100);
  2368       // This appears to improve mutator locality
  2369       FLAG_SET_CMDLINE(bool, ScavengeBeforeFullGC, false);
  2371       // Get around early Solaris scheduling bug
  2372       // (affinity vs other jobs on system)
  2373       // but disallow DR and offlining (5008695).
  2374       FLAG_SET_CMDLINE(bool, BindGCTaskThreadsToCPUs, true);
  2376     } else if (match_option(option, "-XX:+NeverTenure", &tail)) {
  2377       // The last option must always win.
  2378       FLAG_SET_CMDLINE(bool, AlwaysTenure, false);
  2379       FLAG_SET_CMDLINE(bool, NeverTenure, true);
  2380     } else if (match_option(option, "-XX:+AlwaysTenure", &tail)) {
  2381       // The last option must always win.
  2382       FLAG_SET_CMDLINE(bool, NeverTenure, false);
  2383       FLAG_SET_CMDLINE(bool, AlwaysTenure, true);
  2384     } else if (match_option(option, "-XX:+CMSPermGenSweepingEnabled", &tail) ||
  2385                match_option(option, "-XX:-CMSPermGenSweepingEnabled", &tail)) {
  2386       jio_fprintf(defaultStream::error_stream(),
  2387         "Please use CMSClassUnloadingEnabled in place of "
  2388         "CMSPermGenSweepingEnabled in the future\n");
  2389     } else if (match_option(option, "-XX:+UseGCTimeLimit", &tail)) {
  2390       FLAG_SET_CMDLINE(bool, UseGCOverheadLimit, true);
  2391       jio_fprintf(defaultStream::error_stream(),
  2392         "Please use -XX:+UseGCOverheadLimit in place of "
  2393         "-XX:+UseGCTimeLimit in the future\n");
  2394     } else if (match_option(option, "-XX:-UseGCTimeLimit", &tail)) {
  2395       FLAG_SET_CMDLINE(bool, UseGCOverheadLimit, false);
  2396       jio_fprintf(defaultStream::error_stream(),
  2397         "Please use -XX:-UseGCOverheadLimit in place of "
  2398         "-XX:-UseGCTimeLimit in the future\n");
  2399     // The TLE options are for compatibility with 1.3 and will be
  2400     // removed without notice in a future release.  These options
  2401     // are not to be documented.
  2402     } else if (match_option(option, "-XX:MaxTLERatio=", &tail)) {
  2403       // No longer used.
  2404     } else if (match_option(option, "-XX:+ResizeTLE", &tail)) {
  2405       FLAG_SET_CMDLINE(bool, ResizeTLAB, true);
  2406     } else if (match_option(option, "-XX:-ResizeTLE", &tail)) {
  2407       FLAG_SET_CMDLINE(bool, ResizeTLAB, false);
  2408     } else if (match_option(option, "-XX:+PrintTLE", &tail)) {
  2409       FLAG_SET_CMDLINE(bool, PrintTLAB, true);
  2410     } else if (match_option(option, "-XX:-PrintTLE", &tail)) {
  2411       FLAG_SET_CMDLINE(bool, PrintTLAB, false);
  2412     } else if (match_option(option, "-XX:TLEFragmentationRatio=", &tail)) {
  2413       // No longer used.
  2414     } else if (match_option(option, "-XX:TLESize=", &tail)) {
  2415       julong long_tlab_size = 0;
  2416       ArgsRange errcode = parse_memory_size(tail, &long_tlab_size, 1);
  2417       if (errcode != arg_in_range) {
  2418         jio_fprintf(defaultStream::error_stream(),
  2419                     "Invalid TLAB size: %s\n", option->optionString);
  2420         describe_range_error(errcode);
  2421         return JNI_EINVAL;
  2423       FLAG_SET_CMDLINE(uintx, TLABSize, long_tlab_size);
  2424     } else if (match_option(option, "-XX:TLEThreadRatio=", &tail)) {
  2425       // No longer used.
  2426     } else if (match_option(option, "-XX:+UseTLE", &tail)) {
  2427       FLAG_SET_CMDLINE(bool, UseTLAB, true);
  2428     } else if (match_option(option, "-XX:-UseTLE", &tail)) {
  2429       FLAG_SET_CMDLINE(bool, UseTLAB, false);
  2430 SOLARIS_ONLY(
  2431     } else if (match_option(option, "-XX:+UsePermISM", &tail)) {
  2432       warning("-XX:+UsePermISM is obsolete.");
  2433       FLAG_SET_CMDLINE(bool, UseISM, true);
  2434     } else if (match_option(option, "-XX:-UsePermISM", &tail)) {
  2435       FLAG_SET_CMDLINE(bool, UseISM, false);
  2437     } else if (match_option(option, "-XX:+DisplayVMOutputToStderr", &tail)) {
  2438       FLAG_SET_CMDLINE(bool, DisplayVMOutputToStdout, false);
  2439       FLAG_SET_CMDLINE(bool, DisplayVMOutputToStderr, true);
  2440     } else if (match_option(option, "-XX:+DisplayVMOutputToStdout", &tail)) {
  2441       FLAG_SET_CMDLINE(bool, DisplayVMOutputToStderr, false);
  2442       FLAG_SET_CMDLINE(bool, DisplayVMOutputToStdout, true);
  2443     } else if (match_option(option, "-XX:+ExtendedDTraceProbes", &tail)) {
  2444 #ifdef SOLARIS
  2445       FLAG_SET_CMDLINE(bool, ExtendedDTraceProbes, true);
  2446       FLAG_SET_CMDLINE(bool, DTraceMethodProbes, true);
  2447       FLAG_SET_CMDLINE(bool, DTraceAllocProbes, true);
  2448       FLAG_SET_CMDLINE(bool, DTraceMonitorProbes, true);
  2449 #else // ndef SOLARIS
  2450       jio_fprintf(defaultStream::error_stream(),
  2451                   "ExtendedDTraceProbes flag is only applicable on Solaris\n");
  2452       return JNI_EINVAL;
  2453 #endif // ndef SOLARIS
  2454 #ifdef ASSERT
  2455     } else if (match_option(option, "-XX:+FullGCALot", &tail)) {
  2456       FLAG_SET_CMDLINE(bool, FullGCALot, true);
  2457       // disable scavenge before parallel mark-compact
  2458       FLAG_SET_CMDLINE(bool, ScavengeBeforeFullGC, false);
  2459 #endif
  2460     } else if (match_option(option, "-XX:CMSParPromoteBlocksToClaim=", &tail)) {
  2461       julong cms_blocks_to_claim = (julong)atol(tail);
  2462       FLAG_SET_CMDLINE(uintx, CMSParPromoteBlocksToClaim, cms_blocks_to_claim);
  2463       jio_fprintf(defaultStream::error_stream(),
  2464         "Please use -XX:OldPLABSize in place of "
  2465         "-XX:CMSParPromoteBlocksToClaim in the future\n");
  2466     } else if (match_option(option, "-XX:ParCMSPromoteBlocksToClaim=", &tail)) {
  2467       julong cms_blocks_to_claim = (julong)atol(tail);
  2468       FLAG_SET_CMDLINE(uintx, CMSParPromoteBlocksToClaim, cms_blocks_to_claim);
  2469       jio_fprintf(defaultStream::error_stream(),
  2470         "Please use -XX:OldPLABSize in place of "
  2471         "-XX:ParCMSPromoteBlocksToClaim in the future\n");
  2472     } else if (match_option(option, "-XX:ParallelGCOldGenAllocBufferSize=", &tail)) {
  2473       julong old_plab_size = 0;
  2474       ArgsRange errcode = parse_memory_size(tail, &old_plab_size, 1);
  2475       if (errcode != arg_in_range) {
  2476         jio_fprintf(defaultStream::error_stream(),
  2477                     "Invalid old PLAB size: %s\n", option->optionString);
  2478         describe_range_error(errcode);
  2479         return JNI_EINVAL;
  2481       FLAG_SET_CMDLINE(uintx, OldPLABSize, old_plab_size);
  2482       jio_fprintf(defaultStream::error_stream(),
  2483                   "Please use -XX:OldPLABSize in place of "
  2484                   "-XX:ParallelGCOldGenAllocBufferSize in the future\n");
  2485     } else if (match_option(option, "-XX:ParallelGCToSpaceAllocBufferSize=", &tail)) {
  2486       julong young_plab_size = 0;
  2487       ArgsRange errcode = parse_memory_size(tail, &young_plab_size, 1);
  2488       if (errcode != arg_in_range) {
  2489         jio_fprintf(defaultStream::error_stream(),
  2490                     "Invalid young PLAB size: %s\n", option->optionString);
  2491         describe_range_error(errcode);
  2492         return JNI_EINVAL;
  2494       FLAG_SET_CMDLINE(uintx, YoungPLABSize, young_plab_size);
  2495       jio_fprintf(defaultStream::error_stream(),
  2496                   "Please use -XX:YoungPLABSize in place of "
  2497                   "-XX:ParallelGCToSpaceAllocBufferSize in the future\n");
  2498     } else if (match_option(option, "-XX:CMSMarkStackSize=", &tail) ||
  2499                match_option(option, "-XX:G1MarkStackSize=", &tail)) {
  2500       julong stack_size = 0;
  2501       ArgsRange errcode = parse_memory_size(tail, &stack_size, 1);
  2502       if (errcode != arg_in_range) {
  2503         jio_fprintf(defaultStream::error_stream(),
  2504                     "Invalid mark stack size: %s\n", option->optionString);
  2505         describe_range_error(errcode);
  2506         return JNI_EINVAL;
  2508       FLAG_SET_CMDLINE(uintx, MarkStackSize, stack_size);
  2509     } else if (match_option(option, "-XX:CMSMarkStackSizeMax=", &tail)) {
  2510       julong max_stack_size = 0;
  2511       ArgsRange errcode = parse_memory_size(tail, &max_stack_size, 1);
  2512       if (errcode != arg_in_range) {
  2513         jio_fprintf(defaultStream::error_stream(),
  2514                     "Invalid maximum mark stack size: %s\n",
  2515                     option->optionString);
  2516         describe_range_error(errcode);
  2517         return JNI_EINVAL;
  2519       FLAG_SET_CMDLINE(uintx, MarkStackSizeMax, max_stack_size);
  2520     } else if (match_option(option, "-XX:ParallelMarkingThreads=", &tail) ||
  2521                match_option(option, "-XX:ParallelCMSThreads=", &tail)) {
  2522       uintx conc_threads = 0;
  2523       if (!parse_uintx(tail, &conc_threads, 1)) {
  2524         jio_fprintf(defaultStream::error_stream(),
  2525                     "Invalid concurrent threads: %s\n", option->optionString);
  2526         return JNI_EINVAL;
  2528       FLAG_SET_CMDLINE(uintx, ConcGCThreads, conc_threads);
  2529     } else if (match_option(option, "-XX:", &tail)) { // -XX:xxxx
  2530       // Skip -XX:Flags= since that case has already been handled
  2531       if (strncmp(tail, "Flags=", strlen("Flags=")) != 0) {
  2532         if (!process_argument(tail, args->ignoreUnrecognized, origin)) {
  2533           return JNI_EINVAL;
  2536     // Unknown option
  2537     } else if (is_bad_option(option, args->ignoreUnrecognized)) {
  2538       return JNI_ERR;
  2541   // Change the default value for flags  which have different default values
  2542   // when working with older JDKs.
  2543   if (JDK_Version::current().compare_major(6) <= 0 &&
  2544       FLAG_IS_DEFAULT(UseVMInterruptibleIO)) {
  2545     FLAG_SET_DEFAULT(UseVMInterruptibleIO, true);
  2547   return JNI_OK;
  2550 jint Arguments::finalize_vm_init_args(SysClassPath* scp_p, bool scp_assembly_required) {
  2551   // This must be done after all -D arguments have been processed.
  2552   scp_p->expand_endorsed();
  2554   if (scp_assembly_required || scp_p->get_endorsed() != NULL) {
  2555     // Assemble the bootclasspath elements into the final path.
  2556     Arguments::set_sysclasspath(scp_p->combined_path());
  2559   // This must be done after all arguments have been processed.
  2560   // java_compiler() true means set to "NONE" or empty.
  2561   if (java_compiler() && !xdebug_mode()) {
  2562     // For backwards compatibility, we switch to interpreted mode if
  2563     // -Djava.compiler="NONE" or "" is specified AND "-Xdebug" was
  2564     // not specified.
  2565     set_mode_flags(_int);
  2567   if (CompileThreshold == 0) {
  2568     set_mode_flags(_int);
  2571 #ifdef TIERED
  2572   // If we are using tiered compilation in the tiered vm then c1 will
  2573   // do the profiling and we don't want to waste that time in the
  2574   // interpreter.
  2575   if (TieredCompilation) {
  2576     ProfileInterpreter = false;
  2577   } else {
  2578     // Since we are running vanilla server we must adjust the compile threshold
  2579     // unless the user has already adjusted it because the default threshold assumes
  2580     // we will run tiered.
  2582     if (FLAG_IS_DEFAULT(CompileThreshold)) {
  2583       CompileThreshold = Tier2CompileThreshold;
  2586 #endif // TIERED
  2588 #ifndef COMPILER2
  2589   // Don't degrade server performance for footprint
  2590   if (FLAG_IS_DEFAULT(UseLargePages) &&
  2591       MaxHeapSize < LargePageHeapSizeThreshold) {
  2592     // No need for large granularity pages w/small heaps.
  2593     // Note that large pages are enabled/disabled for both the
  2594     // Java heap and the code cache.
  2595     FLAG_SET_DEFAULT(UseLargePages, false);
  2596     SOLARIS_ONLY(FLAG_SET_DEFAULT(UseMPSS, false));
  2597     SOLARIS_ONLY(FLAG_SET_DEFAULT(UseISM, false));
  2600   // Tiered compilation is undefined with C1.
  2601   TieredCompilation = false;
  2603 #else
  2604   if (!FLAG_IS_DEFAULT(OptoLoopAlignment) && FLAG_IS_DEFAULT(MaxLoopPad)) {
  2605     FLAG_SET_DEFAULT(MaxLoopPad, OptoLoopAlignment-1);
  2607   // Temporary disable bulk zeroing reduction with G1. See CR 6627983.
  2608   if (UseG1GC) {
  2609     FLAG_SET_DEFAULT(ReduceBulkZeroing, false);
  2611 #endif
  2613   if (!check_vm_args_consistency()) {
  2614     return JNI_ERR;
  2617   return JNI_OK;
  2620 jint Arguments::parse_java_options_environment_variable(SysClassPath* scp_p, bool* scp_assembly_required_p) {
  2621   return parse_options_environment_variable("_JAVA_OPTIONS", scp_p,
  2622                                             scp_assembly_required_p);
  2625 jint Arguments::parse_java_tool_options_environment_variable(SysClassPath* scp_p, bool* scp_assembly_required_p) {
  2626   return parse_options_environment_variable("JAVA_TOOL_OPTIONS", scp_p,
  2627                                             scp_assembly_required_p);
  2630 jint Arguments::parse_options_environment_variable(const char* name, SysClassPath* scp_p, bool* scp_assembly_required_p) {
  2631   const int N_MAX_OPTIONS = 64;
  2632   const int OPTION_BUFFER_SIZE = 1024;
  2633   char buffer[OPTION_BUFFER_SIZE];
  2635   // The variable will be ignored if it exceeds the length of the buffer.
  2636   // Don't check this variable if user has special privileges
  2637   // (e.g. unix su command).
  2638   if (os::getenv(name, buffer, sizeof(buffer)) &&
  2639       !os::have_special_privileges()) {
  2640     JavaVMOption options[N_MAX_OPTIONS];      // Construct option array
  2641     jio_fprintf(defaultStream::error_stream(),
  2642                 "Picked up %s: %s\n", name, buffer);
  2643     char* rd = buffer;                        // pointer to the input string (rd)
  2644     int i;
  2645     for (i = 0; i < N_MAX_OPTIONS;) {         // repeat for all options in the input string
  2646       while (isspace(*rd)) rd++;              // skip whitespace
  2647       if (*rd == 0) break;                    // we re done when the input string is read completely
  2649       // The output, option string, overwrites the input string.
  2650       // Because of quoting, the pointer to the option string (wrt) may lag the pointer to
  2651       // input string (rd).
  2652       char* wrt = rd;
  2654       options[i++].optionString = wrt;        // Fill in option
  2655       while (*rd != 0 && !isspace(*rd)) {     // unquoted strings terminate with a space or NULL
  2656         if (*rd == '\'' || *rd == '"') {      // handle a quoted string
  2657           int quote = *rd;                    // matching quote to look for
  2658           rd++;                               // don't copy open quote
  2659           while (*rd != quote) {              // include everything (even spaces) up until quote
  2660             if (*rd == 0) {                   // string termination means unmatched string
  2661               jio_fprintf(defaultStream::error_stream(),
  2662                           "Unmatched quote in %s\n", name);
  2663               return JNI_ERR;
  2665             *wrt++ = *rd++;                   // copy to option string
  2667           rd++;                               // don't copy close quote
  2668         } else {
  2669           *wrt++ = *rd++;                     // copy to option string
  2672       // Need to check if we're done before writing a NULL,
  2673       // because the write could be to the byte that rd is pointing to.
  2674       if (*rd++ == 0) {
  2675         *wrt = 0;
  2676         break;
  2678       *wrt = 0;                               // Zero terminate option
  2680     // Construct JavaVMInitArgs structure and parse as if it was part of the command line
  2681     JavaVMInitArgs vm_args;
  2682     vm_args.version = JNI_VERSION_1_2;
  2683     vm_args.options = options;
  2684     vm_args.nOptions = i;
  2685     vm_args.ignoreUnrecognized = IgnoreUnrecognizedVMOptions;
  2687     if (PrintVMOptions) {
  2688       const char* tail;
  2689       for (int i = 0; i < vm_args.nOptions; i++) {
  2690         const JavaVMOption *option = vm_args.options + i;
  2691         if (match_option(option, "-XX:", &tail)) {
  2692           logOption(tail);
  2697     return(parse_each_vm_init_arg(&vm_args, scp_p, scp_assembly_required_p, ENVIRON_VAR));
  2699   return JNI_OK;
  2702 // Parse entry point called from JNI_CreateJavaVM
  2704 jint Arguments::parse(const JavaVMInitArgs* args) {
  2706   // Sharing support
  2707   // Construct the path to the archive
  2708   char jvm_path[JVM_MAXPATHLEN];
  2709   os::jvm_path(jvm_path, sizeof(jvm_path));
  2710 #ifdef TIERED
  2711   if (strstr(jvm_path, "client") != NULL) {
  2712     force_client_mode = true;
  2714 #endif // TIERED
  2715   char *end = strrchr(jvm_path, *os::file_separator());
  2716   if (end != NULL) *end = '\0';
  2717   char *shared_archive_path = NEW_C_HEAP_ARRAY(char, strlen(jvm_path) +
  2718                                         strlen(os::file_separator()) + 20);
  2719   if (shared_archive_path == NULL) return JNI_ENOMEM;
  2720   strcpy(shared_archive_path, jvm_path);
  2721   strcat(shared_archive_path, os::file_separator());
  2722   strcat(shared_archive_path, "classes");
  2723   DEBUG_ONLY(strcat(shared_archive_path, "_g");)
  2724   strcat(shared_archive_path, ".jsa");
  2725   SharedArchivePath = shared_archive_path;
  2727   // Remaining part of option string
  2728   const char* tail;
  2730   // If flag "-XX:Flags=flags-file" is used it will be the first option to be processed.
  2731   bool settings_file_specified = false;
  2732   const char* flags_file;
  2733   int index;
  2734   for (index = 0; index < args->nOptions; index++) {
  2735     const JavaVMOption *option = args->options + index;
  2736     if (match_option(option, "-XX:Flags=", &tail)) {
  2737       flags_file = tail;
  2738       settings_file_specified = true;
  2740     if (match_option(option, "-XX:+PrintVMOptions", &tail)) {
  2741       PrintVMOptions = true;
  2743     if (match_option(option, "-XX:-PrintVMOptions", &tail)) {
  2744       PrintVMOptions = false;
  2746     if (match_option(option, "-XX:+IgnoreUnrecognizedVMOptions", &tail)) {
  2747       IgnoreUnrecognizedVMOptions = true;
  2749     if (match_option(option, "-XX:-IgnoreUnrecognizedVMOptions", &tail)) {
  2750       IgnoreUnrecognizedVMOptions = false;
  2752     if (match_option(option, "-XX:+PrintFlagsInitial", &tail)) {
  2753       CommandLineFlags::printFlags();
  2754       vm_exit(0);
  2758   if (IgnoreUnrecognizedVMOptions) {
  2759     // uncast const to modify the flag args->ignoreUnrecognized
  2760     *(jboolean*)(&args->ignoreUnrecognized) = true;
  2763   // Parse specified settings file
  2764   if (settings_file_specified) {
  2765     if (!process_settings_file(flags_file, true, args->ignoreUnrecognized)) {
  2766       return JNI_EINVAL;
  2770   // Parse default .hotspotrc settings file
  2771   if (!settings_file_specified) {
  2772     if (!process_settings_file(".hotspotrc", false, args->ignoreUnrecognized)) {
  2773       return JNI_EINVAL;
  2777   if (PrintVMOptions) {
  2778     for (index = 0; index < args->nOptions; index++) {
  2779       const JavaVMOption *option = args->options + index;
  2780       if (match_option(option, "-XX:", &tail)) {
  2781         logOption(tail);
  2786   // Parse JavaVMInitArgs structure passed in, as well as JAVA_TOOL_OPTIONS and _JAVA_OPTIONS
  2787   jint result = parse_vm_init_args(args);
  2788   if (result != JNI_OK) {
  2789     return result;
  2792 #ifndef PRODUCT
  2793   if (TraceBytecodesAt != 0) {
  2794     TraceBytecodes = true;
  2796   if (CountCompiledCalls) {
  2797     if (UseCounterDecay) {
  2798       warning("UseCounterDecay disabled because CountCalls is set");
  2799       UseCounterDecay = false;
  2802 #endif // PRODUCT
  2804   if (EnableInvokeDynamic && !EnableMethodHandles) {
  2805     if (!FLAG_IS_DEFAULT(EnableMethodHandles)) {
  2806       warning("forcing EnableMethodHandles true because EnableInvokeDynamic is true");
  2808     EnableMethodHandles = true;
  2810   if (EnableMethodHandles && !AnonymousClasses) {
  2811     if (!FLAG_IS_DEFAULT(AnonymousClasses)) {
  2812       warning("forcing AnonymousClasses true because EnableMethodHandles is true");
  2814     AnonymousClasses = true;
  2816   if ((EnableMethodHandles || AnonymousClasses) && ScavengeRootsInCode == 0) {
  2817     if (!FLAG_IS_DEFAULT(ScavengeRootsInCode)) {
  2818       warning("forcing ScavengeRootsInCode non-zero because EnableMethodHandles or AnonymousClasses is true");
  2820     ScavengeRootsInCode = 1;
  2822 #ifdef COMPILER2
  2823   if (EnableInvokeDynamic && DoEscapeAnalysis) {
  2824     // TODO: We need to find rules for invokedynamic and EA.  For now,
  2825     // simply disable EA by default.
  2826     if (FLAG_IS_DEFAULT(DoEscapeAnalysis)) {
  2827       DoEscapeAnalysis = false;
  2830 #endif
  2832   if (PrintGCDetails) {
  2833     // Turn on -verbose:gc options as well
  2834     PrintGC = true;
  2837 #if defined(_LP64) && defined(COMPILER1)
  2838   UseCompressedOops = false;
  2839 #endif
  2841 #ifdef SERIALGC
  2842   force_serial_gc();
  2843 #endif // SERIALGC
  2844 #ifdef KERNEL
  2845   no_shared_spaces();
  2846 #endif // KERNEL
  2848   // Set flags based on ergonomics.
  2849   set_ergonomics_flags();
  2851 #ifdef _LP64
  2852   // XXX JSR 292 currently does not support compressed oops.
  2853   if (EnableMethodHandles && UseCompressedOops) {
  2854     if (FLAG_IS_DEFAULT(UseCompressedOops) || FLAG_IS_ERGO(UseCompressedOops)) {
  2855       UseCompressedOops = false;
  2858 #endif // _LP64
  2860   // Check the GC selections again.
  2861   if (!check_gc_consistency()) {
  2862     return JNI_EINVAL;
  2865 #ifndef KERNEL
  2866   if (UseConcMarkSweepGC) {
  2867     // Set flags for CMS and ParNew.  Check UseConcMarkSweep first
  2868     // to ensure that when both UseConcMarkSweepGC and UseParNewGC
  2869     // are true, we don't call set_parnew_gc_flags() as well.
  2870     set_cms_and_parnew_gc_flags();
  2871   } else {
  2872     // Set heap size based on available physical memory
  2873     set_heap_size();
  2874     // Set per-collector flags
  2875     if (UseParallelGC || UseParallelOldGC) {
  2876       set_parallel_gc_flags();
  2877     } else if (UseParNewGC) {
  2878       set_parnew_gc_flags();
  2879     } else if (UseG1GC) {
  2880       set_g1_gc_flags();
  2883 #endif // KERNEL
  2885 #ifdef SERIALGC
  2886   assert(verify_serial_gc_flags(), "SerialGC unset");
  2887 #endif // SERIALGC
  2889   // Set bytecode rewriting flags
  2890   set_bytecode_flags();
  2892   // Set flags if Aggressive optimization flags (-XX:+AggressiveOpts) enabled.
  2893   set_aggressive_opts_flags();
  2895 #ifdef CC_INTERP
  2896   // Clear flags not supported by the C++ interpreter
  2897   FLAG_SET_DEFAULT(ProfileInterpreter, false);
  2898   FLAG_SET_DEFAULT(UseBiasedLocking, false);
  2899   LP64_ONLY(FLAG_SET_DEFAULT(UseCompressedOops, false));
  2900 #endif // CC_INTERP
  2902 #ifdef ZERO
  2903   // Clear flags not supported by Zero
  2904   FLAG_SET_DEFAULT(TaggedStackInterpreter, false);
  2905 #endif // ZERO
  2907 #ifdef COMPILER2
  2908   if (!UseBiasedLocking || EmitSync != 0) {
  2909     UseOptoBiasInlining = false;
  2911 #endif
  2913   if (PrintAssembly && FLAG_IS_DEFAULT(DebugNonSafepoints)) {
  2914     warning("PrintAssembly is enabled; turning on DebugNonSafepoints to gain additional output");
  2915     DebugNonSafepoints = true;
  2918 #ifndef PRODUCT
  2919   if (CompileTheWorld) {
  2920     // Force NmethodSweeper to sweep whole CodeCache each time.
  2921     if (FLAG_IS_DEFAULT(NmethodSweepFraction)) {
  2922       NmethodSweepFraction = 1;
  2925 #endif
  2927   if (PrintCommandLineFlags) {
  2928     CommandLineFlags::printSetFlags();
  2931   if (PrintFlagsFinal) {
  2932     CommandLineFlags::printFlags();
  2935   return JNI_OK;
  2938 int Arguments::PropertyList_count(SystemProperty* pl) {
  2939   int count = 0;
  2940   while(pl != NULL) {
  2941     count++;
  2942     pl = pl->next();
  2944   return count;
  2947 const char* Arguments::PropertyList_get_value(SystemProperty *pl, const char* key) {
  2948   assert(key != NULL, "just checking");
  2949   SystemProperty* prop;
  2950   for (prop = pl; prop != NULL; prop = prop->next()) {
  2951     if (strcmp(key, prop->key()) == 0) return prop->value();
  2953   return NULL;
  2956 const char* Arguments::PropertyList_get_key_at(SystemProperty *pl, int index) {
  2957   int count = 0;
  2958   const char* ret_val = NULL;
  2960   while(pl != NULL) {
  2961     if(count >= index) {
  2962       ret_val = pl->key();
  2963       break;
  2965     count++;
  2966     pl = pl->next();
  2969   return ret_val;
  2972 char* Arguments::PropertyList_get_value_at(SystemProperty* pl, int index) {
  2973   int count = 0;
  2974   char* ret_val = NULL;
  2976   while(pl != NULL) {
  2977     if(count >= index) {
  2978       ret_val = pl->value();
  2979       break;
  2981     count++;
  2982     pl = pl->next();
  2985   return ret_val;
  2988 void Arguments::PropertyList_add(SystemProperty** plist, SystemProperty *new_p) {
  2989   SystemProperty* p = *plist;
  2990   if (p == NULL) {
  2991     *plist = new_p;
  2992   } else {
  2993     while (p->next() != NULL) {
  2994       p = p->next();
  2996     p->set_next(new_p);
  3000 void Arguments::PropertyList_add(SystemProperty** plist, const char* k, char* v) {
  3001   if (plist == NULL)
  3002     return;
  3004   SystemProperty* new_p = new SystemProperty(k, v, true);
  3005   PropertyList_add(plist, new_p);
  3008 // This add maintains unique property key in the list.
  3009 void Arguments::PropertyList_unique_add(SystemProperty** plist, const char* k, char* v, jboolean append) {
  3010   if (plist == NULL)
  3011     return;
  3013   // If property key exist then update with new value.
  3014   SystemProperty* prop;
  3015   for (prop = *plist; prop != NULL; prop = prop->next()) {
  3016     if (strcmp(k, prop->key()) == 0) {
  3017       if (append) {
  3018         prop->append_value(v);
  3019       } else {
  3020         prop->set_value(v);
  3022       return;
  3026   PropertyList_add(plist, k, v);
  3029 #ifdef KERNEL
  3030 char *Arguments::get_kernel_properties() {
  3031   // Find properties starting with kernel and append them to string
  3032   // We need to find out how long they are first because the URL's that they
  3033   // might point to could get long.
  3034   int length = 0;
  3035   SystemProperty* prop;
  3036   for (prop = _system_properties; prop != NULL; prop = prop->next()) {
  3037     if (strncmp(prop->key(), "kernel.", 7 ) == 0) {
  3038       length += (strlen(prop->key()) + strlen(prop->value()) + 5);  // "-D ="
  3041   // Add one for null terminator.
  3042   char *props = AllocateHeap(length + 1, "get_kernel_properties");
  3043   if (length != 0) {
  3044     int pos = 0;
  3045     for (prop = _system_properties; prop != NULL; prop = prop->next()) {
  3046       if (strncmp(prop->key(), "kernel.", 7 ) == 0) {
  3047         jio_snprintf(&props[pos], length-pos,
  3048                      "-D%s=%s ", prop->key(), prop->value());
  3049         pos = strlen(props);
  3053   // null terminate props in case of null
  3054   props[length] = '\0';
  3055   return props;
  3057 #endif // KERNEL
  3059 // Copies src into buf, replacing "%%" with "%" and "%p" with pid
  3060 // Returns true if all of the source pointed by src has been copied over to
  3061 // the destination buffer pointed by buf. Otherwise, returns false.
  3062 // Notes:
  3063 // 1. If the length (buflen) of the destination buffer excluding the
  3064 // NULL terminator character is not long enough for holding the expanded
  3065 // pid characters, it also returns false instead of returning the partially
  3066 // expanded one.
  3067 // 2. The passed in "buflen" should be large enough to hold the null terminator.
  3068 bool Arguments::copy_expand_pid(const char* src, size_t srclen,
  3069                                 char* buf, size_t buflen) {
  3070   const char* p = src;
  3071   char* b = buf;
  3072   const char* src_end = &src[srclen];
  3073   char* buf_end = &buf[buflen - 1];
  3075   while (p < src_end && b < buf_end) {
  3076     if (*p == '%') {
  3077       switch (*(++p)) {
  3078       case '%':         // "%%" ==> "%"
  3079         *b++ = *p++;
  3080         break;
  3081       case 'p':  {       //  "%p" ==> current process id
  3082         // buf_end points to the character before the last character so
  3083         // that we could write '\0' to the end of the buffer.
  3084         size_t buf_sz = buf_end - b + 1;
  3085         int ret = jio_snprintf(b, buf_sz, "%d", os::current_process_id());
  3087         // if jio_snprintf fails or the buffer is not long enough to hold
  3088         // the expanded pid, returns false.
  3089         if (ret < 0 || ret >= (int)buf_sz) {
  3090           return false;
  3091         } else {
  3092           b += ret;
  3093           assert(*b == '\0', "fail in copy_expand_pid");
  3094           if (p == src_end && b == buf_end + 1) {
  3095             // reach the end of the buffer.
  3096             return true;
  3099         p++;
  3100         break;
  3102       default :
  3103         *b++ = '%';
  3105     } else {
  3106       *b++ = *p++;
  3109   *b = '\0';
  3110   return (p == src_end); // return false if not all of the source was copied

mercurial