src/share/vm/runtime/arguments.cpp

Tue, 07 Sep 2010 11:38:09 -0400

author
kamg
date
Tue, 07 Sep 2010 11:38:09 -0400
changeset 2125
40d7b43b6fe0
parent 2119
14197af1010e
parent 2123
6ee479178066
child 2151
18c378513575
child 2155
728a287f6c20
permissions
-rw-r--r--

Merge

     1 /*
     2  * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     8  *
     9  * This code is distributed in the hope that it will be useful, but WITHOUT
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    12  * version 2 for more details (a copy is included in the LICENSE file that
    13  * accompanied this code).
    14  *
    15  * You should have received a copy of the GNU General Public License version
    16  * 2 along with this work; if not, write to the Free Software Foundation,
    17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    18  *
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    22  *
    23  */
    25 #include "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   { "UseDepthFirstScavengeOrder",
   188                            JDK_Version::jdk_update(6,22), JDK_Version::jdk(7) },
   189   { NULL, JDK_Version(0), JDK_Version(0) }
   190 };
   192 // Returns true if the flag is obsolete and fits into the range specified
   193 // for being ignored.  In the case that the flag is ignored, the 'version'
   194 // value is filled in with the version number when the flag became
   195 // obsolete so that that value can be displayed to the user.
   196 bool Arguments::is_newly_obsolete(const char *s, JDK_Version* version) {
   197   int i = 0;
   198   assert(version != NULL, "Must provide a version buffer");
   199   while (obsolete_jvm_flags[i].name != NULL) {
   200     const ObsoleteFlag& flag_status = obsolete_jvm_flags[i];
   201     // <flag>=xxx form
   202     // [-|+]<flag> form
   203     if ((strncmp(flag_status.name, s, strlen(flag_status.name)) == 0) ||
   204         ((s[0] == '+' || s[0] == '-') &&
   205         (strncmp(flag_status.name, &s[1], strlen(flag_status.name)) == 0))) {
   206       if (JDK_Version::current().compare(flag_status.accept_until) == -1) {
   207           *version = flag_status.obsoleted_in;
   208           return true;
   209       }
   210     }
   211     i++;
   212   }
   213   return false;
   214 }
   216 // Constructs the system class path (aka boot class path) from the following
   217 // components, in order:
   218 //
   219 //     prefix           // from -Xbootclasspath/p:...
   220 //     endorsed         // the expansion of -Djava.endorsed.dirs=...
   221 //     base             // from os::get_system_properties() or -Xbootclasspath=
   222 //     suffix           // from -Xbootclasspath/a:...
   223 //
   224 // java.endorsed.dirs is a list of directories; any jar or zip files in the
   225 // directories are added to the sysclasspath just before the base.
   226 //
   227 // This could be AllStatic, but it isn't needed after argument processing is
   228 // complete.
   229 class SysClassPath: public StackObj {
   230 public:
   231   SysClassPath(const char* base);
   232   ~SysClassPath();
   234   inline void set_base(const char* base);
   235   inline void add_prefix(const char* prefix);
   236   inline void add_suffix_to_prefix(const char* suffix);
   237   inline void add_suffix(const char* suffix);
   238   inline void reset_path(const char* base);
   240   // Expand the jar/zip files in each directory listed by the java.endorsed.dirs
   241   // property.  Must be called after all command-line arguments have been
   242   // processed (in particular, -Djava.endorsed.dirs=...) and before calling
   243   // combined_path().
   244   void expand_endorsed();
   246   inline const char* get_base()     const { return _items[_scp_base]; }
   247   inline const char* get_prefix()   const { return _items[_scp_prefix]; }
   248   inline const char* get_suffix()   const { return _items[_scp_suffix]; }
   249   inline const char* get_endorsed() const { return _items[_scp_endorsed]; }
   251   // Combine all the components into a single c-heap-allocated string; caller
   252   // must free the string if/when no longer needed.
   253   char* combined_path();
   255 private:
   256   // Utility routines.
   257   static char* add_to_path(const char* path, const char* str, bool prepend);
   258   static char* add_jars_to_path(char* path, const char* directory);
   260   inline void reset_item_at(int index);
   262   // Array indices for the items that make up the sysclasspath.  All except the
   263   // base are allocated in the C heap and freed by this class.
   264   enum {
   265     _scp_prefix,        // from -Xbootclasspath/p:...
   266     _scp_endorsed,      // the expansion of -Djava.endorsed.dirs=...
   267     _scp_base,          // the default sysclasspath
   268     _scp_suffix,        // from -Xbootclasspath/a:...
   269     _scp_nitems         // the number of items, must be last.
   270   };
   272   const char* _items[_scp_nitems];
   273   DEBUG_ONLY(bool _expansion_done;)
   274 };
   276 SysClassPath::SysClassPath(const char* base) {
   277   memset(_items, 0, sizeof(_items));
   278   _items[_scp_base] = base;
   279   DEBUG_ONLY(_expansion_done = false;)
   280 }
   282 SysClassPath::~SysClassPath() {
   283   // Free everything except the base.
   284   for (int i = 0; i < _scp_nitems; ++i) {
   285     if (i != _scp_base) reset_item_at(i);
   286   }
   287   DEBUG_ONLY(_expansion_done = false;)
   288 }
   290 inline void SysClassPath::set_base(const char* base) {
   291   _items[_scp_base] = base;
   292 }
   294 inline void SysClassPath::add_prefix(const char* prefix) {
   295   _items[_scp_prefix] = add_to_path(_items[_scp_prefix], prefix, true);
   296 }
   298 inline void SysClassPath::add_suffix_to_prefix(const char* suffix) {
   299   _items[_scp_prefix] = add_to_path(_items[_scp_prefix], suffix, false);
   300 }
   302 inline void SysClassPath::add_suffix(const char* suffix) {
   303   _items[_scp_suffix] = add_to_path(_items[_scp_suffix], suffix, false);
   304 }
   306 inline void SysClassPath::reset_item_at(int index) {
   307   assert(index < _scp_nitems && index != _scp_base, "just checking");
   308   if (_items[index] != NULL) {
   309     FREE_C_HEAP_ARRAY(char, _items[index]);
   310     _items[index] = NULL;
   311   }
   312 }
   314 inline void SysClassPath::reset_path(const char* base) {
   315   // Clear the prefix and suffix.
   316   reset_item_at(_scp_prefix);
   317   reset_item_at(_scp_suffix);
   318   set_base(base);
   319 }
   321 //------------------------------------------------------------------------------
   323 void SysClassPath::expand_endorsed() {
   324   assert(_items[_scp_endorsed] == NULL, "can only be called once.");
   326   const char* path = Arguments::get_property("java.endorsed.dirs");
   327   if (path == NULL) {
   328     path = Arguments::get_endorsed_dir();
   329     assert(path != NULL, "no default for java.endorsed.dirs");
   330   }
   332   char* expanded_path = NULL;
   333   const char separator = *os::path_separator();
   334   const char* const end = path + strlen(path);
   335   while (path < end) {
   336     const char* tmp_end = strchr(path, separator);
   337     if (tmp_end == NULL) {
   338       expanded_path = add_jars_to_path(expanded_path, path);
   339       path = end;
   340     } else {
   341       char* dirpath = NEW_C_HEAP_ARRAY(char, tmp_end - path + 1);
   342       memcpy(dirpath, path, tmp_end - path);
   343       dirpath[tmp_end - path] = '\0';
   344       expanded_path = add_jars_to_path(expanded_path, dirpath);
   345       FREE_C_HEAP_ARRAY(char, dirpath);
   346       path = tmp_end + 1;
   347     }
   348   }
   349   _items[_scp_endorsed] = expanded_path;
   350   DEBUG_ONLY(_expansion_done = true;)
   351 }
   353 // Combine the bootclasspath elements, some of which may be null, into a single
   354 // c-heap-allocated string.
   355 char* SysClassPath::combined_path() {
   356   assert(_items[_scp_base] != NULL, "empty default sysclasspath");
   357   assert(_expansion_done, "must call expand_endorsed() first.");
   359   size_t lengths[_scp_nitems];
   360   size_t total_len = 0;
   362   const char separator = *os::path_separator();
   364   // Get the lengths.
   365   int i;
   366   for (i = 0; i < _scp_nitems; ++i) {
   367     if (_items[i] != NULL) {
   368       lengths[i] = strlen(_items[i]);
   369       // Include space for the separator char (or a NULL for the last item).
   370       total_len += lengths[i] + 1;
   371     }
   372   }
   373   assert(total_len > 0, "empty sysclasspath not allowed");
   375   // Copy the _items to a single string.
   376   char* cp = NEW_C_HEAP_ARRAY(char, total_len);
   377   char* cp_tmp = cp;
   378   for (i = 0; i < _scp_nitems; ++i) {
   379     if (_items[i] != NULL) {
   380       memcpy(cp_tmp, _items[i], lengths[i]);
   381       cp_tmp += lengths[i];
   382       *cp_tmp++ = separator;
   383     }
   384   }
   385   *--cp_tmp = '\0';     // Replace the extra separator.
   386   return cp;
   387 }
   389 // Note:  path must be c-heap-allocated (or NULL); it is freed if non-null.
   390 char*
   391 SysClassPath::add_to_path(const char* path, const char* str, bool prepend) {
   392   char *cp;
   394   assert(str != NULL, "just checking");
   395   if (path == NULL) {
   396     size_t len = strlen(str) + 1;
   397     cp = NEW_C_HEAP_ARRAY(char, len);
   398     memcpy(cp, str, len);                       // copy the trailing null
   399   } else {
   400     const char separator = *os::path_separator();
   401     size_t old_len = strlen(path);
   402     size_t str_len = strlen(str);
   403     size_t len = old_len + str_len + 2;
   405     if (prepend) {
   406       cp = NEW_C_HEAP_ARRAY(char, len);
   407       char* cp_tmp = cp;
   408       memcpy(cp_tmp, str, str_len);
   409       cp_tmp += str_len;
   410       *cp_tmp = separator;
   411       memcpy(++cp_tmp, path, old_len + 1);      // copy the trailing null
   412       FREE_C_HEAP_ARRAY(char, path);
   413     } else {
   414       cp = REALLOC_C_HEAP_ARRAY(char, path, len);
   415       char* cp_tmp = cp + old_len;
   416       *cp_tmp = separator;
   417       memcpy(++cp_tmp, str, str_len + 1);       // copy the trailing null
   418     }
   419   }
   420   return cp;
   421 }
   423 // Scan the directory and append any jar or zip files found to path.
   424 // Note:  path must be c-heap-allocated (or NULL); it is freed if non-null.
   425 char* SysClassPath::add_jars_to_path(char* path, const char* directory) {
   426   DIR* dir = os::opendir(directory);
   427   if (dir == NULL) return path;
   429   char dir_sep[2] = { '\0', '\0' };
   430   size_t directory_len = strlen(directory);
   431   const char fileSep = *os::file_separator();
   432   if (directory[directory_len - 1] != fileSep) dir_sep[0] = fileSep;
   434   /* Scan the directory for jars/zips, appending them to path. */
   435   struct dirent *entry;
   436   char *dbuf = NEW_C_HEAP_ARRAY(char, os::readdir_buf_size(directory));
   437   while ((entry = os::readdir(dir, (dirent *) dbuf)) != NULL) {
   438     const char* name = entry->d_name;
   439     const char* ext = name + strlen(name) - 4;
   440     bool isJarOrZip = ext > name &&
   441       (os::file_name_strcmp(ext, ".jar") == 0 ||
   442        os::file_name_strcmp(ext, ".zip") == 0);
   443     if (isJarOrZip) {
   444       char* jarpath = NEW_C_HEAP_ARRAY(char, directory_len + 2 + strlen(name));
   445       sprintf(jarpath, "%s%s%s", directory, dir_sep, name);
   446       path = add_to_path(path, jarpath, false);
   447       FREE_C_HEAP_ARRAY(char, jarpath);
   448     }
   449   }
   450   FREE_C_HEAP_ARRAY(char, dbuf);
   451   os::closedir(dir);
   452   return path;
   453 }
   455 // Parses a memory size specification string.
   456 static bool atomull(const char *s, julong* result) {
   457   julong n = 0;
   458   int args_read = sscanf(s, os::julong_format_specifier(), &n);
   459   if (args_read != 1) {
   460     return false;
   461   }
   462   while (*s != '\0' && isdigit(*s)) {
   463     s++;
   464   }
   465   // 4705540: illegal if more characters are found after the first non-digit
   466   if (strlen(s) > 1) {
   467     return false;
   468   }
   469   switch (*s) {
   470     case 'T': case 't':
   471       *result = n * G * K;
   472       // Check for overflow.
   473       if (*result/((julong)G * K) != n) return false;
   474       return true;
   475     case 'G': case 'g':
   476       *result = n * G;
   477       if (*result/G != n) return false;
   478       return true;
   479     case 'M': case 'm':
   480       *result = n * M;
   481       if (*result/M != n) return false;
   482       return true;
   483     case 'K': case 'k':
   484       *result = n * K;
   485       if (*result/K != n) return false;
   486       return true;
   487     case '\0':
   488       *result = n;
   489       return true;
   490     default:
   491       return false;
   492   }
   493 }
   495 Arguments::ArgsRange Arguments::check_memory_size(julong size, julong min_size) {
   496   if (size < min_size) return arg_too_small;
   497   // Check that size will fit in a size_t (only relevant on 32-bit)
   498   if (size > max_uintx) return arg_too_big;
   499   return arg_in_range;
   500 }
   502 // Describe an argument out of range error
   503 void Arguments::describe_range_error(ArgsRange errcode) {
   504   switch(errcode) {
   505   case arg_too_big:
   506     jio_fprintf(defaultStream::error_stream(),
   507                 "The specified size exceeds the maximum "
   508                 "representable size.\n");
   509     break;
   510   case arg_too_small:
   511   case arg_unreadable:
   512   case arg_in_range:
   513     // do nothing for now
   514     break;
   515   default:
   516     ShouldNotReachHere();
   517   }
   518 }
   520 static bool set_bool_flag(char* name, bool value, FlagValueOrigin origin) {
   521   return CommandLineFlags::boolAtPut(name, &value, origin);
   522 }
   524 static bool set_fp_numeric_flag(char* name, char* value, FlagValueOrigin origin) {
   525   double v;
   526   if (sscanf(value, "%lf", &v) != 1) {
   527     return false;
   528   }
   530   if (CommandLineFlags::doubleAtPut(name, &v, origin)) {
   531     return true;
   532   }
   533   return false;
   534 }
   536 static bool set_numeric_flag(char* name, char* value, FlagValueOrigin origin) {
   537   julong v;
   538   intx intx_v;
   539   bool is_neg = false;
   540   // Check the sign first since atomull() parses only unsigned values.
   541   if (*value == '-') {
   542     if (!CommandLineFlags::intxAt(name, &intx_v)) {
   543       return false;
   544     }
   545     value++;
   546     is_neg = true;
   547   }
   548   if (!atomull(value, &v)) {
   549     return false;
   550   }
   551   intx_v = (intx) v;
   552   if (is_neg) {
   553     intx_v = -intx_v;
   554   }
   555   if (CommandLineFlags::intxAtPut(name, &intx_v, origin)) {
   556     return true;
   557   }
   558   uintx uintx_v = (uintx) v;
   559   if (!is_neg && CommandLineFlags::uintxAtPut(name, &uintx_v, origin)) {
   560     return true;
   561   }
   562   uint64_t uint64_t_v = (uint64_t) v;
   563   if (!is_neg && CommandLineFlags::uint64_tAtPut(name, &uint64_t_v, origin)) {
   564     return true;
   565   }
   566   return false;
   567 }
   569 static bool set_string_flag(char* name, const char* value, FlagValueOrigin origin) {
   570   if (!CommandLineFlags::ccstrAtPut(name, &value, origin))  return false;
   571   // Contract:  CommandLineFlags always returns a pointer that needs freeing.
   572   FREE_C_HEAP_ARRAY(char, value);
   573   return true;
   574 }
   576 static bool append_to_string_flag(char* name, const char* new_value, FlagValueOrigin origin) {
   577   const char* old_value = "";
   578   if (!CommandLineFlags::ccstrAt(name, &old_value))  return false;
   579   size_t old_len = old_value != NULL ? strlen(old_value) : 0;
   580   size_t new_len = strlen(new_value);
   581   const char* value;
   582   char* free_this_too = NULL;
   583   if (old_len == 0) {
   584     value = new_value;
   585   } else if (new_len == 0) {
   586     value = old_value;
   587   } else {
   588     char* buf = NEW_C_HEAP_ARRAY(char, old_len + 1 + new_len + 1);
   589     // each new setting adds another LINE to the switch:
   590     sprintf(buf, "%s\n%s", old_value, new_value);
   591     value = buf;
   592     free_this_too = buf;
   593   }
   594   (void) CommandLineFlags::ccstrAtPut(name, &value, origin);
   595   // CommandLineFlags always returns a pointer that needs freeing.
   596   FREE_C_HEAP_ARRAY(char, value);
   597   if (free_this_too != NULL) {
   598     // CommandLineFlags made its own copy, so I must delete my own temp. buffer.
   599     FREE_C_HEAP_ARRAY(char, free_this_too);
   600   }
   601   return true;
   602 }
   604 bool Arguments::parse_argument(const char* arg, FlagValueOrigin origin) {
   606   // range of acceptable characters spelled out for portability reasons
   607 #define NAME_RANGE  "[abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_]"
   608 #define BUFLEN 255
   609   char name[BUFLEN+1];
   610   char dummy;
   612   if (sscanf(arg, "-%" XSTR(BUFLEN) NAME_RANGE "%c", name, &dummy) == 1) {
   613     return set_bool_flag(name, false, origin);
   614   }
   615   if (sscanf(arg, "+%" XSTR(BUFLEN) NAME_RANGE "%c", name, &dummy) == 1) {
   616     return set_bool_flag(name, true, origin);
   617   }
   619   char punct;
   620   if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "%c", name, &punct) == 2 && punct == '=') {
   621     const char* value = strchr(arg, '=') + 1;
   622     Flag* flag = Flag::find_flag(name, strlen(name));
   623     if (flag != NULL && flag->is_ccstr()) {
   624       if (flag->ccstr_accumulates()) {
   625         return append_to_string_flag(name, value, origin);
   626       } else {
   627         if (value[0] == '\0') {
   628           value = NULL;
   629         }
   630         return set_string_flag(name, value, origin);
   631       }
   632     }
   633   }
   635   if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE ":%c", name, &punct) == 2 && punct == '=') {
   636     const char* value = strchr(arg, '=') + 1;
   637     // -XX:Foo:=xxx will reset the string flag to the given value.
   638     if (value[0] == '\0') {
   639       value = NULL;
   640     }
   641     return set_string_flag(name, value, origin);
   642   }
   644 #define SIGNED_FP_NUMBER_RANGE "[-0123456789.]"
   645 #define SIGNED_NUMBER_RANGE    "[-0123456789]"
   646 #define        NUMBER_RANGE    "[0123456789]"
   647   char value[BUFLEN + 1];
   648   char value2[BUFLEN + 1];
   649   if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "=" "%" XSTR(BUFLEN) SIGNED_NUMBER_RANGE "." "%" XSTR(BUFLEN) NUMBER_RANGE "%c", name, value, value2, &dummy) == 3) {
   650     // Looks like a floating-point number -- try again with more lenient format string
   651     if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "=" "%" XSTR(BUFLEN) SIGNED_FP_NUMBER_RANGE "%c", name, value, &dummy) == 2) {
   652       return set_fp_numeric_flag(name, value, origin);
   653     }
   654   }
   656 #define VALUE_RANGE "[-kmgtKMGT0123456789]"
   657   if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "=" "%" XSTR(BUFLEN) VALUE_RANGE "%c", name, value, &dummy) == 2) {
   658     return set_numeric_flag(name, value, origin);
   659   }
   661   return false;
   662 }
   664 void Arguments::add_string(char*** bldarray, int* count, const char* arg) {
   665   assert(bldarray != NULL, "illegal argument");
   667   if (arg == NULL) {
   668     return;
   669   }
   671   int index = *count;
   673   // expand the array and add arg to the last element
   674   (*count)++;
   675   if (*bldarray == NULL) {
   676     *bldarray = NEW_C_HEAP_ARRAY(char*, *count);
   677   } else {
   678     *bldarray = REALLOC_C_HEAP_ARRAY(char*, *bldarray, *count);
   679   }
   680   (*bldarray)[index] = strdup(arg);
   681 }
   683 void Arguments::build_jvm_args(const char* arg) {
   684   add_string(&_jvm_args_array, &_num_jvm_args, arg);
   685 }
   687 void Arguments::build_jvm_flags(const char* arg) {
   688   add_string(&_jvm_flags_array, &_num_jvm_flags, arg);
   689 }
   691 // utility function to return a string that concatenates all
   692 // strings in a given char** array
   693 const char* Arguments::build_resource_string(char** args, int count) {
   694   if (args == NULL || count == 0) {
   695     return NULL;
   696   }
   697   size_t length = strlen(args[0]) + 1; // add 1 for the null terminator
   698   for (int i = 1; i < count; i++) {
   699     length += strlen(args[i]) + 1; // add 1 for a space
   700   }
   701   char* s = NEW_RESOURCE_ARRAY(char, length);
   702   strcpy(s, args[0]);
   703   for (int j = 1; j < count; j++) {
   704     strcat(s, " ");
   705     strcat(s, args[j]);
   706   }
   707   return (const char*) s;
   708 }
   710 void Arguments::print_on(outputStream* st) {
   711   st->print_cr("VM Arguments:");
   712   if (num_jvm_flags() > 0) {
   713     st->print("jvm_flags: "); print_jvm_flags_on(st);
   714   }
   715   if (num_jvm_args() > 0) {
   716     st->print("jvm_args: "); print_jvm_args_on(st);
   717   }
   718   st->print_cr("java_command: %s", java_command() ? java_command() : "<unknown>");
   719   st->print_cr("Launcher Type: %s", _sun_java_launcher);
   720 }
   722 void Arguments::print_jvm_flags_on(outputStream* st) {
   723   if (_num_jvm_flags > 0) {
   724     for (int i=0; i < _num_jvm_flags; i++) {
   725       st->print("%s ", _jvm_flags_array[i]);
   726     }
   727     st->print_cr("");
   728   }
   729 }
   731 void Arguments::print_jvm_args_on(outputStream* st) {
   732   if (_num_jvm_args > 0) {
   733     for (int i=0; i < _num_jvm_args; i++) {
   734       st->print("%s ", _jvm_args_array[i]);
   735     }
   736     st->print_cr("");
   737   }
   738 }
   740 bool Arguments::process_argument(const char* arg,
   741     jboolean ignore_unrecognized, FlagValueOrigin origin) {
   743   JDK_Version since = JDK_Version();
   745   if (parse_argument(arg, origin)) {
   746     // do nothing
   747   } else if (is_newly_obsolete(arg, &since)) {
   748     enum { bufsize = 256 };
   749     char buffer[bufsize];
   750     since.to_string(buffer, bufsize);
   751     jio_fprintf(defaultStream::error_stream(),
   752       "Warning: The flag %s has been EOL'd as of %s and will"
   753       " be ignored\n", arg, buffer);
   754   } else {
   755     if (!ignore_unrecognized) {
   756       jio_fprintf(defaultStream::error_stream(),
   757                   "Unrecognized VM option '%s'\n", arg);
   758       // allow for commandline "commenting out" options like -XX:#+Verbose
   759       if (strlen(arg) == 0 || arg[0] != '#') {
   760         return false;
   761       }
   762     }
   763   }
   764   return true;
   765 }
   767 bool Arguments::process_settings_file(const char* file_name, bool should_exist, jboolean ignore_unrecognized) {
   768   FILE* stream = fopen(file_name, "rb");
   769   if (stream == NULL) {
   770     if (should_exist) {
   771       jio_fprintf(defaultStream::error_stream(),
   772                   "Could not open settings file %s\n", file_name);
   773       return false;
   774     } else {
   775       return true;
   776     }
   777   }
   779   char token[1024];
   780   int  pos = 0;
   782   bool in_white_space = true;
   783   bool in_comment     = false;
   784   bool in_quote       = false;
   785   char quote_c        = 0;
   786   bool result         = true;
   788   int c = getc(stream);
   789   while(c != EOF) {
   790     if (in_white_space) {
   791       if (in_comment) {
   792         if (c == '\n') in_comment = false;
   793       } else {
   794         if (c == '#') in_comment = true;
   795         else if (!isspace(c)) {
   796           in_white_space = false;
   797           token[pos++] = c;
   798         }
   799       }
   800     } else {
   801       if (c == '\n' || (!in_quote && isspace(c))) {
   802         // token ends at newline, or at unquoted whitespace
   803         // this allows a way to include spaces in string-valued options
   804         token[pos] = '\0';
   805         logOption(token);
   806         result &= process_argument(token, ignore_unrecognized, CONFIG_FILE);
   807         build_jvm_flags(token);
   808         pos = 0;
   809         in_white_space = true;
   810         in_quote = false;
   811       } else if (!in_quote && (c == '\'' || c == '"')) {
   812         in_quote = true;
   813         quote_c = c;
   814       } else if (in_quote && (c == quote_c)) {
   815         in_quote = false;
   816       } else {
   817         token[pos++] = c;
   818       }
   819     }
   820     c = getc(stream);
   821   }
   822   if (pos > 0) {
   823     token[pos] = '\0';
   824     result &= process_argument(token, ignore_unrecognized, CONFIG_FILE);
   825     build_jvm_flags(token);
   826   }
   827   fclose(stream);
   828   return result;
   829 }
   831 //=============================================================================================================
   832 // Parsing of properties (-D)
   834 const char* Arguments::get_property(const char* key) {
   835   return PropertyList_get_value(system_properties(), key);
   836 }
   838 bool Arguments::add_property(const char* prop) {
   839   const char* eq = strchr(prop, '=');
   840   char* key;
   841   // ns must be static--its address may be stored in a SystemProperty object.
   842   const static char ns[1] = {0};
   843   char* value = (char *)ns;
   845   size_t key_len = (eq == NULL) ? strlen(prop) : (eq - prop);
   846   key = AllocateHeap(key_len + 1, "add_property");
   847   strncpy(key, prop, key_len);
   848   key[key_len] = '\0';
   850   if (eq != NULL) {
   851     size_t value_len = strlen(prop) - key_len - 1;
   852     value = AllocateHeap(value_len + 1, "add_property");
   853     strncpy(value, &prop[key_len + 1], value_len + 1);
   854   }
   856   if (strcmp(key, "java.compiler") == 0) {
   857     process_java_compiler_argument(value);
   858     FreeHeap(key);
   859     if (eq != NULL) {
   860       FreeHeap(value);
   861     }
   862     return true;
   863   } else if (strcmp(key, "sun.java.command") == 0) {
   864     _java_command = value;
   866     // don't add this property to the properties exposed to the java application
   867     FreeHeap(key);
   868     return true;
   869   } else if (strcmp(key, "sun.java.launcher.pid") == 0) {
   870     // launcher.pid property is private and is processed
   871     // in process_sun_java_launcher_properties();
   872     // the sun.java.launcher property is passed on to the java application
   873     FreeHeap(key);
   874     if (eq != NULL) {
   875       FreeHeap(value);
   876     }
   877     return true;
   878   } else if (strcmp(key, "java.vendor.url.bug") == 0) {
   879     // save it in _java_vendor_url_bug, so JVM fatal error handler can access
   880     // its value without going through the property list or making a Java call.
   881     _java_vendor_url_bug = value;
   882   } else if (strcmp(key, "sun.boot.library.path") == 0) {
   883     PropertyList_unique_add(&_system_properties, key, value, true);
   884     return true;
   885   }
   886   // Create new property and add at the end of the list
   887   PropertyList_unique_add(&_system_properties, key, value);
   888   return true;
   889 }
   891 //===========================================================================================================
   892 // Setting int/mixed/comp mode flags
   894 void Arguments::set_mode_flags(Mode mode) {
   895   // Set up default values for all flags.
   896   // If you add a flag to any of the branches below,
   897   // add a default value for it here.
   898   set_java_compiler(false);
   899   _mode                      = mode;
   901   // Ensure Agent_OnLoad has the correct initial values.
   902   // This may not be the final mode; mode may change later in onload phase.
   903   PropertyList_unique_add(&_system_properties, "java.vm.info",
   904                           (char*)Abstract_VM_Version::vm_info_string(), false);
   906   UseInterpreter             = true;
   907   UseCompiler                = true;
   908   UseLoopCounter             = true;
   910   // Default values may be platform/compiler dependent -
   911   // use the saved values
   912   ClipInlining               = Arguments::_ClipInlining;
   913   AlwaysCompileLoopMethods   = Arguments::_AlwaysCompileLoopMethods;
   914   UseOnStackReplacement      = Arguments::_UseOnStackReplacement;
   915   BackgroundCompilation      = Arguments::_BackgroundCompilation;
   916   Tier2CompileThreshold      = Arguments::_Tier2CompileThreshold;
   918   // Change from defaults based on mode
   919   switch (mode) {
   920   default:
   921     ShouldNotReachHere();
   922     break;
   923   case _int:
   924     UseCompiler              = false;
   925     UseLoopCounter           = false;
   926     AlwaysCompileLoopMethods = false;
   927     UseOnStackReplacement    = false;
   928     break;
   929   case _mixed:
   930     // same as default
   931     break;
   932   case _comp:
   933     UseInterpreter           = false;
   934     BackgroundCompilation    = false;
   935     ClipInlining             = false;
   936     break;
   937   }
   938 }
   940 // Conflict: required to use shared spaces (-Xshare:on), but
   941 // incompatible command line options were chosen.
   943 static void no_shared_spaces() {
   944   if (RequireSharedSpaces) {
   945     jio_fprintf(defaultStream::error_stream(),
   946       "Class data sharing is inconsistent with other specified options.\n");
   947     vm_exit_during_initialization("Unable to use shared archive.", NULL);
   948   } else {
   949     FLAG_SET_DEFAULT(UseSharedSpaces, false);
   950   }
   951 }
   953 #ifndef KERNEL
   954 // If the user has chosen ParallelGCThreads > 0, we set UseParNewGC
   955 // if it's not explictly set or unset. If the user has chosen
   956 // UseParNewGC and not explicitly set ParallelGCThreads we
   957 // set it, unless this is a single cpu machine.
   958 void Arguments::set_parnew_gc_flags() {
   959   assert(!UseSerialGC && !UseParallelOldGC && !UseParallelGC && !UseG1GC,
   960          "control point invariant");
   961   assert(UseParNewGC, "Error");
   963   // Turn off AdaptiveSizePolicy by default for parnew until it is
   964   // complete.
   965   if (FLAG_IS_DEFAULT(UseAdaptiveSizePolicy)) {
   966     FLAG_SET_DEFAULT(UseAdaptiveSizePolicy, false);
   967   }
   969   if (ParallelGCThreads == 0) {
   970     FLAG_SET_DEFAULT(ParallelGCThreads,
   971                      Abstract_VM_Version::parallel_worker_threads());
   972     if (ParallelGCThreads == 1) {
   973       FLAG_SET_DEFAULT(UseParNewGC, false);
   974       FLAG_SET_DEFAULT(ParallelGCThreads, 0);
   975     }
   976   }
   977   if (UseParNewGC) {
   978     // CDS doesn't work with ParNew yet
   979     no_shared_spaces();
   981     // By default YoungPLABSize and OldPLABSize are set to 4096 and 1024 respectively,
   982     // these settings are default for Parallel Scavenger. For ParNew+Tenured configuration
   983     // we set them to 1024 and 1024.
   984     // See CR 6362902.
   985     if (FLAG_IS_DEFAULT(YoungPLABSize)) {
   986       FLAG_SET_DEFAULT(YoungPLABSize, (intx)1024);
   987     }
   988     if (FLAG_IS_DEFAULT(OldPLABSize)) {
   989       FLAG_SET_DEFAULT(OldPLABSize, (intx)1024);
   990     }
   992     // AlwaysTenure flag should make ParNew promote all at first collection.
   993     // See CR 6362902.
   994     if (AlwaysTenure) {
   995       FLAG_SET_CMDLINE(intx, MaxTenuringThreshold, 0);
   996     }
   997     // When using compressed oops, we use local overflow stacks,
   998     // rather than using a global overflow list chained through
   999     // the klass word of the object's pre-image.
  1000     if (UseCompressedOops && !ParGCUseLocalOverflow) {
  1001       if (!FLAG_IS_DEFAULT(ParGCUseLocalOverflow)) {
  1002         warning("Forcing +ParGCUseLocalOverflow: needed if using compressed references");
  1004       FLAG_SET_DEFAULT(ParGCUseLocalOverflow, true);
  1006     assert(ParGCUseLocalOverflow || !UseCompressedOops, "Error");
  1010 // Adjust some sizes to suit CMS and/or ParNew needs; these work well on
  1011 // sparc/solaris for certain applications, but would gain from
  1012 // further optimization and tuning efforts, and would almost
  1013 // certainly gain from analysis of platform and environment.
  1014 void Arguments::set_cms_and_parnew_gc_flags() {
  1015   assert(!UseSerialGC && !UseParallelOldGC && !UseParallelGC, "Error");
  1016   assert(UseConcMarkSweepGC, "CMS is expected to be on here");
  1018   // If we are using CMS, we prefer to UseParNewGC,
  1019   // unless explicitly forbidden.
  1020   if (FLAG_IS_DEFAULT(UseParNewGC)) {
  1021     FLAG_SET_ERGO(bool, UseParNewGC, true);
  1024   // Turn off AdaptiveSizePolicy by default for cms until it is
  1025   // complete.
  1026   if (FLAG_IS_DEFAULT(UseAdaptiveSizePolicy)) {
  1027     FLAG_SET_DEFAULT(UseAdaptiveSizePolicy, false);
  1030   // In either case, adjust ParallelGCThreads and/or UseParNewGC
  1031   // as needed.
  1032   if (UseParNewGC) {
  1033     set_parnew_gc_flags();
  1036   // Now make adjustments for CMS
  1037   size_t young_gen_per_worker;
  1038   intx new_ratio;
  1039   size_t min_new_default;
  1040   intx tenuring_default;
  1041   if (CMSUseOldDefaults) {  // old defaults: "old" as of 6.0
  1042     if FLAG_IS_DEFAULT(CMSYoungGenPerWorker) {
  1043       FLAG_SET_ERGO(intx, CMSYoungGenPerWorker, 4*M);
  1045     young_gen_per_worker = 4*M;
  1046     new_ratio = (intx)15;
  1047     min_new_default = 4*M;
  1048     tenuring_default = (intx)0;
  1049   } else { // new defaults: "new" as of 6.0
  1050     young_gen_per_worker = CMSYoungGenPerWorker;
  1051     new_ratio = (intx)7;
  1052     min_new_default = 16*M;
  1053     tenuring_default = (intx)4;
  1056   // Preferred young gen size for "short" pauses
  1057   const uintx parallel_gc_threads =
  1058     (ParallelGCThreads == 0 ? 1 : ParallelGCThreads);
  1059   const size_t preferred_max_new_size_unaligned =
  1060     ScaleForWordSize(young_gen_per_worker * parallel_gc_threads);
  1061   const size_t preferred_max_new_size =
  1062     align_size_up(preferred_max_new_size_unaligned, os::vm_page_size());
  1064   // Unless explicitly requested otherwise, size young gen
  1065   // for "short" pauses ~ 4M*ParallelGCThreads
  1067   // If either MaxNewSize or NewRatio is set on the command line,
  1068   // assume the user is trying to set the size of the young gen.
  1070   if (FLAG_IS_DEFAULT(MaxNewSize) && FLAG_IS_DEFAULT(NewRatio)) {
  1072     // Set MaxNewSize to our calculated preferred_max_new_size unless
  1073     // NewSize was set on the command line and it is larger than
  1074     // preferred_max_new_size.
  1075     if (!FLAG_IS_DEFAULT(NewSize)) {   // NewSize explicitly set at command-line
  1076       FLAG_SET_ERGO(uintx, MaxNewSize, MAX2(NewSize, preferred_max_new_size));
  1077     } else {
  1078       FLAG_SET_ERGO(uintx, MaxNewSize, preferred_max_new_size);
  1080     if (PrintGCDetails && Verbose) {
  1081       // Too early to use gclog_or_tty
  1082       tty->print_cr("Ergo set MaxNewSize: " SIZE_FORMAT, MaxNewSize);
  1085     // Unless explicitly requested otherwise, prefer a large
  1086     // Old to Young gen size so as to shift the collection load
  1087     // to the old generation concurrent collector
  1089     // If this is only guarded by FLAG_IS_DEFAULT(NewRatio)
  1090     // then NewSize and OldSize may be calculated.  That would
  1091     // generally lead to some differences with ParNewGC for which
  1092     // there was no obvious reason.  Also limit to the case where
  1093     // MaxNewSize has not been set.
  1095     FLAG_SET_ERGO(intx, NewRatio, MAX2(NewRatio, new_ratio));
  1097     // Code along this path potentially sets NewSize and OldSize
  1099     // Calculate the desired minimum size of the young gen but if
  1100     // NewSize has been set on the command line, use it here since
  1101     // it should be the final value.
  1102     size_t min_new;
  1103     if (FLAG_IS_DEFAULT(NewSize)) {
  1104       min_new = align_size_up(ScaleForWordSize(min_new_default),
  1105                               os::vm_page_size());
  1106     } else {
  1107       min_new = NewSize;
  1109     size_t prev_initial_size = InitialHeapSize;
  1110     if (prev_initial_size != 0 && prev_initial_size < min_new + OldSize) {
  1111       FLAG_SET_ERGO(uintx, InitialHeapSize, min_new + OldSize);
  1112       // Currently minimum size and the initial heap sizes are the same.
  1113       set_min_heap_size(InitialHeapSize);
  1114       if (PrintGCDetails && Verbose) {
  1115         warning("Initial heap size increased to " SIZE_FORMAT " M from "
  1116                 SIZE_FORMAT " M; use -XX:NewSize=... for finer control.",
  1117                 InitialHeapSize/M, prev_initial_size/M);
  1121     // MaxHeapSize is aligned down in collectorPolicy
  1122     size_t max_heap =
  1123       align_size_down(MaxHeapSize,
  1124                       CardTableRS::ct_max_alignment_constraint());
  1126     if (PrintGCDetails && Verbose) {
  1127       // Too early to use gclog_or_tty
  1128       tty->print_cr("CMS set min_heap_size: " SIZE_FORMAT
  1129            " initial_heap_size:  " SIZE_FORMAT
  1130            " max_heap: " SIZE_FORMAT,
  1131            min_heap_size(), InitialHeapSize, max_heap);
  1133     if (max_heap > min_new) {
  1134       // Unless explicitly requested otherwise, make young gen
  1135       // at least min_new, and at most preferred_max_new_size.
  1136       if (FLAG_IS_DEFAULT(NewSize)) {
  1137         FLAG_SET_ERGO(uintx, NewSize, MAX2(NewSize, min_new));
  1138         FLAG_SET_ERGO(uintx, NewSize, MIN2(preferred_max_new_size, NewSize));
  1139         if (PrintGCDetails && Verbose) {
  1140           // Too early to use gclog_or_tty
  1141           tty->print_cr("Ergo set NewSize: " SIZE_FORMAT, NewSize);
  1144       // Unless explicitly requested otherwise, size old gen
  1145       // so that it's at least 3X of NewSize to begin with;
  1146       // later NewRatio will decide how it grows; see above.
  1147       if (FLAG_IS_DEFAULT(OldSize)) {
  1148         if (max_heap > NewSize) {
  1149           FLAG_SET_ERGO(uintx, OldSize, MIN2(3*NewSize, max_heap - NewSize));
  1150           if (PrintGCDetails && Verbose) {
  1151             // Too early to use gclog_or_tty
  1152             tty->print_cr("Ergo set OldSize: " SIZE_FORMAT, OldSize);
  1158   // Unless explicitly requested otherwise, definitely
  1159   // promote all objects surviving "tenuring_default" scavenges.
  1160   if (FLAG_IS_DEFAULT(MaxTenuringThreshold) &&
  1161       FLAG_IS_DEFAULT(SurvivorRatio)) {
  1162     FLAG_SET_ERGO(intx, MaxTenuringThreshold, tenuring_default);
  1164   // If we decided above (or user explicitly requested)
  1165   // `promote all' (via MaxTenuringThreshold := 0),
  1166   // prefer minuscule survivor spaces so as not to waste
  1167   // space for (non-existent) survivors
  1168   if (FLAG_IS_DEFAULT(SurvivorRatio) && MaxTenuringThreshold == 0) {
  1169     FLAG_SET_ERGO(intx, SurvivorRatio, MAX2((intx)1024, SurvivorRatio));
  1171   // If OldPLABSize is set and CMSParPromoteBlocksToClaim is not,
  1172   // set CMSParPromoteBlocksToClaim equal to OldPLABSize.
  1173   // This is done in order to make ParNew+CMS configuration to work
  1174   // with YoungPLABSize and OldPLABSize options.
  1175   // See CR 6362902.
  1176   if (!FLAG_IS_DEFAULT(OldPLABSize)) {
  1177     if (FLAG_IS_DEFAULT(CMSParPromoteBlocksToClaim)) {
  1178       // OldPLABSize is not the default value but CMSParPromoteBlocksToClaim
  1179       // is.  In this situtation let CMSParPromoteBlocksToClaim follow
  1180       // the value (either from the command line or ergonomics) of
  1181       // OldPLABSize.  Following OldPLABSize is an ergonomics decision.
  1182       FLAG_SET_ERGO(uintx, CMSParPromoteBlocksToClaim, OldPLABSize);
  1183     } else {
  1184       // OldPLABSize and CMSParPromoteBlocksToClaim are both set.
  1185       // CMSParPromoteBlocksToClaim is a collector-specific flag, so
  1186       // we'll let it to take precedence.
  1187       jio_fprintf(defaultStream::error_stream(),
  1188                   "Both OldPLABSize and CMSParPromoteBlocksToClaim"
  1189                   " options are specified for the CMS collector."
  1190                   " CMSParPromoteBlocksToClaim will take precedence.\n");
  1193   if (!FLAG_IS_DEFAULT(ResizeOldPLAB) && !ResizeOldPLAB) {
  1194     // OldPLAB sizing manually turned off: Use a larger default setting,
  1195     // unless it was manually specified. This is because a too-low value
  1196     // will slow down scavenges.
  1197     if (FLAG_IS_DEFAULT(CMSParPromoteBlocksToClaim)) {
  1198       FLAG_SET_ERGO(uintx, CMSParPromoteBlocksToClaim, 50); // default value before 6631166
  1201   // Overwrite OldPLABSize which is the variable we will internally use everywhere.
  1202   FLAG_SET_ERGO(uintx, OldPLABSize, CMSParPromoteBlocksToClaim);
  1203   // If either of the static initialization defaults have changed, note this
  1204   // modification.
  1205   if (!FLAG_IS_DEFAULT(CMSParPromoteBlocksToClaim) || !FLAG_IS_DEFAULT(OldPLABWeight)) {
  1206     CFLS_LAB::modify_initialization(OldPLABSize, OldPLABWeight);
  1208   if (PrintGCDetails && Verbose) {
  1209     tty->print_cr("MarkStackSize: %uk  MarkStackSizeMax: %uk",
  1210       MarkStackSize / K, MarkStackSizeMax / K);
  1211     tty->print_cr("ConcGCThreads: %u", ConcGCThreads);
  1214 #endif // KERNEL
  1216 void set_object_alignment() {
  1217   // Object alignment.
  1218   assert(is_power_of_2(ObjectAlignmentInBytes), "ObjectAlignmentInBytes must be power of 2");
  1219   MinObjAlignmentInBytes     = ObjectAlignmentInBytes;
  1220   assert(MinObjAlignmentInBytes >= HeapWordsPerLong * HeapWordSize, "ObjectAlignmentInBytes value is too small");
  1221   MinObjAlignment            = MinObjAlignmentInBytes / HeapWordSize;
  1222   assert(MinObjAlignmentInBytes == MinObjAlignment * HeapWordSize, "ObjectAlignmentInBytes value is incorrect");
  1223   MinObjAlignmentInBytesMask = MinObjAlignmentInBytes - 1;
  1225   LogMinObjAlignmentInBytes  = exact_log2(ObjectAlignmentInBytes);
  1226   LogMinObjAlignment         = LogMinObjAlignmentInBytes - LogHeapWordSize;
  1228   // Oop encoding heap max
  1229   OopEncodingHeapMax = (uint64_t(max_juint) + 1) << LogMinObjAlignmentInBytes;
  1231 #ifndef KERNEL
  1232   // Set CMS global values
  1233   CompactibleFreeListSpace::set_cms_values();
  1234 #endif // KERNEL
  1237 bool verify_object_alignment() {
  1238   // Object alignment.
  1239   if (!is_power_of_2(ObjectAlignmentInBytes)) {
  1240     jio_fprintf(defaultStream::error_stream(),
  1241                 "error: ObjectAlignmentInBytes=%d must be power of 2", (int)ObjectAlignmentInBytes);
  1242     return false;
  1244   if ((int)ObjectAlignmentInBytes < BytesPerLong) {
  1245     jio_fprintf(defaultStream::error_stream(),
  1246                 "error: ObjectAlignmentInBytes=%d must be greater or equal %d", (int)ObjectAlignmentInBytes, BytesPerLong);
  1247     return false;
  1249   return true;
  1252 inline uintx max_heap_for_compressed_oops() {
  1253   LP64_ONLY(return OopEncodingHeapMax - MaxPermSize - os::vm_page_size());
  1254   NOT_LP64(ShouldNotReachHere(); return 0);
  1257 bool Arguments::should_auto_select_low_pause_collector() {
  1258   if (UseAutoGCSelectPolicy &&
  1259       !FLAG_IS_DEFAULT(MaxGCPauseMillis) &&
  1260       (MaxGCPauseMillis <= AutoGCSelectPauseMillis)) {
  1261     if (PrintGCDetails) {
  1262       // Cannot use gclog_or_tty yet.
  1263       tty->print_cr("Automatic selection of the low pause collector"
  1264        " based on pause goal of %d (ms)", MaxGCPauseMillis);
  1266     return true;
  1268   return false;
  1271 void Arguments::set_ergonomics_flags() {
  1272   // Parallel GC is not compatible with sharing. If one specifies
  1273   // that they want sharing explicitly, do not set ergonomics flags.
  1274   if (DumpSharedSpaces || ForceSharedSpaces) {
  1275     return;
  1278   if (os::is_server_class_machine() && !force_client_mode ) {
  1279     // If no other collector is requested explicitly,
  1280     // let the VM select the collector based on
  1281     // machine class and automatic selection policy.
  1282     if (!UseSerialGC &&
  1283         !UseConcMarkSweepGC &&
  1284         !UseG1GC &&
  1285         !UseParNewGC &&
  1286         !DumpSharedSpaces &&
  1287         FLAG_IS_DEFAULT(UseParallelGC)) {
  1288       if (should_auto_select_low_pause_collector()) {
  1289         FLAG_SET_ERGO(bool, UseConcMarkSweepGC, true);
  1290       } else {
  1291         FLAG_SET_ERGO(bool, UseParallelGC, true);
  1293       no_shared_spaces();
  1297 #ifndef ZERO
  1298 #ifdef _LP64
  1299   // Check that UseCompressedOops can be set with the max heap size allocated
  1300   // by ergonomics.
  1301   if (MaxHeapSize <= max_heap_for_compressed_oops()) {
  1302 #ifndef COMPILER1
  1303     if (FLAG_IS_DEFAULT(UseCompressedOops) && !UseG1GC) {
  1304       FLAG_SET_ERGO(bool, UseCompressedOops, true);
  1306 #endif
  1307 #ifdef _WIN64
  1308     if (UseLargePages && UseCompressedOops) {
  1309       // Cannot allocate guard pages for implicit checks in indexed addressing
  1310       // mode, when large pages are specified on windows.
  1311       // This flag could be switched ON if narrow oop base address is set to 0,
  1312       // see code in Universe::initialize_heap().
  1313       Universe::set_narrow_oop_use_implicit_null_checks(false);
  1315 #endif //  _WIN64
  1316   } else {
  1317     if (UseCompressedOops && !FLAG_IS_DEFAULT(UseCompressedOops)) {
  1318       warning("Max heap size too large for Compressed Oops");
  1319       FLAG_SET_DEFAULT(UseCompressedOops, false);
  1322   // Also checks that certain machines are slower with compressed oops
  1323   // in vm_version initialization code.
  1324 #endif // _LP64
  1325 #endif // !ZERO
  1328 void Arguments::set_parallel_gc_flags() {
  1329   assert(UseParallelGC || UseParallelOldGC, "Error");
  1330   // If parallel old was requested, automatically enable parallel scavenge.
  1331   if (UseParallelOldGC && !UseParallelGC && FLAG_IS_DEFAULT(UseParallelGC)) {
  1332     FLAG_SET_DEFAULT(UseParallelGC, true);
  1335   // If no heap maximum was requested explicitly, use some reasonable fraction
  1336   // of the physical memory, up to a maximum of 1GB.
  1337   if (UseParallelGC) {
  1338     FLAG_SET_ERGO(uintx, ParallelGCThreads,
  1339                   Abstract_VM_Version::parallel_worker_threads());
  1341     // If InitialSurvivorRatio or MinSurvivorRatio were not specified, but the
  1342     // SurvivorRatio has been set, reset their default values to SurvivorRatio +
  1343     // 2.  By doing this we make SurvivorRatio also work for Parallel Scavenger.
  1344     // See CR 6362902 for details.
  1345     if (!FLAG_IS_DEFAULT(SurvivorRatio)) {
  1346       if (FLAG_IS_DEFAULT(InitialSurvivorRatio)) {
  1347          FLAG_SET_DEFAULT(InitialSurvivorRatio, SurvivorRatio + 2);
  1349       if (FLAG_IS_DEFAULT(MinSurvivorRatio)) {
  1350         FLAG_SET_DEFAULT(MinSurvivorRatio, SurvivorRatio + 2);
  1354     if (UseParallelOldGC) {
  1355       // Par compact uses lower default values since they are treated as
  1356       // minimums.  These are different defaults because of the different
  1357       // interpretation and are not ergonomically set.
  1358       if (FLAG_IS_DEFAULT(MarkSweepDeadRatio)) {
  1359         FLAG_SET_DEFAULT(MarkSweepDeadRatio, 1);
  1361       if (FLAG_IS_DEFAULT(PermMarkSweepDeadRatio)) {
  1362         FLAG_SET_DEFAULT(PermMarkSweepDeadRatio, 5);
  1368 void Arguments::set_g1_gc_flags() {
  1369   assert(UseG1GC, "Error");
  1370 #ifdef COMPILER1
  1371   FastTLABRefill = false;
  1372 #endif
  1373   FLAG_SET_DEFAULT(ParallelGCThreads,
  1374                      Abstract_VM_Version::parallel_worker_threads());
  1375   if (ParallelGCThreads == 0) {
  1376     FLAG_SET_DEFAULT(ParallelGCThreads,
  1377                      Abstract_VM_Version::parallel_worker_threads());
  1379   no_shared_spaces();
  1381   if (FLAG_IS_DEFAULT(MarkStackSize)) {
  1382     FLAG_SET_DEFAULT(MarkStackSize, 128 * TASKQUEUE_SIZE);
  1384   if (PrintGCDetails && Verbose) {
  1385     tty->print_cr("MarkStackSize: %uk  MarkStackSizeMax: %uk",
  1386       MarkStackSize / K, MarkStackSizeMax / K);
  1387     tty->print_cr("ConcGCThreads: %u", ConcGCThreads);
  1390   if (FLAG_IS_DEFAULT(GCTimeRatio) || GCTimeRatio == 0) {
  1391     // In G1, we want the default GC overhead goal to be higher than
  1392     // say in PS. So we set it here to 10%. Otherwise the heap might
  1393     // be expanded more aggressively than we would like it to. In
  1394     // fact, even 10% seems to not be high enough in some cases
  1395     // (especially small GC stress tests that the main thing they do
  1396     // is allocation). We might consider increase it further.
  1397     FLAG_SET_DEFAULT(GCTimeRatio, 9);
  1401 void Arguments::set_heap_size() {
  1402   if (!FLAG_IS_DEFAULT(DefaultMaxRAMFraction)) {
  1403     // Deprecated flag
  1404     FLAG_SET_CMDLINE(uintx, MaxRAMFraction, DefaultMaxRAMFraction);
  1407   const julong phys_mem =
  1408     FLAG_IS_DEFAULT(MaxRAM) ? MIN2(os::physical_memory(), (julong)MaxRAM)
  1409                             : (julong)MaxRAM;
  1411   // If the maximum heap size has not been set with -Xmx,
  1412   // then set it as fraction of the size of physical memory,
  1413   // respecting the maximum and minimum sizes of the heap.
  1414   if (FLAG_IS_DEFAULT(MaxHeapSize)) {
  1415     julong reasonable_max = phys_mem / MaxRAMFraction;
  1417     if (phys_mem <= MaxHeapSize * MinRAMFraction) {
  1418       // Small physical memory, so use a minimum fraction of it for the heap
  1419       reasonable_max = phys_mem / MinRAMFraction;
  1420     } else {
  1421       // Not-small physical memory, so require a heap at least
  1422       // as large as MaxHeapSize
  1423       reasonable_max = MAX2(reasonable_max, (julong)MaxHeapSize);
  1425     if (!FLAG_IS_DEFAULT(ErgoHeapSizeLimit) && ErgoHeapSizeLimit != 0) {
  1426       // Limit the heap size to ErgoHeapSizeLimit
  1427       reasonable_max = MIN2(reasonable_max, (julong)ErgoHeapSizeLimit);
  1429     if (UseCompressedOops) {
  1430       // Limit the heap size to the maximum possible when using compressed oops
  1431       reasonable_max = MIN2(reasonable_max, (julong)max_heap_for_compressed_oops());
  1433     reasonable_max = os::allocatable_physical_memory(reasonable_max);
  1435     if (!FLAG_IS_DEFAULT(InitialHeapSize)) {
  1436       // An initial heap size was specified on the command line,
  1437       // so be sure that the maximum size is consistent.  Done
  1438       // after call to allocatable_physical_memory because that
  1439       // method might reduce the allocation size.
  1440       reasonable_max = MAX2(reasonable_max, (julong)InitialHeapSize);
  1443     if (PrintGCDetails && Verbose) {
  1444       // Cannot use gclog_or_tty yet.
  1445       tty->print_cr("  Maximum heap size " SIZE_FORMAT, reasonable_max);
  1447     FLAG_SET_ERGO(uintx, MaxHeapSize, (uintx)reasonable_max);
  1450   // If the initial_heap_size has not been set with InitialHeapSize
  1451   // or -Xms, then set it as fraction of the size of physical memory,
  1452   // respecting the maximum and minimum sizes of the heap.
  1453   if (FLAG_IS_DEFAULT(InitialHeapSize)) {
  1454     julong reasonable_minimum = (julong)(OldSize + NewSize);
  1456     reasonable_minimum = MIN2(reasonable_minimum, (julong)MaxHeapSize);
  1458     reasonable_minimum = os::allocatable_physical_memory(reasonable_minimum);
  1460     julong reasonable_initial = phys_mem / InitialRAMFraction;
  1462     reasonable_initial = MAX2(reasonable_initial, reasonable_minimum);
  1463     reasonable_initial = MIN2(reasonable_initial, (julong)MaxHeapSize);
  1465     reasonable_initial = os::allocatable_physical_memory(reasonable_initial);
  1467     if (PrintGCDetails && Verbose) {
  1468       // Cannot use gclog_or_tty yet.
  1469       tty->print_cr("  Initial heap size " SIZE_FORMAT, (uintx)reasonable_initial);
  1470       tty->print_cr("  Minimum heap size " SIZE_FORMAT, (uintx)reasonable_minimum);
  1472     FLAG_SET_ERGO(uintx, InitialHeapSize, (uintx)reasonable_initial);
  1473     set_min_heap_size((uintx)reasonable_minimum);
  1477 // This must be called after ergonomics because we want bytecode rewriting
  1478 // if the server compiler is used, or if UseSharedSpaces is disabled.
  1479 void Arguments::set_bytecode_flags() {
  1480   // Better not attempt to store into a read-only space.
  1481   if (UseSharedSpaces) {
  1482     FLAG_SET_DEFAULT(RewriteBytecodes, false);
  1483     FLAG_SET_DEFAULT(RewriteFrequentPairs, false);
  1486   if (!RewriteBytecodes) {
  1487     FLAG_SET_DEFAULT(RewriteFrequentPairs, false);
  1491 // Aggressive optimization flags  -XX:+AggressiveOpts
  1492 void Arguments::set_aggressive_opts_flags() {
  1493 #ifdef COMPILER2
  1494   if (AggressiveOpts || !FLAG_IS_DEFAULT(AutoBoxCacheMax)) {
  1495     if (FLAG_IS_DEFAULT(EliminateAutoBox)) {
  1496       FLAG_SET_DEFAULT(EliminateAutoBox, true);
  1498     if (FLAG_IS_DEFAULT(AutoBoxCacheMax)) {
  1499       FLAG_SET_DEFAULT(AutoBoxCacheMax, 20000);
  1502     // Feed the cache size setting into the JDK
  1503     char buffer[1024];
  1504     sprintf(buffer, "java.lang.Integer.IntegerCache.high=" INTX_FORMAT, AutoBoxCacheMax);
  1505     add_property(buffer);
  1507   if (AggressiveOpts && FLAG_IS_DEFAULT(DoEscapeAnalysis)) {
  1508     FLAG_SET_DEFAULT(DoEscapeAnalysis, true);
  1510   if (AggressiveOpts && FLAG_IS_DEFAULT(BiasedLockingStartupDelay)) {
  1511     FLAG_SET_DEFAULT(BiasedLockingStartupDelay, 500);
  1513   if (AggressiveOpts && FLAG_IS_DEFAULT(OptimizeStringConcat)) {
  1514     FLAG_SET_DEFAULT(OptimizeStringConcat, true);
  1516   if (AggressiveOpts && FLAG_IS_DEFAULT(OptimizeFill)) {
  1517     FLAG_SET_DEFAULT(OptimizeFill, true);
  1519 #endif
  1521   if (AggressiveOpts) {
  1522 // Sample flag setting code
  1523 //    if (FLAG_IS_DEFAULT(EliminateZeroing)) {
  1524 //      FLAG_SET_DEFAULT(EliminateZeroing, true);
  1525 //    }
  1529 //===========================================================================================================
  1530 // Parsing of java.compiler property
  1532 void Arguments::process_java_compiler_argument(char* arg) {
  1533   // For backwards compatibility, Djava.compiler=NONE or ""
  1534   // causes us to switch to -Xint mode UNLESS -Xdebug
  1535   // is also specified.
  1536   if (strlen(arg) == 0 || strcasecmp(arg, "NONE") == 0) {
  1537     set_java_compiler(true);    // "-Djava.compiler[=...]" most recently seen.
  1541 void Arguments::process_java_launcher_argument(const char* launcher, void* extra_info) {
  1542   _sun_java_launcher = strdup(launcher);
  1545 bool Arguments::created_by_java_launcher() {
  1546   assert(_sun_java_launcher != NULL, "property must have value");
  1547   return strcmp(DEFAULT_JAVA_LAUNCHER, _sun_java_launcher) != 0;
  1550 //===========================================================================================================
  1551 // Parsing of main arguments
  1553 bool Arguments::verify_interval(uintx val, uintx min,
  1554                                 uintx max, const char* name) {
  1555   // Returns true iff value is in the inclusive interval [min..max]
  1556   // false, otherwise.
  1557   if (val >= min && val <= max) {
  1558     return true;
  1560   jio_fprintf(defaultStream::error_stream(),
  1561               "%s of " UINTX_FORMAT " is invalid; must be between " UINTX_FORMAT
  1562               " and " UINTX_FORMAT "\n",
  1563               name, val, min, max);
  1564   return false;
  1567 bool Arguments::verify_min_value(intx val, intx min, const char* name) {
  1568   // Returns true if given value is greater than specified min threshold
  1569   // false, otherwise.
  1570   if (val >= min ) {
  1571       return true;
  1573   jio_fprintf(defaultStream::error_stream(),
  1574               "%s of " INTX_FORMAT " is invalid; must be greater than " INTX_FORMAT "\n",
  1575               name, val, min);
  1576   return false;
  1579 bool Arguments::verify_percentage(uintx value, const char* name) {
  1580   if (value <= 100) {
  1581     return true;
  1583   jio_fprintf(defaultStream::error_stream(),
  1584               "%s of " UINTX_FORMAT " is invalid; must be between 0 and 100\n",
  1585               name, value);
  1586   return false;
  1589 static void force_serial_gc() {
  1590   FLAG_SET_DEFAULT(UseSerialGC, true);
  1591   FLAG_SET_DEFAULT(UseParNewGC, false);
  1592   FLAG_SET_DEFAULT(UseConcMarkSweepGC, false);
  1593   FLAG_SET_DEFAULT(CMSIncrementalMode, false);  // special CMS suboption
  1594   FLAG_SET_DEFAULT(UseParallelGC, false);
  1595   FLAG_SET_DEFAULT(UseParallelOldGC, false);
  1596   FLAG_SET_DEFAULT(UseG1GC, false);
  1599 static bool verify_serial_gc_flags() {
  1600   return (UseSerialGC &&
  1601         !(UseParNewGC || (UseConcMarkSweepGC || CMSIncrementalMode) || UseG1GC ||
  1602           UseParallelGC || UseParallelOldGC));
  1605 // Check consistency of GC selection
  1606 bool Arguments::check_gc_consistency() {
  1607   bool status = true;
  1608   // Ensure that the user has not selected conflicting sets
  1609   // of collectors. [Note: this check is merely a user convenience;
  1610   // collectors over-ride each other so that only a non-conflicting
  1611   // set is selected; however what the user gets is not what they
  1612   // may have expected from the combination they asked for. It's
  1613   // better to reduce user confusion by not allowing them to
  1614   // select conflicting combinations.
  1615   uint i = 0;
  1616   if (UseSerialGC)                       i++;
  1617   if (UseConcMarkSweepGC || UseParNewGC) i++;
  1618   if (UseParallelGC || UseParallelOldGC) i++;
  1619   if (UseG1GC)                           i++;
  1620   if (i > 1) {
  1621     jio_fprintf(defaultStream::error_stream(),
  1622                 "Conflicting collector combinations in option list; "
  1623                 "please refer to the release notes for the combinations "
  1624                 "allowed\n");
  1625     status = false;
  1628   return status;
  1631 // Check stack pages settings
  1632 bool Arguments::check_stack_pages()
  1634   bool status = true;
  1635   status = status && verify_min_value(StackYellowPages, 1, "StackYellowPages");
  1636   status = status && verify_min_value(StackRedPages, 1, "StackRedPages");
  1637   status = status && verify_min_value(StackShadowPages, 1, "StackShadowPages");
  1638   return status;
  1641 // Check the consistency of vm_init_args
  1642 bool Arguments::check_vm_args_consistency() {
  1643   // Method for adding checks for flag consistency.
  1644   // The intent is to warn the user of all possible conflicts,
  1645   // before returning an error.
  1646   // Note: Needs platform-dependent factoring.
  1647   bool status = true;
  1649 #if ( (defined(COMPILER2) && defined(SPARC)))
  1650   // NOTE: The call to VM_Version_init depends on the fact that VM_Version_init
  1651   // on sparc doesn't require generation of a stub as is the case on, e.g.,
  1652   // x86.  Normally, VM_Version_init must be called from init_globals in
  1653   // init.cpp, which is called by the initial java thread *after* arguments
  1654   // have been parsed.  VM_Version_init gets called twice on sparc.
  1655   extern void VM_Version_init();
  1656   VM_Version_init();
  1657   if (!VM_Version::has_v9()) {
  1658     jio_fprintf(defaultStream::error_stream(),
  1659                 "V8 Machine detected, Server requires V9\n");
  1660     status = false;
  1662 #endif /* COMPILER2 && SPARC */
  1664   // Allow both -XX:-UseStackBanging and -XX:-UseBoundThreads in non-product
  1665   // builds so the cost of stack banging can be measured.
  1666 #if (defined(PRODUCT) && defined(SOLARIS))
  1667   if (!UseBoundThreads && !UseStackBanging) {
  1668     jio_fprintf(defaultStream::error_stream(),
  1669                 "-UseStackBanging conflicts with -UseBoundThreads\n");
  1671      status = false;
  1673 #endif
  1675   if (TLABRefillWasteFraction == 0) {
  1676     jio_fprintf(defaultStream::error_stream(),
  1677                 "TLABRefillWasteFraction should be a denominator, "
  1678                 "not " SIZE_FORMAT "\n",
  1679                 TLABRefillWasteFraction);
  1680     status = false;
  1683   status = status && verify_percentage(MaxLiveObjectEvacuationRatio,
  1684                               "MaxLiveObjectEvacuationRatio");
  1685   status = status && verify_percentage(AdaptiveSizePolicyWeight,
  1686                               "AdaptiveSizePolicyWeight");
  1687   status = status && verify_percentage(AdaptivePermSizeWeight, "AdaptivePermSizeWeight");
  1688   status = status && verify_percentage(ThresholdTolerance, "ThresholdTolerance");
  1689   status = status && verify_percentage(MinHeapFreeRatio, "MinHeapFreeRatio");
  1690   status = status && verify_percentage(MaxHeapFreeRatio, "MaxHeapFreeRatio");
  1692   if (MinHeapFreeRatio > MaxHeapFreeRatio) {
  1693     jio_fprintf(defaultStream::error_stream(),
  1694                 "MinHeapFreeRatio (" UINTX_FORMAT ") must be less than or "
  1695                 "equal to MaxHeapFreeRatio (" UINTX_FORMAT ")\n",
  1696                 MinHeapFreeRatio, MaxHeapFreeRatio);
  1697     status = false;
  1699   // Keeping the heap 100% free is hard ;-) so limit it to 99%.
  1700   MinHeapFreeRatio = MIN2(MinHeapFreeRatio, (uintx) 99);
  1702   if (FullGCALot && FLAG_IS_DEFAULT(MarkSweepAlwaysCompactCount)) {
  1703     MarkSweepAlwaysCompactCount = 1;  // Move objects every gc.
  1706   if (UseParallelOldGC && ParallelOldGCSplitALot) {
  1707     // Settings to encourage splitting.
  1708     if (!FLAG_IS_CMDLINE(NewRatio)) {
  1709       FLAG_SET_CMDLINE(intx, NewRatio, 2);
  1711     if (!FLAG_IS_CMDLINE(ScavengeBeforeFullGC)) {
  1712       FLAG_SET_CMDLINE(bool, ScavengeBeforeFullGC, false);
  1716   status = status && verify_percentage(GCHeapFreeLimit, "GCHeapFreeLimit");
  1717   status = status && verify_percentage(GCTimeLimit, "GCTimeLimit");
  1718   if (GCTimeLimit == 100) {
  1719     // Turn off gc-overhead-limit-exceeded checks
  1720     FLAG_SET_DEFAULT(UseGCOverheadLimit, false);
  1723   status = status && verify_percentage(GCHeapFreeLimit, "GCHeapFreeLimit");
  1725   // Check whether user-specified sharing option conflicts with GC or page size.
  1726   // Both sharing and large pages are enabled by default on some platforms;
  1727   // large pages override sharing only if explicitly set on the command line.
  1728   const bool cannot_share = UseConcMarkSweepGC || CMSIncrementalMode ||
  1729           UseG1GC || UseParNewGC || UseParallelGC || UseParallelOldGC ||
  1730           UseLargePages && FLAG_IS_CMDLINE(UseLargePages);
  1731   if (cannot_share) {
  1732     // Either force sharing on by forcing the other options off, or
  1733     // force sharing off.
  1734     if (DumpSharedSpaces || ForceSharedSpaces) {
  1735       jio_fprintf(defaultStream::error_stream(),
  1736                   "Using Serial GC and default page size because of %s\n",
  1737                   ForceSharedSpaces ? "-Xshare:on" : "-Xshare:dump");
  1738       force_serial_gc();
  1739       FLAG_SET_DEFAULT(UseLargePages, false);
  1740     } else {
  1741       if (UseSharedSpaces && Verbose) {
  1742         jio_fprintf(defaultStream::error_stream(),
  1743                     "Turning off use of shared archive because of "
  1744                     "choice of garbage collector or large pages\n");
  1746       no_shared_spaces();
  1748   } else if (UseLargePages && (UseSharedSpaces || DumpSharedSpaces)) {
  1749     FLAG_SET_DEFAULT(UseLargePages, false);
  1752   status = status && check_gc_consistency();
  1753   status = status && check_stack_pages();
  1755   if (_has_alloc_profile) {
  1756     if (UseParallelGC || UseParallelOldGC) {
  1757       jio_fprintf(defaultStream::error_stream(),
  1758                   "error:  invalid argument combination.\n"
  1759                   "Allocation profiling (-Xaprof) cannot be used together with "
  1760                   "Parallel GC (-XX:+UseParallelGC or -XX:+UseParallelOldGC).\n");
  1761       status = false;
  1763     if (UseConcMarkSweepGC) {
  1764       jio_fprintf(defaultStream::error_stream(),
  1765                   "error:  invalid argument combination.\n"
  1766                   "Allocation profiling (-Xaprof) cannot be used together with "
  1767                   "the CMS collector (-XX:+UseConcMarkSweepGC).\n");
  1768       status = false;
  1772   if (CMSIncrementalMode) {
  1773     if (!UseConcMarkSweepGC) {
  1774       jio_fprintf(defaultStream::error_stream(),
  1775                   "error:  invalid argument combination.\n"
  1776                   "The CMS collector (-XX:+UseConcMarkSweepGC) must be "
  1777                   "selected in order\nto use CMSIncrementalMode.\n");
  1778       status = false;
  1779     } else {
  1780       status = status && verify_percentage(CMSIncrementalDutyCycle,
  1781                                   "CMSIncrementalDutyCycle");
  1782       status = status && verify_percentage(CMSIncrementalDutyCycleMin,
  1783                                   "CMSIncrementalDutyCycleMin");
  1784       status = status && verify_percentage(CMSIncrementalSafetyFactor,
  1785                                   "CMSIncrementalSafetyFactor");
  1786       status = status && verify_percentage(CMSIncrementalOffset,
  1787                                   "CMSIncrementalOffset");
  1788       status = status && verify_percentage(CMSExpAvgFactor,
  1789                                   "CMSExpAvgFactor");
  1790       // If it was not set on the command line, set
  1791       // CMSInitiatingOccupancyFraction to 1 so icms can initiate cycles early.
  1792       if (CMSInitiatingOccupancyFraction < 0) {
  1793         FLAG_SET_DEFAULT(CMSInitiatingOccupancyFraction, 1);
  1798   // CMS space iteration, which FLSVerifyAllHeapreferences entails,
  1799   // insists that we hold the requisite locks so that the iteration is
  1800   // MT-safe. For the verification at start-up and shut-down, we don't
  1801   // yet have a good way of acquiring and releasing these locks,
  1802   // which are not visible at the CollectedHeap level. We want to
  1803   // be able to acquire these locks and then do the iteration rather
  1804   // than just disable the lock verification. This will be fixed under
  1805   // bug 4788986.
  1806   if (UseConcMarkSweepGC && FLSVerifyAllHeapReferences) {
  1807     if (VerifyGCStartAt == 0) {
  1808       warning("Heap verification at start-up disabled "
  1809               "(due to current incompatibility with FLSVerifyAllHeapReferences)");
  1810       VerifyGCStartAt = 1;      // Disable verification at start-up
  1812     if (VerifyBeforeExit) {
  1813       warning("Heap verification at shutdown disabled "
  1814               "(due to current incompatibility with FLSVerifyAllHeapReferences)");
  1815       VerifyBeforeExit = false; // Disable verification at shutdown
  1819   // Note: only executed in non-PRODUCT mode
  1820   if (!UseAsyncConcMarkSweepGC &&
  1821       (ExplicitGCInvokesConcurrent ||
  1822        ExplicitGCInvokesConcurrentAndUnloadsClasses)) {
  1823     jio_fprintf(defaultStream::error_stream(),
  1824                 "error: +ExplictGCInvokesConcurrent[AndUnloadsClasses] conflicts"
  1825                 " with -UseAsyncConcMarkSweepGC");
  1826     status = false;
  1829   if (UseG1GC) {
  1830     status = status && verify_percentage(InitiatingHeapOccupancyPercent,
  1831                                          "InitiatingHeapOccupancyPercent");
  1834   status = status && verify_interval(RefDiscoveryPolicy,
  1835                                      ReferenceProcessor::DiscoveryPolicyMin,
  1836                                      ReferenceProcessor::DiscoveryPolicyMax,
  1837                                      "RefDiscoveryPolicy");
  1839   // Limit the lower bound of this flag to 1 as it is used in a division
  1840   // expression.
  1841   status = status && verify_interval(TLABWasteTargetPercent,
  1842                                      1, 100, "TLABWasteTargetPercent");
  1844   status = status && verify_object_alignment();
  1846   return status;
  1849 bool Arguments::is_bad_option(const JavaVMOption* option, jboolean ignore,
  1850   const char* option_type) {
  1851   if (ignore) return false;
  1853   const char* spacer = " ";
  1854   if (option_type == NULL) {
  1855     option_type = ++spacer; // Set both to the empty string.
  1858   if (os::obsolete_option(option)) {
  1859     jio_fprintf(defaultStream::error_stream(),
  1860                 "Obsolete %s%soption: %s\n", option_type, spacer,
  1861       option->optionString);
  1862     return false;
  1863   } else {
  1864     jio_fprintf(defaultStream::error_stream(),
  1865                 "Unrecognized %s%soption: %s\n", option_type, spacer,
  1866       option->optionString);
  1867     return true;
  1871 static const char* user_assertion_options[] = {
  1872   "-da", "-ea", "-disableassertions", "-enableassertions", 0
  1873 };
  1875 static const char* system_assertion_options[] = {
  1876   "-dsa", "-esa", "-disablesystemassertions", "-enablesystemassertions", 0
  1877 };
  1879 // Return true if any of the strings in null-terminated array 'names' matches.
  1880 // If tail_allowed is true, then the tail must begin with a colon; otherwise,
  1881 // the option must match exactly.
  1882 static bool match_option(const JavaVMOption* option, const char** names, const char** tail,
  1883   bool tail_allowed) {
  1884   for (/* empty */; *names != NULL; ++names) {
  1885     if (match_option(option, *names, tail)) {
  1886       if (**tail == '\0' || tail_allowed && **tail == ':') {
  1887         return true;
  1891   return false;
  1894 bool Arguments::parse_uintx(const char* value,
  1895                             uintx* uintx_arg,
  1896                             uintx min_size) {
  1898   // Check the sign first since atomull() parses only unsigned values.
  1899   bool value_is_positive = !(*value == '-');
  1901   if (value_is_positive) {
  1902     julong n;
  1903     bool good_return = atomull(value, &n);
  1904     if (good_return) {
  1905       bool above_minimum = n >= min_size;
  1906       bool value_is_too_large = n > max_uintx;
  1908       if (above_minimum && !value_is_too_large) {
  1909         *uintx_arg = n;
  1910         return true;
  1914   return false;
  1917 Arguments::ArgsRange Arguments::parse_memory_size(const char* s,
  1918                                                   julong* long_arg,
  1919                                                   julong min_size) {
  1920   if (!atomull(s, long_arg)) return arg_unreadable;
  1921   return check_memory_size(*long_arg, min_size);
  1924 // Parse JavaVMInitArgs structure
  1926 jint Arguments::parse_vm_init_args(const JavaVMInitArgs* args) {
  1927   // For components of the system classpath.
  1928   SysClassPath scp(Arguments::get_sysclasspath());
  1929   bool scp_assembly_required = false;
  1931   // Save default settings for some mode flags
  1932   Arguments::_AlwaysCompileLoopMethods = AlwaysCompileLoopMethods;
  1933   Arguments::_UseOnStackReplacement    = UseOnStackReplacement;
  1934   Arguments::_ClipInlining             = ClipInlining;
  1935   Arguments::_BackgroundCompilation    = BackgroundCompilation;
  1936   Arguments::_Tier2CompileThreshold    = Tier2CompileThreshold;
  1938   // Parse JAVA_TOOL_OPTIONS environment variable (if present)
  1939   jint result = parse_java_tool_options_environment_variable(&scp, &scp_assembly_required);
  1940   if (result != JNI_OK) {
  1941     return result;
  1944   // Parse JavaVMInitArgs structure passed in
  1945   result = parse_each_vm_init_arg(args, &scp, &scp_assembly_required, COMMAND_LINE);
  1946   if (result != JNI_OK) {
  1947     return result;
  1950   if (AggressiveOpts) {
  1951     // Insert alt-rt.jar between user-specified bootclasspath
  1952     // prefix and the default bootclasspath.  os::set_boot_path()
  1953     // uses meta_index_dir as the default bootclasspath directory.
  1954     const char* altclasses_jar = "alt-rt.jar";
  1955     size_t altclasses_path_len = strlen(get_meta_index_dir()) + 1 +
  1956                                  strlen(altclasses_jar);
  1957     char* altclasses_path = NEW_C_HEAP_ARRAY(char, altclasses_path_len);
  1958     strcpy(altclasses_path, get_meta_index_dir());
  1959     strcat(altclasses_path, altclasses_jar);
  1960     scp.add_suffix_to_prefix(altclasses_path);
  1961     scp_assembly_required = true;
  1962     FREE_C_HEAP_ARRAY(char, altclasses_path);
  1965   // Parse _JAVA_OPTIONS environment variable (if present) (mimics classic VM)
  1966   result = parse_java_options_environment_variable(&scp, &scp_assembly_required);
  1967   if (result != JNI_OK) {
  1968     return result;
  1971   // Do final processing now that all arguments have been parsed
  1972   result = finalize_vm_init_args(&scp, scp_assembly_required);
  1973   if (result != JNI_OK) {
  1974     return result;
  1977   return JNI_OK;
  1980 jint Arguments::parse_each_vm_init_arg(const JavaVMInitArgs* args,
  1981                                        SysClassPath* scp_p,
  1982                                        bool* scp_assembly_required_p,
  1983                                        FlagValueOrigin origin) {
  1984   // Remaining part of option string
  1985   const char* tail;
  1987   // iterate over arguments
  1988   for (int index = 0; index < args->nOptions; index++) {
  1989     bool is_absolute_path = false;  // for -agentpath vs -agentlib
  1991     const JavaVMOption* option = args->options + index;
  1993     if (!match_option(option, "-Djava.class.path", &tail) &&
  1994         !match_option(option, "-Dsun.java.command", &tail) &&
  1995         !match_option(option, "-Dsun.java.launcher", &tail)) {
  1997         // add all jvm options to the jvm_args string. This string
  1998         // is used later to set the java.vm.args PerfData string constant.
  1999         // the -Djava.class.path and the -Dsun.java.command options are
  2000         // omitted from jvm_args string as each have their own PerfData
  2001         // string constant object.
  2002         build_jvm_args(option->optionString);
  2005     // -verbose:[class/gc/jni]
  2006     if (match_option(option, "-verbose", &tail)) {
  2007       if (!strcmp(tail, ":class") || !strcmp(tail, "")) {
  2008         FLAG_SET_CMDLINE(bool, TraceClassLoading, true);
  2009         FLAG_SET_CMDLINE(bool, TraceClassUnloading, true);
  2010       } else if (!strcmp(tail, ":gc")) {
  2011         FLAG_SET_CMDLINE(bool, PrintGC, true);
  2012       } else if (!strcmp(tail, ":jni")) {
  2013         FLAG_SET_CMDLINE(bool, PrintJNIResolving, true);
  2015     // -da / -ea / -disableassertions / -enableassertions
  2016     // These accept an optional class/package name separated by a colon, e.g.,
  2017     // -da:java.lang.Thread.
  2018     } else if (match_option(option, user_assertion_options, &tail, true)) {
  2019       bool enable = option->optionString[1] == 'e';     // char after '-' is 'e'
  2020       if (*tail == '\0') {
  2021         JavaAssertions::setUserClassDefault(enable);
  2022       } else {
  2023         assert(*tail == ':', "bogus match by match_option()");
  2024         JavaAssertions::addOption(tail + 1, enable);
  2026     // -dsa / -esa / -disablesystemassertions / -enablesystemassertions
  2027     } else if (match_option(option, system_assertion_options, &tail, false)) {
  2028       bool enable = option->optionString[1] == 'e';     // char after '-' is 'e'
  2029       JavaAssertions::setSystemClassDefault(enable);
  2030     // -bootclasspath:
  2031     } else if (match_option(option, "-Xbootclasspath:", &tail)) {
  2032       scp_p->reset_path(tail);
  2033       *scp_assembly_required_p = true;
  2034     // -bootclasspath/a:
  2035     } else if (match_option(option, "-Xbootclasspath/a:", &tail)) {
  2036       scp_p->add_suffix(tail);
  2037       *scp_assembly_required_p = true;
  2038     // -bootclasspath/p:
  2039     } else if (match_option(option, "-Xbootclasspath/p:", &tail)) {
  2040       scp_p->add_prefix(tail);
  2041       *scp_assembly_required_p = true;
  2042     // -Xrun
  2043     } else if (match_option(option, "-Xrun", &tail)) {
  2044       if (tail != NULL) {
  2045         const char* pos = strchr(tail, ':');
  2046         size_t len = (pos == NULL) ? strlen(tail) : pos - tail;
  2047         char* name = (char*)memcpy(NEW_C_HEAP_ARRAY(char, len + 1), tail, len);
  2048         name[len] = '\0';
  2050         char *options = NULL;
  2051         if(pos != NULL) {
  2052           size_t len2 = strlen(pos+1) + 1; // options start after ':'.  Final zero must be copied.
  2053           options = (char*)memcpy(NEW_C_HEAP_ARRAY(char, len2), pos+1, len2);
  2055 #ifdef JVMTI_KERNEL
  2056         if ((strcmp(name, "hprof") == 0) || (strcmp(name, "jdwp") == 0)) {
  2057           warning("profiling and debugging agents are not supported with Kernel VM");
  2058         } else
  2059 #endif // JVMTI_KERNEL
  2060         add_init_library(name, options);
  2062     // -agentlib and -agentpath
  2063     } else if (match_option(option, "-agentlib:", &tail) ||
  2064           (is_absolute_path = match_option(option, "-agentpath:", &tail))) {
  2065       if(tail != NULL) {
  2066         const char* pos = strchr(tail, '=');
  2067         size_t len = (pos == NULL) ? strlen(tail) : pos - tail;
  2068         char* name = strncpy(NEW_C_HEAP_ARRAY(char, len + 1), tail, len);
  2069         name[len] = '\0';
  2071         char *options = NULL;
  2072         if(pos != NULL) {
  2073           options = strcpy(NEW_C_HEAP_ARRAY(char, strlen(pos + 1) + 1), pos + 1);
  2075 #ifdef JVMTI_KERNEL
  2076         if ((strcmp(name, "hprof") == 0) || (strcmp(name, "jdwp") == 0)) {
  2077           warning("profiling and debugging agents are not supported with Kernel VM");
  2078         } else
  2079 #endif // JVMTI_KERNEL
  2080         add_init_agent(name, options, is_absolute_path);
  2083     // -javaagent
  2084     } else if (match_option(option, "-javaagent:", &tail)) {
  2085       if(tail != NULL) {
  2086         char *options = strcpy(NEW_C_HEAP_ARRAY(char, strlen(tail) + 1), tail);
  2087         add_init_agent("instrument", options, false);
  2089     // -Xnoclassgc
  2090     } else if (match_option(option, "-Xnoclassgc", &tail)) {
  2091       FLAG_SET_CMDLINE(bool, ClassUnloading, false);
  2092     // -Xincgc: i-CMS
  2093     } else if (match_option(option, "-Xincgc", &tail)) {
  2094       FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, true);
  2095       FLAG_SET_CMDLINE(bool, CMSIncrementalMode, true);
  2096     // -Xnoincgc: no i-CMS
  2097     } else if (match_option(option, "-Xnoincgc", &tail)) {
  2098       FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, false);
  2099       FLAG_SET_CMDLINE(bool, CMSIncrementalMode, false);
  2100     // -Xconcgc
  2101     } else if (match_option(option, "-Xconcgc", &tail)) {
  2102       FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, true);
  2103     // -Xnoconcgc
  2104     } else if (match_option(option, "-Xnoconcgc", &tail)) {
  2105       FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, false);
  2106     // -Xbatch
  2107     } else if (match_option(option, "-Xbatch", &tail)) {
  2108       FLAG_SET_CMDLINE(bool, BackgroundCompilation, false);
  2109     // -Xmn for compatibility with other JVM vendors
  2110     } else if (match_option(option, "-Xmn", &tail)) {
  2111       julong long_initial_eden_size = 0;
  2112       ArgsRange errcode = parse_memory_size(tail, &long_initial_eden_size, 1);
  2113       if (errcode != arg_in_range) {
  2114         jio_fprintf(defaultStream::error_stream(),
  2115                     "Invalid initial eden size: %s\n", option->optionString);
  2116         describe_range_error(errcode);
  2117         return JNI_EINVAL;
  2119       FLAG_SET_CMDLINE(uintx, MaxNewSize, (uintx)long_initial_eden_size);
  2120       FLAG_SET_CMDLINE(uintx, NewSize, (uintx)long_initial_eden_size);
  2121     // -Xms
  2122     } else if (match_option(option, "-Xms", &tail)) {
  2123       julong long_initial_heap_size = 0;
  2124       ArgsRange errcode = parse_memory_size(tail, &long_initial_heap_size, 1);
  2125       if (errcode != arg_in_range) {
  2126         jio_fprintf(defaultStream::error_stream(),
  2127                     "Invalid initial heap size: %s\n", option->optionString);
  2128         describe_range_error(errcode);
  2129         return JNI_EINVAL;
  2131       FLAG_SET_CMDLINE(uintx, InitialHeapSize, (uintx)long_initial_heap_size);
  2132       // Currently the minimum size and the initial heap sizes are the same.
  2133       set_min_heap_size(InitialHeapSize);
  2134     // -Xmx
  2135     } else if (match_option(option, "-Xmx", &tail)) {
  2136       julong long_max_heap_size = 0;
  2137       ArgsRange errcode = parse_memory_size(tail, &long_max_heap_size, 1);
  2138       if (errcode != arg_in_range) {
  2139         jio_fprintf(defaultStream::error_stream(),
  2140                     "Invalid maximum heap size: %s\n", option->optionString);
  2141         describe_range_error(errcode);
  2142         return JNI_EINVAL;
  2144       FLAG_SET_CMDLINE(uintx, MaxHeapSize, (uintx)long_max_heap_size);
  2145     // Xmaxf
  2146     } else if (match_option(option, "-Xmaxf", &tail)) {
  2147       int maxf = (int)(atof(tail) * 100);
  2148       if (maxf < 0 || maxf > 100) {
  2149         jio_fprintf(defaultStream::error_stream(),
  2150                     "Bad max heap free percentage size: %s\n",
  2151                     option->optionString);
  2152         return JNI_EINVAL;
  2153       } else {
  2154         FLAG_SET_CMDLINE(uintx, MaxHeapFreeRatio, maxf);
  2156     // Xminf
  2157     } else if (match_option(option, "-Xminf", &tail)) {
  2158       int minf = (int)(atof(tail) * 100);
  2159       if (minf < 0 || minf > 100) {
  2160         jio_fprintf(defaultStream::error_stream(),
  2161                     "Bad min heap free percentage size: %s\n",
  2162                     option->optionString);
  2163         return JNI_EINVAL;
  2164       } else {
  2165         FLAG_SET_CMDLINE(uintx, MinHeapFreeRatio, minf);
  2167     // -Xss
  2168     } else if (match_option(option, "-Xss", &tail)) {
  2169       julong long_ThreadStackSize = 0;
  2170       ArgsRange errcode = parse_memory_size(tail, &long_ThreadStackSize, 1000);
  2171       if (errcode != arg_in_range) {
  2172         jio_fprintf(defaultStream::error_stream(),
  2173                     "Invalid thread stack size: %s\n", option->optionString);
  2174         describe_range_error(errcode);
  2175         return JNI_EINVAL;
  2177       // Internally track ThreadStackSize in units of 1024 bytes.
  2178       FLAG_SET_CMDLINE(intx, ThreadStackSize,
  2179                               round_to((int)long_ThreadStackSize, K) / K);
  2180     // -Xoss
  2181     } else if (match_option(option, "-Xoss", &tail)) {
  2182           // HotSpot does not have separate native and Java stacks, ignore silently for compatibility
  2183     // -Xmaxjitcodesize
  2184     } else if (match_option(option, "-Xmaxjitcodesize", &tail)) {
  2185       julong long_ReservedCodeCacheSize = 0;
  2186       ArgsRange errcode = parse_memory_size(tail, &long_ReservedCodeCacheSize,
  2187                                             (size_t)InitialCodeCacheSize);
  2188       if (errcode != arg_in_range) {
  2189         jio_fprintf(defaultStream::error_stream(),
  2190                     "Invalid maximum code cache size: %s\n",
  2191                     option->optionString);
  2192         describe_range_error(errcode);
  2193         return JNI_EINVAL;
  2195       FLAG_SET_CMDLINE(uintx, ReservedCodeCacheSize, (uintx)long_ReservedCodeCacheSize);
  2196     // -green
  2197     } else if (match_option(option, "-green", &tail)) {
  2198       jio_fprintf(defaultStream::error_stream(),
  2199                   "Green threads support not available\n");
  2200           return JNI_EINVAL;
  2201     // -native
  2202     } else if (match_option(option, "-native", &tail)) {
  2203           // HotSpot always uses native threads, ignore silently for compatibility
  2204     // -Xsqnopause
  2205     } else if (match_option(option, "-Xsqnopause", &tail)) {
  2206           // EVM option, ignore silently for compatibility
  2207     // -Xrs
  2208     } else if (match_option(option, "-Xrs", &tail)) {
  2209           // Classic/EVM option, new functionality
  2210       FLAG_SET_CMDLINE(bool, ReduceSignalUsage, true);
  2211     } else if (match_option(option, "-Xusealtsigs", &tail)) {
  2212           // change default internal VM signals used - lower case for back compat
  2213       FLAG_SET_CMDLINE(bool, UseAltSigs, true);
  2214     // -Xoptimize
  2215     } else if (match_option(option, "-Xoptimize", &tail)) {
  2216           // EVM option, ignore silently for compatibility
  2217     // -Xprof
  2218     } else if (match_option(option, "-Xprof", &tail)) {
  2219 #ifndef FPROF_KERNEL
  2220       _has_profile = true;
  2221 #else // FPROF_KERNEL
  2222       // do we have to exit?
  2223       warning("Kernel VM does not support flat profiling.");
  2224 #endif // FPROF_KERNEL
  2225     // -Xaprof
  2226     } else if (match_option(option, "-Xaprof", &tail)) {
  2227       _has_alloc_profile = true;
  2228     // -Xconcurrentio
  2229     } else if (match_option(option, "-Xconcurrentio", &tail)) {
  2230       FLAG_SET_CMDLINE(bool, UseLWPSynchronization, true);
  2231       FLAG_SET_CMDLINE(bool, BackgroundCompilation, false);
  2232       FLAG_SET_CMDLINE(intx, DeferThrSuspendLoopCount, 1);
  2233       FLAG_SET_CMDLINE(bool, UseTLAB, false);
  2234       FLAG_SET_CMDLINE(uintx, NewSizeThreadIncrease, 16 * K);  // 20Kb per thread added to new generation
  2236       // -Xinternalversion
  2237     } else if (match_option(option, "-Xinternalversion", &tail)) {
  2238       jio_fprintf(defaultStream::output_stream(), "%s\n",
  2239                   VM_Version::internal_vm_info_string());
  2240       vm_exit(0);
  2241 #ifndef PRODUCT
  2242     // -Xprintflags
  2243     } else if (match_option(option, "-Xprintflags", &tail)) {
  2244       CommandLineFlags::printFlags();
  2245       vm_exit(0);
  2246 #endif
  2247     // -D
  2248     } else if (match_option(option, "-D", &tail)) {
  2249       if (!add_property(tail)) {
  2250         return JNI_ENOMEM;
  2252       // Out of the box management support
  2253       if (match_option(option, "-Dcom.sun.management", &tail)) {
  2254         FLAG_SET_CMDLINE(bool, ManagementServer, true);
  2256     // -Xint
  2257     } else if (match_option(option, "-Xint", &tail)) {
  2258           set_mode_flags(_int);
  2259     // -Xmixed
  2260     } else if (match_option(option, "-Xmixed", &tail)) {
  2261           set_mode_flags(_mixed);
  2262     // -Xcomp
  2263     } else if (match_option(option, "-Xcomp", &tail)) {
  2264       // for testing the compiler; turn off all flags that inhibit compilation
  2265           set_mode_flags(_comp);
  2267     // -Xshare:dump
  2268     } else if (match_option(option, "-Xshare:dump", &tail)) {
  2269 #ifdef TIERED
  2270       FLAG_SET_CMDLINE(bool, DumpSharedSpaces, true);
  2271       set_mode_flags(_int);     // Prevent compilation, which creates objects
  2272 #elif defined(COMPILER2)
  2273       vm_exit_during_initialization(
  2274           "Dumping a shared archive is not supported on the Server JVM.", NULL);
  2275 #elif defined(KERNEL)
  2276       vm_exit_during_initialization(
  2277           "Dumping a shared archive is not supported on the Kernel JVM.", NULL);
  2278 #else
  2279       FLAG_SET_CMDLINE(bool, DumpSharedSpaces, true);
  2280       set_mode_flags(_int);     // Prevent compilation, which creates objects
  2281 #endif
  2282     // -Xshare:on
  2283     } else if (match_option(option, "-Xshare:on", &tail)) {
  2284       FLAG_SET_CMDLINE(bool, UseSharedSpaces, true);
  2285       FLAG_SET_CMDLINE(bool, RequireSharedSpaces, true);
  2286 #ifdef TIERED
  2287       FLAG_SET_CMDLINE(bool, ForceSharedSpaces, true);
  2288 #endif // TIERED
  2289     // -Xshare:auto
  2290     } else if (match_option(option, "-Xshare:auto", &tail)) {
  2291       FLAG_SET_CMDLINE(bool, UseSharedSpaces, true);
  2292       FLAG_SET_CMDLINE(bool, RequireSharedSpaces, false);
  2293     // -Xshare:off
  2294     } else if (match_option(option, "-Xshare:off", &tail)) {
  2295       FLAG_SET_CMDLINE(bool, UseSharedSpaces, false);
  2296       FLAG_SET_CMDLINE(bool, RequireSharedSpaces, false);
  2298     // -Xverify
  2299     } else if (match_option(option, "-Xverify", &tail)) {
  2300       if (strcmp(tail, ":all") == 0 || strcmp(tail, "") == 0) {
  2301         FLAG_SET_CMDLINE(bool, BytecodeVerificationLocal, true);
  2302         FLAG_SET_CMDLINE(bool, BytecodeVerificationRemote, true);
  2303       } else if (strcmp(tail, ":remote") == 0) {
  2304         FLAG_SET_CMDLINE(bool, BytecodeVerificationLocal, false);
  2305         FLAG_SET_CMDLINE(bool, BytecodeVerificationRemote, true);
  2306       } else if (strcmp(tail, ":none") == 0) {
  2307         FLAG_SET_CMDLINE(bool, BytecodeVerificationLocal, false);
  2308         FLAG_SET_CMDLINE(bool, BytecodeVerificationRemote, false);
  2309       } else if (is_bad_option(option, args->ignoreUnrecognized, "verification")) {
  2310         return JNI_EINVAL;
  2312     // -Xdebug
  2313     } else if (match_option(option, "-Xdebug", &tail)) {
  2314       // note this flag has been used, then ignore
  2315       set_xdebug_mode(true);
  2316     // -Xnoagent
  2317     } else if (match_option(option, "-Xnoagent", &tail)) {
  2318       // For compatibility with classic. HotSpot refuses to load the old style agent.dll.
  2319     } else if (match_option(option, "-Xboundthreads", &tail)) {
  2320       // Bind user level threads to kernel threads (Solaris only)
  2321       FLAG_SET_CMDLINE(bool, UseBoundThreads, true);
  2322     } else if (match_option(option, "-Xloggc:", &tail)) {
  2323       // Redirect GC output to the file. -Xloggc:<filename>
  2324       // ostream_init_log(), when called will use this filename
  2325       // to initialize a fileStream.
  2326       _gc_log_filename = strdup(tail);
  2327       FLAG_SET_CMDLINE(bool, PrintGC, true);
  2328       FLAG_SET_CMDLINE(bool, PrintGCTimeStamps, true);
  2329       FLAG_SET_CMDLINE(bool, TraceClassUnloading, true);
  2331     // JNI hooks
  2332     } else if (match_option(option, "-Xcheck", &tail)) {
  2333       if (!strcmp(tail, ":jni")) {
  2334         CheckJNICalls = true;
  2335       } else if (is_bad_option(option, args->ignoreUnrecognized,
  2336                                      "check")) {
  2337         return JNI_EINVAL;
  2339     } else if (match_option(option, "vfprintf", &tail)) {
  2340       _vfprintf_hook = CAST_TO_FN_PTR(vfprintf_hook_t, option->extraInfo);
  2341     } else if (match_option(option, "exit", &tail)) {
  2342       _exit_hook = CAST_TO_FN_PTR(exit_hook_t, option->extraInfo);
  2343     } else if (match_option(option, "abort", &tail)) {
  2344       _abort_hook = CAST_TO_FN_PTR(abort_hook_t, option->extraInfo);
  2345     // -XX:+AggressiveHeap
  2346     } else if (match_option(option, "-XX:+AggressiveHeap", &tail)) {
  2348       // This option inspects the machine and attempts to set various
  2349       // parameters to be optimal for long-running, memory allocation
  2350       // intensive jobs.  It is intended for machines with large
  2351       // amounts of cpu and memory.
  2353       // initHeapSize is needed since _initial_heap_size is 4 bytes on a 32 bit
  2354       // VM, but we may not be able to represent the total physical memory
  2355       // available (like having 8gb of memory on a box but using a 32bit VM).
  2356       // Thus, we need to make sure we're using a julong for intermediate
  2357       // calculations.
  2358       julong initHeapSize;
  2359       julong total_memory = os::physical_memory();
  2361       if (total_memory < (julong)256*M) {
  2362         jio_fprintf(defaultStream::error_stream(),
  2363                     "You need at least 256mb of memory to use -XX:+AggressiveHeap\n");
  2364         vm_exit(1);
  2367       // The heap size is half of available memory, or (at most)
  2368       // all of possible memory less 160mb (leaving room for the OS
  2369       // when using ISM).  This is the maximum; because adaptive sizing
  2370       // is turned on below, the actual space used may be smaller.
  2372       initHeapSize = MIN2(total_memory / (julong)2,
  2373                           total_memory - (julong)160*M);
  2375       // Make sure that if we have a lot of memory we cap the 32 bit
  2376       // process space.  The 64bit VM version of this function is a nop.
  2377       initHeapSize = os::allocatable_physical_memory(initHeapSize);
  2379       // The perm gen is separate but contiguous with the
  2380       // object heap (and is reserved with it) so subtract it
  2381       // from the heap size.
  2382       if (initHeapSize > MaxPermSize) {
  2383         initHeapSize = initHeapSize - MaxPermSize;
  2384       } else {
  2385         warning("AggressiveHeap and MaxPermSize values may conflict");
  2388       if (FLAG_IS_DEFAULT(MaxHeapSize)) {
  2389          FLAG_SET_CMDLINE(uintx, MaxHeapSize, initHeapSize);
  2390          FLAG_SET_CMDLINE(uintx, InitialHeapSize, initHeapSize);
  2391          // Currently the minimum size and the initial heap sizes are the same.
  2392          set_min_heap_size(initHeapSize);
  2394       if (FLAG_IS_DEFAULT(NewSize)) {
  2395          // Make the young generation 3/8ths of the total heap.
  2396          FLAG_SET_CMDLINE(uintx, NewSize,
  2397                                 ((julong)MaxHeapSize / (julong)8) * (julong)3);
  2398          FLAG_SET_CMDLINE(uintx, MaxNewSize, NewSize);
  2401       FLAG_SET_DEFAULT(UseLargePages, true);
  2403       // Increase some data structure sizes for efficiency
  2404       FLAG_SET_CMDLINE(uintx, BaseFootPrintEstimate, MaxHeapSize);
  2405       FLAG_SET_CMDLINE(bool, ResizeTLAB, false);
  2406       FLAG_SET_CMDLINE(uintx, TLABSize, 256*K);
  2408       // See the OldPLABSize comment below, but replace 'after promotion'
  2409       // with 'after copying'.  YoungPLABSize is the size of the survivor
  2410       // space per-gc-thread buffers.  The default is 4kw.
  2411       FLAG_SET_CMDLINE(uintx, YoungPLABSize, 256*K);      // Note: this is in words
  2413       // OldPLABSize is the size of the buffers in the old gen that
  2414       // UseParallelGC uses to promote live data that doesn't fit in the
  2415       // survivor spaces.  At any given time, there's one for each gc thread.
  2416       // The default size is 1kw. These buffers are rarely used, since the
  2417       // survivor spaces are usually big enough.  For specjbb, however, there
  2418       // are occasions when there's lots of live data in the young gen
  2419       // and we end up promoting some of it.  We don't have a definite
  2420       // explanation for why bumping OldPLABSize helps, but the theory
  2421       // is that a bigger PLAB results in retaining something like the
  2422       // original allocation order after promotion, which improves mutator
  2423       // locality.  A minor effect may be that larger PLABs reduce the
  2424       // number of PLAB allocation events during gc.  The value of 8kw
  2425       // was arrived at by experimenting with specjbb.
  2426       FLAG_SET_CMDLINE(uintx, OldPLABSize, 8*K);  // Note: this is in words
  2428       // CompilationPolicyChoice=0 causes the server compiler to adopt
  2429       // a more conservative which-method-do-I-compile policy when one
  2430       // of the counters maintained by the interpreter trips.  The
  2431       // result is reduced startup time and improved specjbb and
  2432       // alacrity performance.  Zero is the default, but we set it
  2433       // explicitly here in case the default changes.
  2434       // See runtime/compilationPolicy.*.
  2435       FLAG_SET_CMDLINE(intx, CompilationPolicyChoice, 0);
  2437       // Enable parallel GC and adaptive generation sizing
  2438       FLAG_SET_CMDLINE(bool, UseParallelGC, true);
  2439       FLAG_SET_DEFAULT(ParallelGCThreads,
  2440                        Abstract_VM_Version::parallel_worker_threads());
  2442       // Encourage steady state memory management
  2443       FLAG_SET_CMDLINE(uintx, ThresholdTolerance, 100);
  2445       // This appears to improve mutator locality
  2446       FLAG_SET_CMDLINE(bool, ScavengeBeforeFullGC, false);
  2448       // Get around early Solaris scheduling bug
  2449       // (affinity vs other jobs on system)
  2450       // but disallow DR and offlining (5008695).
  2451       FLAG_SET_CMDLINE(bool, BindGCTaskThreadsToCPUs, true);
  2453     } else if (match_option(option, "-XX:+NeverTenure", &tail)) {
  2454       // The last option must always win.
  2455       FLAG_SET_CMDLINE(bool, AlwaysTenure, false);
  2456       FLAG_SET_CMDLINE(bool, NeverTenure, true);
  2457     } else if (match_option(option, "-XX:+AlwaysTenure", &tail)) {
  2458       // The last option must always win.
  2459       FLAG_SET_CMDLINE(bool, NeverTenure, false);
  2460       FLAG_SET_CMDLINE(bool, AlwaysTenure, true);
  2461     } else if (match_option(option, "-XX:+CMSPermGenSweepingEnabled", &tail) ||
  2462                match_option(option, "-XX:-CMSPermGenSweepingEnabled", &tail)) {
  2463       jio_fprintf(defaultStream::error_stream(),
  2464         "Please use CMSClassUnloadingEnabled in place of "
  2465         "CMSPermGenSweepingEnabled in the future\n");
  2466     } else if (match_option(option, "-XX:+UseGCTimeLimit", &tail)) {
  2467       FLAG_SET_CMDLINE(bool, UseGCOverheadLimit, true);
  2468       jio_fprintf(defaultStream::error_stream(),
  2469         "Please use -XX:+UseGCOverheadLimit in place of "
  2470         "-XX:+UseGCTimeLimit in the future\n");
  2471     } else if (match_option(option, "-XX:-UseGCTimeLimit", &tail)) {
  2472       FLAG_SET_CMDLINE(bool, UseGCOverheadLimit, false);
  2473       jio_fprintf(defaultStream::error_stream(),
  2474         "Please use -XX:-UseGCOverheadLimit in place of "
  2475         "-XX:-UseGCTimeLimit in the future\n");
  2476     // The TLE options are for compatibility with 1.3 and will be
  2477     // removed without notice in a future release.  These options
  2478     // are not to be documented.
  2479     } else if (match_option(option, "-XX:MaxTLERatio=", &tail)) {
  2480       // No longer used.
  2481     } else if (match_option(option, "-XX:+ResizeTLE", &tail)) {
  2482       FLAG_SET_CMDLINE(bool, ResizeTLAB, true);
  2483     } else if (match_option(option, "-XX:-ResizeTLE", &tail)) {
  2484       FLAG_SET_CMDLINE(bool, ResizeTLAB, false);
  2485     } else if (match_option(option, "-XX:+PrintTLE", &tail)) {
  2486       FLAG_SET_CMDLINE(bool, PrintTLAB, true);
  2487     } else if (match_option(option, "-XX:-PrintTLE", &tail)) {
  2488       FLAG_SET_CMDLINE(bool, PrintTLAB, false);
  2489     } else if (match_option(option, "-XX:TLEFragmentationRatio=", &tail)) {
  2490       // No longer used.
  2491     } else if (match_option(option, "-XX:TLESize=", &tail)) {
  2492       julong long_tlab_size = 0;
  2493       ArgsRange errcode = parse_memory_size(tail, &long_tlab_size, 1);
  2494       if (errcode != arg_in_range) {
  2495         jio_fprintf(defaultStream::error_stream(),
  2496                     "Invalid TLAB size: %s\n", option->optionString);
  2497         describe_range_error(errcode);
  2498         return JNI_EINVAL;
  2500       FLAG_SET_CMDLINE(uintx, TLABSize, long_tlab_size);
  2501     } else if (match_option(option, "-XX:TLEThreadRatio=", &tail)) {
  2502       // No longer used.
  2503     } else if (match_option(option, "-XX:+UseTLE", &tail)) {
  2504       FLAG_SET_CMDLINE(bool, UseTLAB, true);
  2505     } else if (match_option(option, "-XX:-UseTLE", &tail)) {
  2506       FLAG_SET_CMDLINE(bool, UseTLAB, false);
  2507 SOLARIS_ONLY(
  2508     } else if (match_option(option, "-XX:+UsePermISM", &tail)) {
  2509       warning("-XX:+UsePermISM is obsolete.");
  2510       FLAG_SET_CMDLINE(bool, UseISM, true);
  2511     } else if (match_option(option, "-XX:-UsePermISM", &tail)) {
  2512       FLAG_SET_CMDLINE(bool, UseISM, false);
  2514     } else if (match_option(option, "-XX:+DisplayVMOutputToStderr", &tail)) {
  2515       FLAG_SET_CMDLINE(bool, DisplayVMOutputToStdout, false);
  2516       FLAG_SET_CMDLINE(bool, DisplayVMOutputToStderr, true);
  2517     } else if (match_option(option, "-XX:+DisplayVMOutputToStdout", &tail)) {
  2518       FLAG_SET_CMDLINE(bool, DisplayVMOutputToStderr, false);
  2519       FLAG_SET_CMDLINE(bool, DisplayVMOutputToStdout, true);
  2520     } else if (match_option(option, "-XX:+ExtendedDTraceProbes", &tail)) {
  2521 #ifdef SOLARIS
  2522       FLAG_SET_CMDLINE(bool, ExtendedDTraceProbes, true);
  2523       FLAG_SET_CMDLINE(bool, DTraceMethodProbes, true);
  2524       FLAG_SET_CMDLINE(bool, DTraceAllocProbes, true);
  2525       FLAG_SET_CMDLINE(bool, DTraceMonitorProbes, true);
  2526 #else // ndef SOLARIS
  2527       jio_fprintf(defaultStream::error_stream(),
  2528                   "ExtendedDTraceProbes flag is only applicable on Solaris\n");
  2529       return JNI_EINVAL;
  2530 #endif // ndef SOLARIS
  2531 #ifdef ASSERT
  2532     } else if (match_option(option, "-XX:+FullGCALot", &tail)) {
  2533       FLAG_SET_CMDLINE(bool, FullGCALot, true);
  2534       // disable scavenge before parallel mark-compact
  2535       FLAG_SET_CMDLINE(bool, ScavengeBeforeFullGC, false);
  2536 #endif
  2537     } else if (match_option(option, "-XX:CMSParPromoteBlocksToClaim=", &tail)) {
  2538       julong cms_blocks_to_claim = (julong)atol(tail);
  2539       FLAG_SET_CMDLINE(uintx, CMSParPromoteBlocksToClaim, cms_blocks_to_claim);
  2540       jio_fprintf(defaultStream::error_stream(),
  2541         "Please use -XX:OldPLABSize in place of "
  2542         "-XX:CMSParPromoteBlocksToClaim in the future\n");
  2543     } else if (match_option(option, "-XX:ParCMSPromoteBlocksToClaim=", &tail)) {
  2544       julong cms_blocks_to_claim = (julong)atol(tail);
  2545       FLAG_SET_CMDLINE(uintx, CMSParPromoteBlocksToClaim, cms_blocks_to_claim);
  2546       jio_fprintf(defaultStream::error_stream(),
  2547         "Please use -XX:OldPLABSize in place of "
  2548         "-XX:ParCMSPromoteBlocksToClaim in the future\n");
  2549     } else if (match_option(option, "-XX:ParallelGCOldGenAllocBufferSize=", &tail)) {
  2550       julong old_plab_size = 0;
  2551       ArgsRange errcode = parse_memory_size(tail, &old_plab_size, 1);
  2552       if (errcode != arg_in_range) {
  2553         jio_fprintf(defaultStream::error_stream(),
  2554                     "Invalid old PLAB size: %s\n", option->optionString);
  2555         describe_range_error(errcode);
  2556         return JNI_EINVAL;
  2558       FLAG_SET_CMDLINE(uintx, OldPLABSize, old_plab_size);
  2559       jio_fprintf(defaultStream::error_stream(),
  2560                   "Please use -XX:OldPLABSize in place of "
  2561                   "-XX:ParallelGCOldGenAllocBufferSize in the future\n");
  2562     } else if (match_option(option, "-XX:ParallelGCToSpaceAllocBufferSize=", &tail)) {
  2563       julong young_plab_size = 0;
  2564       ArgsRange errcode = parse_memory_size(tail, &young_plab_size, 1);
  2565       if (errcode != arg_in_range) {
  2566         jio_fprintf(defaultStream::error_stream(),
  2567                     "Invalid young PLAB size: %s\n", option->optionString);
  2568         describe_range_error(errcode);
  2569         return JNI_EINVAL;
  2571       FLAG_SET_CMDLINE(uintx, YoungPLABSize, young_plab_size);
  2572       jio_fprintf(defaultStream::error_stream(),
  2573                   "Please use -XX:YoungPLABSize in place of "
  2574                   "-XX:ParallelGCToSpaceAllocBufferSize in the future\n");
  2575     } else if (match_option(option, "-XX:CMSMarkStackSize=", &tail) ||
  2576                match_option(option, "-XX:G1MarkStackSize=", &tail)) {
  2577       julong stack_size = 0;
  2578       ArgsRange errcode = parse_memory_size(tail, &stack_size, 1);
  2579       if (errcode != arg_in_range) {
  2580         jio_fprintf(defaultStream::error_stream(),
  2581                     "Invalid mark stack size: %s\n", option->optionString);
  2582         describe_range_error(errcode);
  2583         return JNI_EINVAL;
  2585       FLAG_SET_CMDLINE(uintx, MarkStackSize, stack_size);
  2586     } else if (match_option(option, "-XX:CMSMarkStackSizeMax=", &tail)) {
  2587       julong max_stack_size = 0;
  2588       ArgsRange errcode = parse_memory_size(tail, &max_stack_size, 1);
  2589       if (errcode != arg_in_range) {
  2590         jio_fprintf(defaultStream::error_stream(),
  2591                     "Invalid maximum mark stack size: %s\n",
  2592                     option->optionString);
  2593         describe_range_error(errcode);
  2594         return JNI_EINVAL;
  2596       FLAG_SET_CMDLINE(uintx, MarkStackSizeMax, max_stack_size);
  2597     } else if (match_option(option, "-XX:ParallelMarkingThreads=", &tail) ||
  2598                match_option(option, "-XX:ParallelCMSThreads=", &tail)) {
  2599       uintx conc_threads = 0;
  2600       if (!parse_uintx(tail, &conc_threads, 1)) {
  2601         jio_fprintf(defaultStream::error_stream(),
  2602                     "Invalid concurrent threads: %s\n", option->optionString);
  2603         return JNI_EINVAL;
  2605       FLAG_SET_CMDLINE(uintx, ConcGCThreads, conc_threads);
  2606     } else if (match_option(option, "-XX:", &tail)) { // -XX:xxxx
  2607       // Skip -XX:Flags= since that case has already been handled
  2608       if (strncmp(tail, "Flags=", strlen("Flags=")) != 0) {
  2609         if (!process_argument(tail, args->ignoreUnrecognized, origin)) {
  2610           return JNI_EINVAL;
  2613     // Unknown option
  2614     } else if (is_bad_option(option, args->ignoreUnrecognized)) {
  2615       return JNI_ERR;
  2618   // Change the default value for flags  which have different default values
  2619   // when working with older JDKs.
  2620   if (JDK_Version::current().compare_major(6) <= 0 &&
  2621       FLAG_IS_DEFAULT(UseVMInterruptibleIO)) {
  2622     FLAG_SET_DEFAULT(UseVMInterruptibleIO, true);
  2624 #ifdef LINUX
  2625  if (JDK_Version::current().compare_major(6) <= 0 &&
  2626       FLAG_IS_DEFAULT(UseLinuxPosixThreadCPUClocks)) {
  2627     FLAG_SET_DEFAULT(UseLinuxPosixThreadCPUClocks, false);
  2629 #endif // LINUX
  2630   return JNI_OK;
  2633 jint Arguments::finalize_vm_init_args(SysClassPath* scp_p, bool scp_assembly_required) {
  2634   // This must be done after all -D arguments have been processed.
  2635   scp_p->expand_endorsed();
  2637   if (scp_assembly_required || scp_p->get_endorsed() != NULL) {
  2638     // Assemble the bootclasspath elements into the final path.
  2639     Arguments::set_sysclasspath(scp_p->combined_path());
  2642   // This must be done after all arguments have been processed.
  2643   // java_compiler() true means set to "NONE" or empty.
  2644   if (java_compiler() && !xdebug_mode()) {
  2645     // For backwards compatibility, we switch to interpreted mode if
  2646     // -Djava.compiler="NONE" or "" is specified AND "-Xdebug" was
  2647     // not specified.
  2648     set_mode_flags(_int);
  2650   if (CompileThreshold == 0) {
  2651     set_mode_flags(_int);
  2654 #ifdef TIERED
  2655   // If we are using tiered compilation in the tiered vm then c1 will
  2656   // do the profiling and we don't want to waste that time in the
  2657   // interpreter.
  2658   if (TieredCompilation) {
  2659     ProfileInterpreter = false;
  2660   } else {
  2661     // Since we are running vanilla server we must adjust the compile threshold
  2662     // unless the user has already adjusted it because the default threshold assumes
  2663     // we will run tiered.
  2665     if (FLAG_IS_DEFAULT(CompileThreshold)) {
  2666       CompileThreshold = Tier2CompileThreshold;
  2669 #endif // TIERED
  2671 #ifndef COMPILER2
  2672   // Don't degrade server performance for footprint
  2673   if (FLAG_IS_DEFAULT(UseLargePages) &&
  2674       MaxHeapSize < LargePageHeapSizeThreshold) {
  2675     // No need for large granularity pages w/small heaps.
  2676     // Note that large pages are enabled/disabled for both the
  2677     // Java heap and the code cache.
  2678     FLAG_SET_DEFAULT(UseLargePages, false);
  2679     SOLARIS_ONLY(FLAG_SET_DEFAULT(UseMPSS, false));
  2680     SOLARIS_ONLY(FLAG_SET_DEFAULT(UseISM, false));
  2683   // Tiered compilation is undefined with C1.
  2684   TieredCompilation = false;
  2686 #else
  2687   if (!FLAG_IS_DEFAULT(OptoLoopAlignment) && FLAG_IS_DEFAULT(MaxLoopPad)) {
  2688     FLAG_SET_DEFAULT(MaxLoopPad, OptoLoopAlignment-1);
  2690   // Temporary disable bulk zeroing reduction with G1. See CR 6627983.
  2691   if (UseG1GC) {
  2692     FLAG_SET_DEFAULT(ReduceBulkZeroing, false);
  2694 #endif
  2696   // If we are running in a headless jre, force java.awt.headless property
  2697   // to be true unless the property has already been set.
  2698   // Also allow the OS environment variable JAVA_AWT_HEADLESS to set headless state.
  2699   if (os::is_headless_jre()) {
  2700     const char* headless = Arguments::get_property("java.awt.headless");
  2701     if (headless == NULL) {
  2702       char envbuffer[128];
  2703       if (!os::getenv("JAVA_AWT_HEADLESS", envbuffer, sizeof(envbuffer))) {
  2704         if (!add_property("java.awt.headless=true")) {
  2705           return JNI_ENOMEM;
  2707       } else {
  2708         char buffer[256];
  2709         strcpy(buffer, "java.awt.headless=");
  2710         strcat(buffer, envbuffer);
  2711         if (!add_property(buffer)) {
  2712           return JNI_ENOMEM;
  2718   if (!check_vm_args_consistency()) {
  2719     return JNI_ERR;
  2722   return JNI_OK;
  2725 jint Arguments::parse_java_options_environment_variable(SysClassPath* scp_p, bool* scp_assembly_required_p) {
  2726   return parse_options_environment_variable("_JAVA_OPTIONS", scp_p,
  2727                                             scp_assembly_required_p);
  2730 jint Arguments::parse_java_tool_options_environment_variable(SysClassPath* scp_p, bool* scp_assembly_required_p) {
  2731   return parse_options_environment_variable("JAVA_TOOL_OPTIONS", scp_p,
  2732                                             scp_assembly_required_p);
  2735 jint Arguments::parse_options_environment_variable(const char* name, SysClassPath* scp_p, bool* scp_assembly_required_p) {
  2736   const int N_MAX_OPTIONS = 64;
  2737   const int OPTION_BUFFER_SIZE = 1024;
  2738   char buffer[OPTION_BUFFER_SIZE];
  2740   // The variable will be ignored if it exceeds the length of the buffer.
  2741   // Don't check this variable if user has special privileges
  2742   // (e.g. unix su command).
  2743   if (os::getenv(name, buffer, sizeof(buffer)) &&
  2744       !os::have_special_privileges()) {
  2745     JavaVMOption options[N_MAX_OPTIONS];      // Construct option array
  2746     jio_fprintf(defaultStream::error_stream(),
  2747                 "Picked up %s: %s\n", name, buffer);
  2748     char* rd = buffer;                        // pointer to the input string (rd)
  2749     int i;
  2750     for (i = 0; i < N_MAX_OPTIONS;) {         // repeat for all options in the input string
  2751       while (isspace(*rd)) rd++;              // skip whitespace
  2752       if (*rd == 0) break;                    // we re done when the input string is read completely
  2754       // The output, option string, overwrites the input string.
  2755       // Because of quoting, the pointer to the option string (wrt) may lag the pointer to
  2756       // input string (rd).
  2757       char* wrt = rd;
  2759       options[i++].optionString = wrt;        // Fill in option
  2760       while (*rd != 0 && !isspace(*rd)) {     // unquoted strings terminate with a space or NULL
  2761         if (*rd == '\'' || *rd == '"') {      // handle a quoted string
  2762           int quote = *rd;                    // matching quote to look for
  2763           rd++;                               // don't copy open quote
  2764           while (*rd != quote) {              // include everything (even spaces) up until quote
  2765             if (*rd == 0) {                   // string termination means unmatched string
  2766               jio_fprintf(defaultStream::error_stream(),
  2767                           "Unmatched quote in %s\n", name);
  2768               return JNI_ERR;
  2770             *wrt++ = *rd++;                   // copy to option string
  2772           rd++;                               // don't copy close quote
  2773         } else {
  2774           *wrt++ = *rd++;                     // copy to option string
  2777       // Need to check if we're done before writing a NULL,
  2778       // because the write could be to the byte that rd is pointing to.
  2779       if (*rd++ == 0) {
  2780         *wrt = 0;
  2781         break;
  2783       *wrt = 0;                               // Zero terminate option
  2785     // Construct JavaVMInitArgs structure and parse as if it was part of the command line
  2786     JavaVMInitArgs vm_args;
  2787     vm_args.version = JNI_VERSION_1_2;
  2788     vm_args.options = options;
  2789     vm_args.nOptions = i;
  2790     vm_args.ignoreUnrecognized = IgnoreUnrecognizedVMOptions;
  2792     if (PrintVMOptions) {
  2793       const char* tail;
  2794       for (int i = 0; i < vm_args.nOptions; i++) {
  2795         const JavaVMOption *option = vm_args.options + i;
  2796         if (match_option(option, "-XX:", &tail)) {
  2797           logOption(tail);
  2802     return(parse_each_vm_init_arg(&vm_args, scp_p, scp_assembly_required_p, ENVIRON_VAR));
  2804   return JNI_OK;
  2807 // Parse entry point called from JNI_CreateJavaVM
  2809 jint Arguments::parse(const JavaVMInitArgs* args) {
  2811   // Sharing support
  2812   // Construct the path to the archive
  2813   char jvm_path[JVM_MAXPATHLEN];
  2814   os::jvm_path(jvm_path, sizeof(jvm_path));
  2815 #ifdef TIERED
  2816   if (strstr(jvm_path, "client") != NULL) {
  2817     force_client_mode = true;
  2819 #endif // TIERED
  2820   char *end = strrchr(jvm_path, *os::file_separator());
  2821   if (end != NULL) *end = '\0';
  2822   char *shared_archive_path = NEW_C_HEAP_ARRAY(char, strlen(jvm_path) +
  2823                                         strlen(os::file_separator()) + 20);
  2824   if (shared_archive_path == NULL) return JNI_ENOMEM;
  2825   strcpy(shared_archive_path, jvm_path);
  2826   strcat(shared_archive_path, os::file_separator());
  2827   strcat(shared_archive_path, "classes");
  2828   DEBUG_ONLY(strcat(shared_archive_path, "_g");)
  2829   strcat(shared_archive_path, ".jsa");
  2830   SharedArchivePath = shared_archive_path;
  2832   // Remaining part of option string
  2833   const char* tail;
  2835   // If flag "-XX:Flags=flags-file" is used it will be the first option to be processed.
  2836   bool settings_file_specified = false;
  2837   const char* flags_file;
  2838   int index;
  2839   for (index = 0; index < args->nOptions; index++) {
  2840     const JavaVMOption *option = args->options + index;
  2841     if (match_option(option, "-XX:Flags=", &tail)) {
  2842       flags_file = tail;
  2843       settings_file_specified = true;
  2845     if (match_option(option, "-XX:+PrintVMOptions", &tail)) {
  2846       PrintVMOptions = true;
  2848     if (match_option(option, "-XX:-PrintVMOptions", &tail)) {
  2849       PrintVMOptions = false;
  2851     if (match_option(option, "-XX:+IgnoreUnrecognizedVMOptions", &tail)) {
  2852       IgnoreUnrecognizedVMOptions = true;
  2854     if (match_option(option, "-XX:-IgnoreUnrecognizedVMOptions", &tail)) {
  2855       IgnoreUnrecognizedVMOptions = false;
  2857     if (match_option(option, "-XX:+PrintFlagsInitial", &tail)) {
  2858       CommandLineFlags::printFlags();
  2859       vm_exit(0);
  2862 #ifndef PRODUCT
  2863     if (match_option(option, "-XX:+PrintFlagsWithComments", &tail)) {
  2864       CommandLineFlags::printFlags(true);
  2865       vm_exit(0);
  2867 #endif
  2870   if (IgnoreUnrecognizedVMOptions) {
  2871     // uncast const to modify the flag args->ignoreUnrecognized
  2872     *(jboolean*)(&args->ignoreUnrecognized) = true;
  2875   // Parse specified settings file
  2876   if (settings_file_specified) {
  2877     if (!process_settings_file(flags_file, true, args->ignoreUnrecognized)) {
  2878       return JNI_EINVAL;
  2882   // Parse default .hotspotrc settings file
  2883   if (!settings_file_specified) {
  2884     if (!process_settings_file(".hotspotrc", false, args->ignoreUnrecognized)) {
  2885       return JNI_EINVAL;
  2889   if (PrintVMOptions) {
  2890     for (index = 0; index < args->nOptions; index++) {
  2891       const JavaVMOption *option = args->options + index;
  2892       if (match_option(option, "-XX:", &tail)) {
  2893         logOption(tail);
  2898   // Parse JavaVMInitArgs structure passed in, as well as JAVA_TOOL_OPTIONS and _JAVA_OPTIONS
  2899   jint result = parse_vm_init_args(args);
  2900   if (result != JNI_OK) {
  2901     return result;
  2904 #ifndef PRODUCT
  2905   if (TraceBytecodesAt != 0) {
  2906     TraceBytecodes = true;
  2908   if (CountCompiledCalls) {
  2909     if (UseCounterDecay) {
  2910       warning("UseCounterDecay disabled because CountCalls is set");
  2911       UseCounterDecay = false;
  2914 #endif // PRODUCT
  2916   if (EnableInvokeDynamic && !EnableMethodHandles) {
  2917     if (!FLAG_IS_DEFAULT(EnableMethodHandles)) {
  2918       warning("forcing EnableMethodHandles true because EnableInvokeDynamic is true");
  2920     EnableMethodHandles = true;
  2922   if (EnableMethodHandles && !AnonymousClasses) {
  2923     if (!FLAG_IS_DEFAULT(AnonymousClasses)) {
  2924       warning("forcing AnonymousClasses true because EnableMethodHandles is true");
  2926     AnonymousClasses = true;
  2928   if ((EnableMethodHandles || AnonymousClasses) && ScavengeRootsInCode == 0) {
  2929     if (!FLAG_IS_DEFAULT(ScavengeRootsInCode)) {
  2930       warning("forcing ScavengeRootsInCode non-zero because EnableMethodHandles or AnonymousClasses is true");
  2932     ScavengeRootsInCode = 1;
  2934 #ifdef COMPILER2
  2935   if (EnableInvokeDynamic && DoEscapeAnalysis) {
  2936     // TODO: We need to find rules for invokedynamic and EA.  For now,
  2937     // simply disable EA by default.
  2938     if (FLAG_IS_DEFAULT(DoEscapeAnalysis)) {
  2939       DoEscapeAnalysis = false;
  2942 #endif
  2944   if (PrintGCDetails) {
  2945     // Turn on -verbose:gc options as well
  2946     PrintGC = true;
  2949 #if defined(_LP64) && defined(COMPILER1)
  2950   UseCompressedOops = false;
  2951 #endif
  2953   // Set object alignment values.
  2954   set_object_alignment();
  2956 #ifdef SERIALGC
  2957   force_serial_gc();
  2958 #endif // SERIALGC
  2959 #ifdef KERNEL
  2960   no_shared_spaces();
  2961 #endif // KERNEL
  2963   // Set flags based on ergonomics.
  2964   set_ergonomics_flags();
  2966 #ifdef _LP64
  2967   // XXX JSR 292 currently does not support compressed oops.
  2968   if (EnableMethodHandles && UseCompressedOops) {
  2969     if (FLAG_IS_DEFAULT(UseCompressedOops) || FLAG_IS_ERGO(UseCompressedOops)) {
  2970       UseCompressedOops = false;
  2973 #endif // _LP64
  2975   // Check the GC selections again.
  2976   if (!check_gc_consistency()) {
  2977     return JNI_EINVAL;
  2980 #ifndef KERNEL
  2981   if (UseConcMarkSweepGC) {
  2982     // Set flags for CMS and ParNew.  Check UseConcMarkSweep first
  2983     // to ensure that when both UseConcMarkSweepGC and UseParNewGC
  2984     // are true, we don't call set_parnew_gc_flags() as well.
  2985     set_cms_and_parnew_gc_flags();
  2986   } else {
  2987     // Set heap size based on available physical memory
  2988     set_heap_size();
  2989     // Set per-collector flags
  2990     if (UseParallelGC || UseParallelOldGC) {
  2991       set_parallel_gc_flags();
  2992     } else if (UseParNewGC) {
  2993       set_parnew_gc_flags();
  2994     } else if (UseG1GC) {
  2995       set_g1_gc_flags();
  2998 #endif // KERNEL
  3000 #ifdef SERIALGC
  3001   assert(verify_serial_gc_flags(), "SerialGC unset");
  3002 #endif // SERIALGC
  3004   // Set bytecode rewriting flags
  3005   set_bytecode_flags();
  3007   // Set flags if Aggressive optimization flags (-XX:+AggressiveOpts) enabled.
  3008   set_aggressive_opts_flags();
  3010 #ifdef CC_INTERP
  3011   // Clear flags not supported by the C++ interpreter
  3012   FLAG_SET_DEFAULT(ProfileInterpreter, false);
  3013   FLAG_SET_DEFAULT(UseBiasedLocking, false);
  3014   LP64_ONLY(FLAG_SET_DEFAULT(UseCompressedOops, false));
  3015 #endif // CC_INTERP
  3017 #ifdef COMPILER2
  3018   if (!UseBiasedLocking || EmitSync != 0) {
  3019     UseOptoBiasInlining = false;
  3021 #endif
  3023   if (PrintAssembly && FLAG_IS_DEFAULT(DebugNonSafepoints)) {
  3024     warning("PrintAssembly is enabled; turning on DebugNonSafepoints to gain additional output");
  3025     DebugNonSafepoints = true;
  3028 #ifndef PRODUCT
  3029   if (CompileTheWorld) {
  3030     // Force NmethodSweeper to sweep whole CodeCache each time.
  3031     if (FLAG_IS_DEFAULT(NmethodSweepFraction)) {
  3032       NmethodSweepFraction = 1;
  3035 #endif
  3037   if (PrintCommandLineFlags) {
  3038     CommandLineFlags::printSetFlags();
  3041   // Apply CPU specific policy for the BiasedLocking
  3042   if (UseBiasedLocking) {
  3043     if (!VM_Version::use_biased_locking() &&
  3044         !(FLAG_IS_CMDLINE(UseBiasedLocking))) {
  3045       UseBiasedLocking = false;
  3049   return JNI_OK;
  3052 int Arguments::PropertyList_count(SystemProperty* pl) {
  3053   int count = 0;
  3054   while(pl != NULL) {
  3055     count++;
  3056     pl = pl->next();
  3058   return count;
  3061 const char* Arguments::PropertyList_get_value(SystemProperty *pl, const char* key) {
  3062   assert(key != NULL, "just checking");
  3063   SystemProperty* prop;
  3064   for (prop = pl; prop != NULL; prop = prop->next()) {
  3065     if (strcmp(key, prop->key()) == 0) return prop->value();
  3067   return NULL;
  3070 const char* Arguments::PropertyList_get_key_at(SystemProperty *pl, int index) {
  3071   int count = 0;
  3072   const char* ret_val = NULL;
  3074   while(pl != NULL) {
  3075     if(count >= index) {
  3076       ret_val = pl->key();
  3077       break;
  3079     count++;
  3080     pl = pl->next();
  3083   return ret_val;
  3086 char* Arguments::PropertyList_get_value_at(SystemProperty* pl, int index) {
  3087   int count = 0;
  3088   char* ret_val = NULL;
  3090   while(pl != NULL) {
  3091     if(count >= index) {
  3092       ret_val = pl->value();
  3093       break;
  3095     count++;
  3096     pl = pl->next();
  3099   return ret_val;
  3102 void Arguments::PropertyList_add(SystemProperty** plist, SystemProperty *new_p) {
  3103   SystemProperty* p = *plist;
  3104   if (p == NULL) {
  3105     *plist = new_p;
  3106   } else {
  3107     while (p->next() != NULL) {
  3108       p = p->next();
  3110     p->set_next(new_p);
  3114 void Arguments::PropertyList_add(SystemProperty** plist, const char* k, char* v) {
  3115   if (plist == NULL)
  3116     return;
  3118   SystemProperty* new_p = new SystemProperty(k, v, true);
  3119   PropertyList_add(plist, new_p);
  3122 // This add maintains unique property key in the list.
  3123 void Arguments::PropertyList_unique_add(SystemProperty** plist, const char* k, char* v, jboolean append) {
  3124   if (plist == NULL)
  3125     return;
  3127   // If property key exist then update with new value.
  3128   SystemProperty* prop;
  3129   for (prop = *plist; prop != NULL; prop = prop->next()) {
  3130     if (strcmp(k, prop->key()) == 0) {
  3131       if (append) {
  3132         prop->append_value(v);
  3133       } else {
  3134         prop->set_value(v);
  3136       return;
  3140   PropertyList_add(plist, k, v);
  3143 #ifdef KERNEL
  3144 char *Arguments::get_kernel_properties() {
  3145   // Find properties starting with kernel and append them to string
  3146   // We need to find out how long they are first because the URL's that they
  3147   // might point to could get long.
  3148   int length = 0;
  3149   SystemProperty* prop;
  3150   for (prop = _system_properties; prop != NULL; prop = prop->next()) {
  3151     if (strncmp(prop->key(), "kernel.", 7 ) == 0) {
  3152       length += (strlen(prop->key()) + strlen(prop->value()) + 5);  // "-D ="
  3155   // Add one for null terminator.
  3156   char *props = AllocateHeap(length + 1, "get_kernel_properties");
  3157   if (length != 0) {
  3158     int pos = 0;
  3159     for (prop = _system_properties; prop != NULL; prop = prop->next()) {
  3160       if (strncmp(prop->key(), "kernel.", 7 ) == 0) {
  3161         jio_snprintf(&props[pos], length-pos,
  3162                      "-D%s=%s ", prop->key(), prop->value());
  3163         pos = strlen(props);
  3167   // null terminate props in case of null
  3168   props[length] = '\0';
  3169   return props;
  3171 #endif // KERNEL
  3173 // Copies src into buf, replacing "%%" with "%" and "%p" with pid
  3174 // Returns true if all of the source pointed by src has been copied over to
  3175 // the destination buffer pointed by buf. Otherwise, returns false.
  3176 // Notes:
  3177 // 1. If the length (buflen) of the destination buffer excluding the
  3178 // NULL terminator character is not long enough for holding the expanded
  3179 // pid characters, it also returns false instead of returning the partially
  3180 // expanded one.
  3181 // 2. The passed in "buflen" should be large enough to hold the null terminator.
  3182 bool Arguments::copy_expand_pid(const char* src, size_t srclen,
  3183                                 char* buf, size_t buflen) {
  3184   const char* p = src;
  3185   char* b = buf;
  3186   const char* src_end = &src[srclen];
  3187   char* buf_end = &buf[buflen - 1];
  3189   while (p < src_end && b < buf_end) {
  3190     if (*p == '%') {
  3191       switch (*(++p)) {
  3192       case '%':         // "%%" ==> "%"
  3193         *b++ = *p++;
  3194         break;
  3195       case 'p':  {       //  "%p" ==> current process id
  3196         // buf_end points to the character before the last character so
  3197         // that we could write '\0' to the end of the buffer.
  3198         size_t buf_sz = buf_end - b + 1;
  3199         int ret = jio_snprintf(b, buf_sz, "%d", os::current_process_id());
  3201         // if jio_snprintf fails or the buffer is not long enough to hold
  3202         // the expanded pid, returns false.
  3203         if (ret < 0 || ret >= (int)buf_sz) {
  3204           return false;
  3205         } else {
  3206           b += ret;
  3207           assert(*b == '\0', "fail in copy_expand_pid");
  3208           if (p == src_end && b == buf_end + 1) {
  3209             // reach the end of the buffer.
  3210             return true;
  3213         p++;
  3214         break;
  3216       default :
  3217         *b++ = '%';
  3219     } else {
  3220       *b++ = *p++;
  3223   *b = '\0';
  3224   return (p == src_end); // return false if not all of the source was copied

mercurial