src/share/vm/runtime/arguments.cpp

Mon, 28 Feb 2011 15:35:45 -0800

author
rottenha
date
Mon, 28 Feb 2011 15:35:45 -0800
changeset 2586
23ae54207126
parent 2584
da091bb67459
child 2607
8c9c9ee30d71
child 2613
9f44e9aad2d9
child 2644
a2c2eac1ca62
permissions
-rw-r--r--

Merge

     1 /*
     2  * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     8  *
     9  * This code is distributed in the hope that it will be useful, but WITHOUT
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    12  * version 2 for more details (a copy is included in the LICENSE file that
    13  * accompanied this code).
    14  *
    15  * You should have received a copy of the GNU General Public License version
    16  * 2 along with this work; if not, write to the Free Software Foundation,
    17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    18  *
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    22  *
    23  */
    25 #include "precompiled.hpp"
    26 #include "classfile/javaAssertions.hpp"
    27 #include "compiler/compilerOracle.hpp"
    28 #include "memory/allocation.inline.hpp"
    29 #include "memory/cardTableRS.hpp"
    30 #include "memory/referenceProcessor.hpp"
    31 #include "memory/universe.inline.hpp"
    32 #include "oops/oop.inline.hpp"
    33 #include "prims/jvmtiExport.hpp"
    34 #include "runtime/arguments.hpp"
    35 #include "runtime/globals_extension.hpp"
    36 #include "runtime/java.hpp"
    37 #include "services/management.hpp"
    38 #include "utilities/defaultStream.hpp"
    39 #include "utilities/taskqueue.hpp"
    40 #ifdef TARGET_ARCH_x86
    41 # include "vm_version_x86.hpp"
    42 #endif
    43 #ifdef TARGET_ARCH_sparc
    44 # include "vm_version_sparc.hpp"
    45 #endif
    46 #ifdef TARGET_ARCH_zero
    47 # include "vm_version_zero.hpp"
    48 #endif
    49 #ifdef TARGET_OS_FAMILY_linux
    50 # include "os_linux.inline.hpp"
    51 #endif
    52 #ifdef TARGET_OS_FAMILY_solaris
    53 # include "os_solaris.inline.hpp"
    54 #endif
    55 #ifdef TARGET_OS_FAMILY_windows
    56 # include "os_windows.inline.hpp"
    57 #endif
    58 #ifndef SERIALGC
    59 #include "gc_implementation/concurrentMarkSweep/compactibleFreeListSpace.hpp"
    60 #endif
    62 #define DEFAULT_VENDOR_URL_BUG "http://java.sun.com/webapps/bugreport/crash.jsp"
    63 #define DEFAULT_JAVA_LAUNCHER  "generic"
    65 char**  Arguments::_jvm_flags_array             = NULL;
    66 int     Arguments::_num_jvm_flags               = 0;
    67 char**  Arguments::_jvm_args_array              = NULL;
    68 int     Arguments::_num_jvm_args                = 0;
    69 char*  Arguments::_java_command                 = NULL;
    70 SystemProperty* Arguments::_system_properties   = NULL;
    71 const char*  Arguments::_gc_log_filename        = NULL;
    72 bool   Arguments::_has_profile                  = false;
    73 bool   Arguments::_has_alloc_profile            = false;
    74 uintx  Arguments::_min_heap_size                = 0;
    75 Arguments::Mode Arguments::_mode                = _mixed;
    76 bool   Arguments::_java_compiler                = false;
    77 bool   Arguments::_xdebug_mode                  = false;
    78 const char*  Arguments::_java_vendor_url_bug    = DEFAULT_VENDOR_URL_BUG;
    79 const char*  Arguments::_sun_java_launcher      = DEFAULT_JAVA_LAUNCHER;
    80 int    Arguments::_sun_java_launcher_pid        = -1;
    81 bool   Arguments::_created_by_gamma_launcher    = false;
    83 // These parameters are reset in method parse_vm_init_args(JavaVMInitArgs*)
    84 bool   Arguments::_AlwaysCompileLoopMethods     = AlwaysCompileLoopMethods;
    85 bool   Arguments::_UseOnStackReplacement        = UseOnStackReplacement;
    86 bool   Arguments::_BackgroundCompilation        = BackgroundCompilation;
    87 bool   Arguments::_ClipInlining                 = ClipInlining;
    89 char*  Arguments::SharedArchivePath             = NULL;
    91 AgentLibraryList Arguments::_libraryList;
    92 AgentLibraryList Arguments::_agentList;
    94 abort_hook_t     Arguments::_abort_hook         = NULL;
    95 exit_hook_t      Arguments::_exit_hook          = NULL;
    96 vfprintf_hook_t  Arguments::_vfprintf_hook      = NULL;
    99 SystemProperty *Arguments::_java_ext_dirs = NULL;
   100 SystemProperty *Arguments::_java_endorsed_dirs = NULL;
   101 SystemProperty *Arguments::_sun_boot_library_path = NULL;
   102 SystemProperty *Arguments::_java_library_path = NULL;
   103 SystemProperty *Arguments::_java_home = NULL;
   104 SystemProperty *Arguments::_java_class_path = NULL;
   105 SystemProperty *Arguments::_sun_boot_class_path = NULL;
   107 char* Arguments::_meta_index_path = NULL;
   108 char* Arguments::_meta_index_dir = NULL;
   110 static bool force_client_mode = false;
   112 // Check if head of 'option' matches 'name', and sets 'tail' remaining part of option string
   114 static bool match_option(const JavaVMOption *option, const char* name,
   115                          const char** tail) {
   116   int len = (int)strlen(name);
   117   if (strncmp(option->optionString, name, len) == 0) {
   118     *tail = option->optionString + len;
   119     return true;
   120   } else {
   121     return false;
   122   }
   123 }
   125 static void logOption(const char* opt) {
   126   if (PrintVMOptions) {
   127     jio_fprintf(defaultStream::output_stream(), "VM option '%s'\n", opt);
   128   }
   129 }
   131 // Process java launcher properties.
   132 void Arguments::process_sun_java_launcher_properties(JavaVMInitArgs* args) {
   133   // See if sun.java.launcher or sun.java.launcher.pid is defined.
   134   // Must do this before setting up other system properties,
   135   // as some of them may depend on launcher type.
   136   for (int index = 0; index < args->nOptions; index++) {
   137     const JavaVMOption* option = args->options + index;
   138     const char* tail;
   140     if (match_option(option, "-Dsun.java.launcher=", &tail)) {
   141       process_java_launcher_argument(tail, option->extraInfo);
   142       continue;
   143     }
   144     if (match_option(option, "-Dsun.java.launcher.pid=", &tail)) {
   145       _sun_java_launcher_pid = atoi(tail);
   146       continue;
   147     }
   148   }
   149 }
   151 // Initialize system properties key and value.
   152 void Arguments::init_system_properties() {
   154   PropertyList_add(&_system_properties, new SystemProperty("java.vm.specification.name",
   155                                                                  "Java Virtual Machine Specification",  false));
   156   PropertyList_add(&_system_properties, new SystemProperty("java.vm.version", VM_Version::vm_release(),  false));
   157   PropertyList_add(&_system_properties, new SystemProperty("java.vm.name", VM_Version::vm_name(),  false));
   158   PropertyList_add(&_system_properties, new SystemProperty("java.vm.info", VM_Version::vm_info_string(),  true));
   160   // following are JVMTI agent writeable properties.
   161   // Properties values are set to NULL and they are
   162   // os specific they are initialized in os::init_system_properties_values().
   163   _java_ext_dirs = new SystemProperty("java.ext.dirs", NULL,  true);
   164   _java_endorsed_dirs = new SystemProperty("java.endorsed.dirs", NULL,  true);
   165   _sun_boot_library_path = new SystemProperty("sun.boot.library.path", NULL,  true);
   166   _java_library_path = new SystemProperty("java.library.path", NULL,  true);
   167   _java_home =  new SystemProperty("java.home", NULL,  true);
   168   _sun_boot_class_path = new SystemProperty("sun.boot.class.path", NULL,  true);
   170   _java_class_path = new SystemProperty("java.class.path", "",  true);
   172   // Add to System Property list.
   173   PropertyList_add(&_system_properties, _java_ext_dirs);
   174   PropertyList_add(&_system_properties, _java_endorsed_dirs);
   175   PropertyList_add(&_system_properties, _sun_boot_library_path);
   176   PropertyList_add(&_system_properties, _java_library_path);
   177   PropertyList_add(&_system_properties, _java_home);
   178   PropertyList_add(&_system_properties, _java_class_path);
   179   PropertyList_add(&_system_properties, _sun_boot_class_path);
   181   // Set OS specific system properties values
   182   os::init_system_properties_values();
   183 }
   186   // Update/Initialize System properties after JDK version number is known
   187 void Arguments::init_version_specific_system_properties() {
   188   enum { bufsz = 16 };
   189   char buffer[bufsz];
   190   const char* spec_vendor = "Sun Microsystems Inc.";
   191   uint32_t spec_version = 0;
   193   if (JDK_Version::is_gte_jdk17x_version()) {
   194     spec_vendor = "Oracle Corporation";
   195     spec_version = JDK_Version::current().major_version();
   196   }
   197   jio_snprintf(buffer, bufsz, "1." UINT32_FORMAT, spec_version);
   199   PropertyList_add(&_system_properties,
   200       new SystemProperty("java.vm.specification.vendor",  spec_vendor, false));
   201   PropertyList_add(&_system_properties,
   202       new SystemProperty("java.vm.specification.version", buffer, false));
   203   PropertyList_add(&_system_properties,
   204       new SystemProperty("java.vm.vendor", VM_Version::vm_vendor(),  false));
   205 }
   207 /**
   208  * Provide a slightly more user-friendly way of eliminating -XX flags.
   209  * When a flag is eliminated, it can be added to this list in order to
   210  * continue accepting this flag on the command-line, while issuing a warning
   211  * and ignoring the value.  Once the JDK version reaches the 'accept_until'
   212  * limit, we flatly refuse to admit the existence of the flag.  This allows
   213  * a flag to die correctly over JDK releases using HSX.
   214  */
   215 typedef struct {
   216   const char* name;
   217   JDK_Version obsoleted_in; // when the flag went away
   218   JDK_Version accept_until; // which version to start denying the existence
   219 } ObsoleteFlag;
   221 static ObsoleteFlag obsolete_jvm_flags[] = {
   222   { "UseTrainGC",                    JDK_Version::jdk(5), JDK_Version::jdk(7) },
   223   { "UseSpecialLargeObjectHandling", JDK_Version::jdk(5), JDK_Version::jdk(7) },
   224   { "UseOversizedCarHandling",       JDK_Version::jdk(5), JDK_Version::jdk(7) },
   225   { "TraceCarAllocation",            JDK_Version::jdk(5), JDK_Version::jdk(7) },
   226   { "PrintTrainGCProcessingStats",   JDK_Version::jdk(5), JDK_Version::jdk(7) },
   227   { "LogOfCarSpaceSize",             JDK_Version::jdk(5), JDK_Version::jdk(7) },
   228   { "OversizedCarThreshold",         JDK_Version::jdk(5), JDK_Version::jdk(7) },
   229   { "MinTickInterval",               JDK_Version::jdk(5), JDK_Version::jdk(7) },
   230   { "DefaultTickInterval",           JDK_Version::jdk(5), JDK_Version::jdk(7) },
   231   { "MaxTickInterval",               JDK_Version::jdk(5), JDK_Version::jdk(7) },
   232   { "DelayTickAdjustment",           JDK_Version::jdk(5), JDK_Version::jdk(7) },
   233   { "ProcessingToTenuringRatio",     JDK_Version::jdk(5), JDK_Version::jdk(7) },
   234   { "MinTrainLength",                JDK_Version::jdk(5), JDK_Version::jdk(7) },
   235   { "AppendRatio",         JDK_Version::jdk_update(6,10), JDK_Version::jdk(7) },
   236   { "DefaultMaxRAM",       JDK_Version::jdk_update(6,18), JDK_Version::jdk(7) },
   237   { "DefaultInitialRAMFraction",
   238                            JDK_Version::jdk_update(6,18), JDK_Version::jdk(7) },
   239   { "UseDepthFirstScavengeOrder",
   240                            JDK_Version::jdk_update(6,22), JDK_Version::jdk(7) },
   241   { "HandlePromotionFailure",
   242                            JDK_Version::jdk_update(6,24), JDK_Version::jdk(8) },
   243   { "MaxLiveObjectEvacuationRatio",
   244                            JDK_Version::jdk_update(6,24), JDK_Version::jdk(8) },
   245   { NULL, JDK_Version(0), JDK_Version(0) }
   246 };
   248 // Returns true if the flag is obsolete and fits into the range specified
   249 // for being ignored.  In the case that the flag is ignored, the 'version'
   250 // value is filled in with the version number when the flag became
   251 // obsolete so that that value can be displayed to the user.
   252 bool Arguments::is_newly_obsolete(const char *s, JDK_Version* version) {
   253   int i = 0;
   254   assert(version != NULL, "Must provide a version buffer");
   255   while (obsolete_jvm_flags[i].name != NULL) {
   256     const ObsoleteFlag& flag_status = obsolete_jvm_flags[i];
   257     // <flag>=xxx form
   258     // [-|+]<flag> form
   259     if ((strncmp(flag_status.name, s, strlen(flag_status.name)) == 0) ||
   260         ((s[0] == '+' || s[0] == '-') &&
   261         (strncmp(flag_status.name, &s[1], strlen(flag_status.name)) == 0))) {
   262       if (JDK_Version::current().compare(flag_status.accept_until) == -1) {
   263           *version = flag_status.obsoleted_in;
   264           return true;
   265       }
   266     }
   267     i++;
   268   }
   269   return false;
   270 }
   272 // Constructs the system class path (aka boot class path) from the following
   273 // components, in order:
   274 //
   275 //     prefix           // from -Xbootclasspath/p:...
   276 //     endorsed         // the expansion of -Djava.endorsed.dirs=...
   277 //     base             // from os::get_system_properties() or -Xbootclasspath=
   278 //     suffix           // from -Xbootclasspath/a:...
   279 //
   280 // java.endorsed.dirs is a list of directories; any jar or zip files in the
   281 // directories are added to the sysclasspath just before the base.
   282 //
   283 // This could be AllStatic, but it isn't needed after argument processing is
   284 // complete.
   285 class SysClassPath: public StackObj {
   286 public:
   287   SysClassPath(const char* base);
   288   ~SysClassPath();
   290   inline void set_base(const char* base);
   291   inline void add_prefix(const char* prefix);
   292   inline void add_suffix_to_prefix(const char* suffix);
   293   inline void add_suffix(const char* suffix);
   294   inline void reset_path(const char* base);
   296   // Expand the jar/zip files in each directory listed by the java.endorsed.dirs
   297   // property.  Must be called after all command-line arguments have been
   298   // processed (in particular, -Djava.endorsed.dirs=...) and before calling
   299   // combined_path().
   300   void expand_endorsed();
   302   inline const char* get_base()     const { return _items[_scp_base]; }
   303   inline const char* get_prefix()   const { return _items[_scp_prefix]; }
   304   inline const char* get_suffix()   const { return _items[_scp_suffix]; }
   305   inline const char* get_endorsed() const { return _items[_scp_endorsed]; }
   307   // Combine all the components into a single c-heap-allocated string; caller
   308   // must free the string if/when no longer needed.
   309   char* combined_path();
   311 private:
   312   // Utility routines.
   313   static char* add_to_path(const char* path, const char* str, bool prepend);
   314   static char* add_jars_to_path(char* path, const char* directory);
   316   inline void reset_item_at(int index);
   318   // Array indices for the items that make up the sysclasspath.  All except the
   319   // base are allocated in the C heap and freed by this class.
   320   enum {
   321     _scp_prefix,        // from -Xbootclasspath/p:...
   322     _scp_endorsed,      // the expansion of -Djava.endorsed.dirs=...
   323     _scp_base,          // the default sysclasspath
   324     _scp_suffix,        // from -Xbootclasspath/a:...
   325     _scp_nitems         // the number of items, must be last.
   326   };
   328   const char* _items[_scp_nitems];
   329   DEBUG_ONLY(bool _expansion_done;)
   330 };
   332 SysClassPath::SysClassPath(const char* base) {
   333   memset(_items, 0, sizeof(_items));
   334   _items[_scp_base] = base;
   335   DEBUG_ONLY(_expansion_done = false;)
   336 }
   338 SysClassPath::~SysClassPath() {
   339   // Free everything except the base.
   340   for (int i = 0; i < _scp_nitems; ++i) {
   341     if (i != _scp_base) reset_item_at(i);
   342   }
   343   DEBUG_ONLY(_expansion_done = false;)
   344 }
   346 inline void SysClassPath::set_base(const char* base) {
   347   _items[_scp_base] = base;
   348 }
   350 inline void SysClassPath::add_prefix(const char* prefix) {
   351   _items[_scp_prefix] = add_to_path(_items[_scp_prefix], prefix, true);
   352 }
   354 inline void SysClassPath::add_suffix_to_prefix(const char* suffix) {
   355   _items[_scp_prefix] = add_to_path(_items[_scp_prefix], suffix, false);
   356 }
   358 inline void SysClassPath::add_suffix(const char* suffix) {
   359   _items[_scp_suffix] = add_to_path(_items[_scp_suffix], suffix, false);
   360 }
   362 inline void SysClassPath::reset_item_at(int index) {
   363   assert(index < _scp_nitems && index != _scp_base, "just checking");
   364   if (_items[index] != NULL) {
   365     FREE_C_HEAP_ARRAY(char, _items[index]);
   366     _items[index] = NULL;
   367   }
   368 }
   370 inline void SysClassPath::reset_path(const char* base) {
   371   // Clear the prefix and suffix.
   372   reset_item_at(_scp_prefix);
   373   reset_item_at(_scp_suffix);
   374   set_base(base);
   375 }
   377 //------------------------------------------------------------------------------
   379 void SysClassPath::expand_endorsed() {
   380   assert(_items[_scp_endorsed] == NULL, "can only be called once.");
   382   const char* path = Arguments::get_property("java.endorsed.dirs");
   383   if (path == NULL) {
   384     path = Arguments::get_endorsed_dir();
   385     assert(path != NULL, "no default for java.endorsed.dirs");
   386   }
   388   char* expanded_path = NULL;
   389   const char separator = *os::path_separator();
   390   const char* const end = path + strlen(path);
   391   while (path < end) {
   392     const char* tmp_end = strchr(path, separator);
   393     if (tmp_end == NULL) {
   394       expanded_path = add_jars_to_path(expanded_path, path);
   395       path = end;
   396     } else {
   397       char* dirpath = NEW_C_HEAP_ARRAY(char, tmp_end - path + 1);
   398       memcpy(dirpath, path, tmp_end - path);
   399       dirpath[tmp_end - path] = '\0';
   400       expanded_path = add_jars_to_path(expanded_path, dirpath);
   401       FREE_C_HEAP_ARRAY(char, dirpath);
   402       path = tmp_end + 1;
   403     }
   404   }
   405   _items[_scp_endorsed] = expanded_path;
   406   DEBUG_ONLY(_expansion_done = true;)
   407 }
   409 // Combine the bootclasspath elements, some of which may be null, into a single
   410 // c-heap-allocated string.
   411 char* SysClassPath::combined_path() {
   412   assert(_items[_scp_base] != NULL, "empty default sysclasspath");
   413   assert(_expansion_done, "must call expand_endorsed() first.");
   415   size_t lengths[_scp_nitems];
   416   size_t total_len = 0;
   418   const char separator = *os::path_separator();
   420   // Get the lengths.
   421   int i;
   422   for (i = 0; i < _scp_nitems; ++i) {
   423     if (_items[i] != NULL) {
   424       lengths[i] = strlen(_items[i]);
   425       // Include space for the separator char (or a NULL for the last item).
   426       total_len += lengths[i] + 1;
   427     }
   428   }
   429   assert(total_len > 0, "empty sysclasspath not allowed");
   431   // Copy the _items to a single string.
   432   char* cp = NEW_C_HEAP_ARRAY(char, total_len);
   433   char* cp_tmp = cp;
   434   for (i = 0; i < _scp_nitems; ++i) {
   435     if (_items[i] != NULL) {
   436       memcpy(cp_tmp, _items[i], lengths[i]);
   437       cp_tmp += lengths[i];
   438       *cp_tmp++ = separator;
   439     }
   440   }
   441   *--cp_tmp = '\0';     // Replace the extra separator.
   442   return cp;
   443 }
   445 // Note:  path must be c-heap-allocated (or NULL); it is freed if non-null.
   446 char*
   447 SysClassPath::add_to_path(const char* path, const char* str, bool prepend) {
   448   char *cp;
   450   assert(str != NULL, "just checking");
   451   if (path == NULL) {
   452     size_t len = strlen(str) + 1;
   453     cp = NEW_C_HEAP_ARRAY(char, len);
   454     memcpy(cp, str, len);                       // copy the trailing null
   455   } else {
   456     const char separator = *os::path_separator();
   457     size_t old_len = strlen(path);
   458     size_t str_len = strlen(str);
   459     size_t len = old_len + str_len + 2;
   461     if (prepend) {
   462       cp = NEW_C_HEAP_ARRAY(char, len);
   463       char* cp_tmp = cp;
   464       memcpy(cp_tmp, str, str_len);
   465       cp_tmp += str_len;
   466       *cp_tmp = separator;
   467       memcpy(++cp_tmp, path, old_len + 1);      // copy the trailing null
   468       FREE_C_HEAP_ARRAY(char, path);
   469     } else {
   470       cp = REALLOC_C_HEAP_ARRAY(char, path, len);
   471       char* cp_tmp = cp + old_len;
   472       *cp_tmp = separator;
   473       memcpy(++cp_tmp, str, str_len + 1);       // copy the trailing null
   474     }
   475   }
   476   return cp;
   477 }
   479 // Scan the directory and append any jar or zip files found to path.
   480 // Note:  path must be c-heap-allocated (or NULL); it is freed if non-null.
   481 char* SysClassPath::add_jars_to_path(char* path, const char* directory) {
   482   DIR* dir = os::opendir(directory);
   483   if (dir == NULL) return path;
   485   char dir_sep[2] = { '\0', '\0' };
   486   size_t directory_len = strlen(directory);
   487   const char fileSep = *os::file_separator();
   488   if (directory[directory_len - 1] != fileSep) dir_sep[0] = fileSep;
   490   /* Scan the directory for jars/zips, appending them to path. */
   491   struct dirent *entry;
   492   char *dbuf = NEW_C_HEAP_ARRAY(char, os::readdir_buf_size(directory));
   493   while ((entry = os::readdir(dir, (dirent *) dbuf)) != NULL) {
   494     const char* name = entry->d_name;
   495     const char* ext = name + strlen(name) - 4;
   496     bool isJarOrZip = ext > name &&
   497       (os::file_name_strcmp(ext, ".jar") == 0 ||
   498        os::file_name_strcmp(ext, ".zip") == 0);
   499     if (isJarOrZip) {
   500       char* jarpath = NEW_C_HEAP_ARRAY(char, directory_len + 2 + strlen(name));
   501       sprintf(jarpath, "%s%s%s", directory, dir_sep, name);
   502       path = add_to_path(path, jarpath, false);
   503       FREE_C_HEAP_ARRAY(char, jarpath);
   504     }
   505   }
   506   FREE_C_HEAP_ARRAY(char, dbuf);
   507   os::closedir(dir);
   508   return path;
   509 }
   511 // Parses a memory size specification string.
   512 static bool atomull(const char *s, julong* result) {
   513   julong n = 0;
   514   int args_read = sscanf(s, os::julong_format_specifier(), &n);
   515   if (args_read != 1) {
   516     return false;
   517   }
   518   while (*s != '\0' && isdigit(*s)) {
   519     s++;
   520   }
   521   // 4705540: illegal if more characters are found after the first non-digit
   522   if (strlen(s) > 1) {
   523     return false;
   524   }
   525   switch (*s) {
   526     case 'T': case 't':
   527       *result = n * G * K;
   528       // Check for overflow.
   529       if (*result/((julong)G * K) != n) return false;
   530       return true;
   531     case 'G': case 'g':
   532       *result = n * G;
   533       if (*result/G != n) return false;
   534       return true;
   535     case 'M': case 'm':
   536       *result = n * M;
   537       if (*result/M != n) return false;
   538       return true;
   539     case 'K': case 'k':
   540       *result = n * K;
   541       if (*result/K != n) return false;
   542       return true;
   543     case '\0':
   544       *result = n;
   545       return true;
   546     default:
   547       return false;
   548   }
   549 }
   551 Arguments::ArgsRange Arguments::check_memory_size(julong size, julong min_size) {
   552   if (size < min_size) return arg_too_small;
   553   // Check that size will fit in a size_t (only relevant on 32-bit)
   554   if (size > max_uintx) return arg_too_big;
   555   return arg_in_range;
   556 }
   558 // Describe an argument out of range error
   559 void Arguments::describe_range_error(ArgsRange errcode) {
   560   switch(errcode) {
   561   case arg_too_big:
   562     jio_fprintf(defaultStream::error_stream(),
   563                 "The specified size exceeds the maximum "
   564                 "representable size.\n");
   565     break;
   566   case arg_too_small:
   567   case arg_unreadable:
   568   case arg_in_range:
   569     // do nothing for now
   570     break;
   571   default:
   572     ShouldNotReachHere();
   573   }
   574 }
   576 static bool set_bool_flag(char* name, bool value, FlagValueOrigin origin) {
   577   return CommandLineFlags::boolAtPut(name, &value, origin);
   578 }
   580 static bool set_fp_numeric_flag(char* name, char* value, FlagValueOrigin origin) {
   581   double v;
   582   if (sscanf(value, "%lf", &v) != 1) {
   583     return false;
   584   }
   586   if (CommandLineFlags::doubleAtPut(name, &v, origin)) {
   587     return true;
   588   }
   589   return false;
   590 }
   592 static bool set_numeric_flag(char* name, char* value, FlagValueOrigin origin) {
   593   julong v;
   594   intx intx_v;
   595   bool is_neg = false;
   596   // Check the sign first since atomull() parses only unsigned values.
   597   if (*value == '-') {
   598     if (!CommandLineFlags::intxAt(name, &intx_v)) {
   599       return false;
   600     }
   601     value++;
   602     is_neg = true;
   603   }
   604   if (!atomull(value, &v)) {
   605     return false;
   606   }
   607   intx_v = (intx) v;
   608   if (is_neg) {
   609     intx_v = -intx_v;
   610   }
   611   if (CommandLineFlags::intxAtPut(name, &intx_v, origin)) {
   612     return true;
   613   }
   614   uintx uintx_v = (uintx) v;
   615   if (!is_neg && CommandLineFlags::uintxAtPut(name, &uintx_v, origin)) {
   616     return true;
   617   }
   618   uint64_t uint64_t_v = (uint64_t) v;
   619   if (!is_neg && CommandLineFlags::uint64_tAtPut(name, &uint64_t_v, origin)) {
   620     return true;
   621   }
   622   return false;
   623 }
   625 static bool set_string_flag(char* name, const char* value, FlagValueOrigin origin) {
   626   if (!CommandLineFlags::ccstrAtPut(name, &value, origin))  return false;
   627   // Contract:  CommandLineFlags always returns a pointer that needs freeing.
   628   FREE_C_HEAP_ARRAY(char, value);
   629   return true;
   630 }
   632 static bool append_to_string_flag(char* name, const char* new_value, FlagValueOrigin origin) {
   633   const char* old_value = "";
   634   if (!CommandLineFlags::ccstrAt(name, &old_value))  return false;
   635   size_t old_len = old_value != NULL ? strlen(old_value) : 0;
   636   size_t new_len = strlen(new_value);
   637   const char* value;
   638   char* free_this_too = NULL;
   639   if (old_len == 0) {
   640     value = new_value;
   641   } else if (new_len == 0) {
   642     value = old_value;
   643   } else {
   644     char* buf = NEW_C_HEAP_ARRAY(char, old_len + 1 + new_len + 1);
   645     // each new setting adds another LINE to the switch:
   646     sprintf(buf, "%s\n%s", old_value, new_value);
   647     value = buf;
   648     free_this_too = buf;
   649   }
   650   (void) CommandLineFlags::ccstrAtPut(name, &value, origin);
   651   // CommandLineFlags always returns a pointer that needs freeing.
   652   FREE_C_HEAP_ARRAY(char, value);
   653   if (free_this_too != NULL) {
   654     // CommandLineFlags made its own copy, so I must delete my own temp. buffer.
   655     FREE_C_HEAP_ARRAY(char, free_this_too);
   656   }
   657   return true;
   658 }
   660 bool Arguments::parse_argument(const char* arg, FlagValueOrigin origin) {
   662   // range of acceptable characters spelled out for portability reasons
   663 #define NAME_RANGE  "[abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_]"
   664 #define BUFLEN 255
   665   char name[BUFLEN+1];
   666   char dummy;
   668   if (sscanf(arg, "-%" XSTR(BUFLEN) NAME_RANGE "%c", name, &dummy) == 1) {
   669     return set_bool_flag(name, false, origin);
   670   }
   671   if (sscanf(arg, "+%" XSTR(BUFLEN) NAME_RANGE "%c", name, &dummy) == 1) {
   672     return set_bool_flag(name, true, origin);
   673   }
   675   char punct;
   676   if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "%c", name, &punct) == 2 && punct == '=') {
   677     const char* value = strchr(arg, '=') + 1;
   678     Flag* flag = Flag::find_flag(name, strlen(name));
   679     if (flag != NULL && flag->is_ccstr()) {
   680       if (flag->ccstr_accumulates()) {
   681         return append_to_string_flag(name, value, origin);
   682       } else {
   683         if (value[0] == '\0') {
   684           value = NULL;
   685         }
   686         return set_string_flag(name, value, origin);
   687       }
   688     }
   689   }
   691   if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE ":%c", name, &punct) == 2 && punct == '=') {
   692     const char* value = strchr(arg, '=') + 1;
   693     // -XX:Foo:=xxx will reset the string flag to the given value.
   694     if (value[0] == '\0') {
   695       value = NULL;
   696     }
   697     return set_string_flag(name, value, origin);
   698   }
   700 #define SIGNED_FP_NUMBER_RANGE "[-0123456789.]"
   701 #define SIGNED_NUMBER_RANGE    "[-0123456789]"
   702 #define        NUMBER_RANGE    "[0123456789]"
   703   char value[BUFLEN + 1];
   704   char value2[BUFLEN + 1];
   705   if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "=" "%" XSTR(BUFLEN) SIGNED_NUMBER_RANGE "." "%" XSTR(BUFLEN) NUMBER_RANGE "%c", name, value, value2, &dummy) == 3) {
   706     // Looks like a floating-point number -- try again with more lenient format string
   707     if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "=" "%" XSTR(BUFLEN) SIGNED_FP_NUMBER_RANGE "%c", name, value, &dummy) == 2) {
   708       return set_fp_numeric_flag(name, value, origin);
   709     }
   710   }
   712 #define VALUE_RANGE "[-kmgtKMGT0123456789]"
   713   if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "=" "%" XSTR(BUFLEN) VALUE_RANGE "%c", name, value, &dummy) == 2) {
   714     return set_numeric_flag(name, value, origin);
   715   }
   717   return false;
   718 }
   720 void Arguments::add_string(char*** bldarray, int* count, const char* arg) {
   721   assert(bldarray != NULL, "illegal argument");
   723   if (arg == NULL) {
   724     return;
   725   }
   727   int index = *count;
   729   // expand the array and add arg to the last element
   730   (*count)++;
   731   if (*bldarray == NULL) {
   732     *bldarray = NEW_C_HEAP_ARRAY(char*, *count);
   733   } else {
   734     *bldarray = REALLOC_C_HEAP_ARRAY(char*, *bldarray, *count);
   735   }
   736   (*bldarray)[index] = strdup(arg);
   737 }
   739 void Arguments::build_jvm_args(const char* arg) {
   740   add_string(&_jvm_args_array, &_num_jvm_args, arg);
   741 }
   743 void Arguments::build_jvm_flags(const char* arg) {
   744   add_string(&_jvm_flags_array, &_num_jvm_flags, arg);
   745 }
   747 // utility function to return a string that concatenates all
   748 // strings in a given char** array
   749 const char* Arguments::build_resource_string(char** args, int count) {
   750   if (args == NULL || count == 0) {
   751     return NULL;
   752   }
   753   size_t length = strlen(args[0]) + 1; // add 1 for the null terminator
   754   for (int i = 1; i < count; i++) {
   755     length += strlen(args[i]) + 1; // add 1 for a space
   756   }
   757   char* s = NEW_RESOURCE_ARRAY(char, length);
   758   strcpy(s, args[0]);
   759   for (int j = 1; j < count; j++) {
   760     strcat(s, " ");
   761     strcat(s, args[j]);
   762   }
   763   return (const char*) s;
   764 }
   766 void Arguments::print_on(outputStream* st) {
   767   st->print_cr("VM Arguments:");
   768   if (num_jvm_flags() > 0) {
   769     st->print("jvm_flags: "); print_jvm_flags_on(st);
   770   }
   771   if (num_jvm_args() > 0) {
   772     st->print("jvm_args: "); print_jvm_args_on(st);
   773   }
   774   st->print_cr("java_command: %s", java_command() ? java_command() : "<unknown>");
   775   st->print_cr("Launcher Type: %s", _sun_java_launcher);
   776 }
   778 void Arguments::print_jvm_flags_on(outputStream* st) {
   779   if (_num_jvm_flags > 0) {
   780     for (int i=0; i < _num_jvm_flags; i++) {
   781       st->print("%s ", _jvm_flags_array[i]);
   782     }
   783     st->print_cr("");
   784   }
   785 }
   787 void Arguments::print_jvm_args_on(outputStream* st) {
   788   if (_num_jvm_args > 0) {
   789     for (int i=0; i < _num_jvm_args; i++) {
   790       st->print("%s ", _jvm_args_array[i]);
   791     }
   792     st->print_cr("");
   793   }
   794 }
   796 bool Arguments::process_argument(const char* arg,
   797     jboolean ignore_unrecognized, FlagValueOrigin origin) {
   799   JDK_Version since = JDK_Version();
   801   if (parse_argument(arg, origin)) {
   802     // do nothing
   803   } else if (is_newly_obsolete(arg, &since)) {
   804     enum { bufsize = 256 };
   805     char buffer[bufsize];
   806     since.to_string(buffer, bufsize);
   807     jio_fprintf(defaultStream::error_stream(),
   808       "Warning: The flag %s has been EOL'd as of %s and will"
   809       " be ignored\n", arg, buffer);
   810   } else {
   811     if (!ignore_unrecognized) {
   812       jio_fprintf(defaultStream::error_stream(),
   813                   "Unrecognized VM option '%s'\n", arg);
   814       // allow for commandline "commenting out" options like -XX:#+Verbose
   815       if (strlen(arg) == 0 || arg[0] != '#') {
   816         return false;
   817       }
   818     }
   819   }
   820   return true;
   821 }
   823 bool Arguments::process_settings_file(const char* file_name, bool should_exist, jboolean ignore_unrecognized) {
   824   FILE* stream = fopen(file_name, "rb");
   825   if (stream == NULL) {
   826     if (should_exist) {
   827       jio_fprintf(defaultStream::error_stream(),
   828                   "Could not open settings file %s\n", file_name);
   829       return false;
   830     } else {
   831       return true;
   832     }
   833   }
   835   char token[1024];
   836   int  pos = 0;
   838   bool in_white_space = true;
   839   bool in_comment     = false;
   840   bool in_quote       = false;
   841   char quote_c        = 0;
   842   bool result         = true;
   844   int c = getc(stream);
   845   while(c != EOF) {
   846     if (in_white_space) {
   847       if (in_comment) {
   848         if (c == '\n') in_comment = false;
   849       } else {
   850         if (c == '#') in_comment = true;
   851         else if (!isspace(c)) {
   852           in_white_space = false;
   853           token[pos++] = c;
   854         }
   855       }
   856     } else {
   857       if (c == '\n' || (!in_quote && isspace(c))) {
   858         // token ends at newline, or at unquoted whitespace
   859         // this allows a way to include spaces in string-valued options
   860         token[pos] = '\0';
   861         logOption(token);
   862         result &= process_argument(token, ignore_unrecognized, CONFIG_FILE);
   863         build_jvm_flags(token);
   864         pos = 0;
   865         in_white_space = true;
   866         in_quote = false;
   867       } else if (!in_quote && (c == '\'' || c == '"')) {
   868         in_quote = true;
   869         quote_c = c;
   870       } else if (in_quote && (c == quote_c)) {
   871         in_quote = false;
   872       } else {
   873         token[pos++] = c;
   874       }
   875     }
   876     c = getc(stream);
   877   }
   878   if (pos > 0) {
   879     token[pos] = '\0';
   880     result &= process_argument(token, ignore_unrecognized, CONFIG_FILE);
   881     build_jvm_flags(token);
   882   }
   883   fclose(stream);
   884   return result;
   885 }
   887 //=============================================================================================================
   888 // Parsing of properties (-D)
   890 const char* Arguments::get_property(const char* key) {
   891   return PropertyList_get_value(system_properties(), key);
   892 }
   894 bool Arguments::add_property(const char* prop) {
   895   const char* eq = strchr(prop, '=');
   896   char* key;
   897   // ns must be static--its address may be stored in a SystemProperty object.
   898   const static char ns[1] = {0};
   899   char* value = (char *)ns;
   901   size_t key_len = (eq == NULL) ? strlen(prop) : (eq - prop);
   902   key = AllocateHeap(key_len + 1, "add_property");
   903   strncpy(key, prop, key_len);
   904   key[key_len] = '\0';
   906   if (eq != NULL) {
   907     size_t value_len = strlen(prop) - key_len - 1;
   908     value = AllocateHeap(value_len + 1, "add_property");
   909     strncpy(value, &prop[key_len + 1], value_len + 1);
   910   }
   912   if (strcmp(key, "java.compiler") == 0) {
   913     process_java_compiler_argument(value);
   914     FreeHeap(key);
   915     if (eq != NULL) {
   916       FreeHeap(value);
   917     }
   918     return true;
   919   } else if (strcmp(key, "sun.java.command") == 0) {
   920     _java_command = value;
   922     // Record value in Arguments, but let it get passed to Java.
   923   } else if (strcmp(key, "sun.java.launcher.pid") == 0) {
   924     // launcher.pid property is private and is processed
   925     // in process_sun_java_launcher_properties();
   926     // the sun.java.launcher property is passed on to the java application
   927     FreeHeap(key);
   928     if (eq != NULL) {
   929       FreeHeap(value);
   930     }
   931     return true;
   932   } else if (strcmp(key, "java.vendor.url.bug") == 0) {
   933     // save it in _java_vendor_url_bug, so JVM fatal error handler can access
   934     // its value without going through the property list or making a Java call.
   935     _java_vendor_url_bug = value;
   936   } else if (strcmp(key, "sun.boot.library.path") == 0) {
   937     PropertyList_unique_add(&_system_properties, key, value, true);
   938     return true;
   939   }
   940   // Create new property and add at the end of the list
   941   PropertyList_unique_add(&_system_properties, key, value);
   942   return true;
   943 }
   945 //===========================================================================================================
   946 // Setting int/mixed/comp mode flags
   948 void Arguments::set_mode_flags(Mode mode) {
   949   // Set up default values for all flags.
   950   // If you add a flag to any of the branches below,
   951   // add a default value for it here.
   952   set_java_compiler(false);
   953   _mode                      = mode;
   955   // Ensure Agent_OnLoad has the correct initial values.
   956   // This may not be the final mode; mode may change later in onload phase.
   957   PropertyList_unique_add(&_system_properties, "java.vm.info",
   958                           (char*)Abstract_VM_Version::vm_info_string(), false);
   960   UseInterpreter             = true;
   961   UseCompiler                = true;
   962   UseLoopCounter             = true;
   964   // Default values may be platform/compiler dependent -
   965   // use the saved values
   966   ClipInlining               = Arguments::_ClipInlining;
   967   AlwaysCompileLoopMethods   = Arguments::_AlwaysCompileLoopMethods;
   968   UseOnStackReplacement      = Arguments::_UseOnStackReplacement;
   969   BackgroundCompilation      = Arguments::_BackgroundCompilation;
   971   // Change from defaults based on mode
   972   switch (mode) {
   973   default:
   974     ShouldNotReachHere();
   975     break;
   976   case _int:
   977     UseCompiler              = false;
   978     UseLoopCounter           = false;
   979     AlwaysCompileLoopMethods = false;
   980     UseOnStackReplacement    = false;
   981     break;
   982   case _mixed:
   983     // same as default
   984     break;
   985   case _comp:
   986     UseInterpreter           = false;
   987     BackgroundCompilation    = false;
   988     ClipInlining             = false;
   989     break;
   990   }
   991 }
   993 // Conflict: required to use shared spaces (-Xshare:on), but
   994 // incompatible command line options were chosen.
   996 static void no_shared_spaces() {
   997   if (RequireSharedSpaces) {
   998     jio_fprintf(defaultStream::error_stream(),
   999       "Class data sharing is inconsistent with other specified options.\n");
  1000     vm_exit_during_initialization("Unable to use shared archive.", NULL);
  1001   } else {
  1002     FLAG_SET_DEFAULT(UseSharedSpaces, false);
  1006 void Arguments::check_compressed_oops_compat() {
  1007 #ifdef _LP64
  1008   assert(UseCompressedOops, "Precondition");
  1009   // Is it on by default or set on ergonomically
  1010   bool is_on_by_default = FLAG_IS_DEFAULT(UseCompressedOops) || FLAG_IS_ERGO(UseCompressedOops);
  1012   // If dumping an archive or forcing its use, disable compressed oops if possible
  1013   if (DumpSharedSpaces || RequireSharedSpaces) {
  1014     if (is_on_by_default) {
  1015       FLAG_SET_DEFAULT(UseCompressedOops, false);
  1016       return;
  1017     } else {
  1018       vm_exit_during_initialization(
  1019         "Class Data Sharing is not supported with compressed oops yet", NULL);
  1021   } else if (UseSharedSpaces) {
  1022     // UseSharedSpaces is on by default. With compressed oops, we turn it off.
  1023     FLAG_SET_DEFAULT(UseSharedSpaces, false);
  1025 #endif
  1028 void Arguments::set_tiered_flags() {
  1029   if (FLAG_IS_DEFAULT(CompilationPolicyChoice)) {
  1030     FLAG_SET_DEFAULT(CompilationPolicyChoice, 2);
  1032   if (CompilationPolicyChoice < 2) {
  1033     vm_exit_during_initialization(
  1034       "Incompatible compilation policy selected", NULL);
  1036   // Increase the code cache size - tiered compiles a lot more.
  1037   if (FLAG_IS_DEFAULT(ReservedCodeCacheSize)) {
  1038     FLAG_SET_DEFAULT(ReservedCodeCacheSize, ReservedCodeCacheSize * 2);
  1042 #ifndef KERNEL
  1043 // If the user has chosen ParallelGCThreads > 0, we set UseParNewGC
  1044 // if it's not explictly set or unset. If the user has chosen
  1045 // UseParNewGC and not explicitly set ParallelGCThreads we
  1046 // set it, unless this is a single cpu machine.
  1047 void Arguments::set_parnew_gc_flags() {
  1048   assert(!UseSerialGC && !UseParallelOldGC && !UseParallelGC && !UseG1GC,
  1049          "control point invariant");
  1050   assert(UseParNewGC, "Error");
  1052   // Turn off AdaptiveSizePolicy by default for parnew until it is
  1053   // complete.
  1054   if (FLAG_IS_DEFAULT(UseAdaptiveSizePolicy)) {
  1055     FLAG_SET_DEFAULT(UseAdaptiveSizePolicy, false);
  1058   if (ParallelGCThreads == 0) {
  1059     FLAG_SET_DEFAULT(ParallelGCThreads,
  1060                      Abstract_VM_Version::parallel_worker_threads());
  1061     if (ParallelGCThreads == 1) {
  1062       FLAG_SET_DEFAULT(UseParNewGC, false);
  1063       FLAG_SET_DEFAULT(ParallelGCThreads, 0);
  1066   if (UseParNewGC) {
  1067     // CDS doesn't work with ParNew yet
  1068     no_shared_spaces();
  1070     // By default YoungPLABSize and OldPLABSize are set to 4096 and 1024 respectively,
  1071     // these settings are default for Parallel Scavenger. For ParNew+Tenured configuration
  1072     // we set them to 1024 and 1024.
  1073     // See CR 6362902.
  1074     if (FLAG_IS_DEFAULT(YoungPLABSize)) {
  1075       FLAG_SET_DEFAULT(YoungPLABSize, (intx)1024);
  1077     if (FLAG_IS_DEFAULT(OldPLABSize)) {
  1078       FLAG_SET_DEFAULT(OldPLABSize, (intx)1024);
  1081     // AlwaysTenure flag should make ParNew promote all at first collection.
  1082     // See CR 6362902.
  1083     if (AlwaysTenure) {
  1084       FLAG_SET_CMDLINE(intx, MaxTenuringThreshold, 0);
  1086     // When using compressed oops, we use local overflow stacks,
  1087     // rather than using a global overflow list chained through
  1088     // the klass word of the object's pre-image.
  1089     if (UseCompressedOops && !ParGCUseLocalOverflow) {
  1090       if (!FLAG_IS_DEFAULT(ParGCUseLocalOverflow)) {
  1091         warning("Forcing +ParGCUseLocalOverflow: needed if using compressed references");
  1093       FLAG_SET_DEFAULT(ParGCUseLocalOverflow, true);
  1095     assert(ParGCUseLocalOverflow || !UseCompressedOops, "Error");
  1099 // Adjust some sizes to suit CMS and/or ParNew needs; these work well on
  1100 // sparc/solaris for certain applications, but would gain from
  1101 // further optimization and tuning efforts, and would almost
  1102 // certainly gain from analysis of platform and environment.
  1103 void Arguments::set_cms_and_parnew_gc_flags() {
  1104   assert(!UseSerialGC && !UseParallelOldGC && !UseParallelGC, "Error");
  1105   assert(UseConcMarkSweepGC, "CMS is expected to be on here");
  1107   // If we are using CMS, we prefer to UseParNewGC,
  1108   // unless explicitly forbidden.
  1109   if (FLAG_IS_DEFAULT(UseParNewGC)) {
  1110     FLAG_SET_ERGO(bool, UseParNewGC, true);
  1113   // Turn off AdaptiveSizePolicy by default for cms until it is
  1114   // complete.
  1115   if (FLAG_IS_DEFAULT(UseAdaptiveSizePolicy)) {
  1116     FLAG_SET_DEFAULT(UseAdaptiveSizePolicy, false);
  1119   // In either case, adjust ParallelGCThreads and/or UseParNewGC
  1120   // as needed.
  1121   if (UseParNewGC) {
  1122     set_parnew_gc_flags();
  1125   // Now make adjustments for CMS
  1126   size_t young_gen_per_worker;
  1127   intx new_ratio;
  1128   size_t min_new_default;
  1129   intx tenuring_default;
  1130   if (CMSUseOldDefaults) {  // old defaults: "old" as of 6.0
  1131     if FLAG_IS_DEFAULT(CMSYoungGenPerWorker) {
  1132       FLAG_SET_ERGO(intx, CMSYoungGenPerWorker, 4*M);
  1134     young_gen_per_worker = 4*M;
  1135     new_ratio = (intx)15;
  1136     min_new_default = 4*M;
  1137     tenuring_default = (intx)0;
  1138   } else { // new defaults: "new" as of 6.0
  1139     young_gen_per_worker = CMSYoungGenPerWorker;
  1140     new_ratio = (intx)7;
  1141     min_new_default = 16*M;
  1142     tenuring_default = (intx)4;
  1145   // Preferred young gen size for "short" pauses
  1146   const uintx parallel_gc_threads =
  1147     (ParallelGCThreads == 0 ? 1 : ParallelGCThreads);
  1148   const size_t preferred_max_new_size_unaligned =
  1149     ScaleForWordSize(young_gen_per_worker * parallel_gc_threads);
  1150   const size_t preferred_max_new_size =
  1151     align_size_up(preferred_max_new_size_unaligned, os::vm_page_size());
  1153   // Unless explicitly requested otherwise, size young gen
  1154   // for "short" pauses ~ 4M*ParallelGCThreads
  1156   // If either MaxNewSize or NewRatio is set on the command line,
  1157   // assume the user is trying to set the size of the young gen.
  1159   if (FLAG_IS_DEFAULT(MaxNewSize) && FLAG_IS_DEFAULT(NewRatio)) {
  1161     // Set MaxNewSize to our calculated preferred_max_new_size unless
  1162     // NewSize was set on the command line and it is larger than
  1163     // preferred_max_new_size.
  1164     if (!FLAG_IS_DEFAULT(NewSize)) {   // NewSize explicitly set at command-line
  1165       FLAG_SET_ERGO(uintx, MaxNewSize, MAX2(NewSize, preferred_max_new_size));
  1166     } else {
  1167       FLAG_SET_ERGO(uintx, MaxNewSize, preferred_max_new_size);
  1169     if (PrintGCDetails && Verbose) {
  1170       // Too early to use gclog_or_tty
  1171       tty->print_cr("Ergo set MaxNewSize: " SIZE_FORMAT, MaxNewSize);
  1174     // Unless explicitly requested otherwise, prefer a large
  1175     // Old to Young gen size so as to shift the collection load
  1176     // to the old generation concurrent collector
  1178     // If this is only guarded by FLAG_IS_DEFAULT(NewRatio)
  1179     // then NewSize and OldSize may be calculated.  That would
  1180     // generally lead to some differences with ParNewGC for which
  1181     // there was no obvious reason.  Also limit to the case where
  1182     // MaxNewSize has not been set.
  1184     FLAG_SET_ERGO(intx, NewRatio, MAX2(NewRatio, new_ratio));
  1186     // Code along this path potentially sets NewSize and OldSize
  1188     // Calculate the desired minimum size of the young gen but if
  1189     // NewSize has been set on the command line, use it here since
  1190     // it should be the final value.
  1191     size_t min_new;
  1192     if (FLAG_IS_DEFAULT(NewSize)) {
  1193       min_new = align_size_up(ScaleForWordSize(min_new_default),
  1194                               os::vm_page_size());
  1195     } else {
  1196       min_new = NewSize;
  1198     size_t prev_initial_size = InitialHeapSize;
  1199     if (prev_initial_size != 0 && prev_initial_size < min_new + OldSize) {
  1200       FLAG_SET_ERGO(uintx, InitialHeapSize, min_new + OldSize);
  1201       // Currently minimum size and the initial heap sizes are the same.
  1202       set_min_heap_size(InitialHeapSize);
  1203       if (PrintGCDetails && Verbose) {
  1204         warning("Initial heap size increased to " SIZE_FORMAT " M from "
  1205                 SIZE_FORMAT " M; use -XX:NewSize=... for finer control.",
  1206                 InitialHeapSize/M, prev_initial_size/M);
  1210     // MaxHeapSize is aligned down in collectorPolicy
  1211     size_t max_heap =
  1212       align_size_down(MaxHeapSize,
  1213                       CardTableRS::ct_max_alignment_constraint());
  1215     if (PrintGCDetails && Verbose) {
  1216       // Too early to use gclog_or_tty
  1217       tty->print_cr("CMS set min_heap_size: " SIZE_FORMAT
  1218            " initial_heap_size:  " SIZE_FORMAT
  1219            " max_heap: " SIZE_FORMAT,
  1220            min_heap_size(), InitialHeapSize, max_heap);
  1222     if (max_heap > min_new) {
  1223       // Unless explicitly requested otherwise, make young gen
  1224       // at least min_new, and at most preferred_max_new_size.
  1225       if (FLAG_IS_DEFAULT(NewSize)) {
  1226         FLAG_SET_ERGO(uintx, NewSize, MAX2(NewSize, min_new));
  1227         FLAG_SET_ERGO(uintx, NewSize, MIN2(preferred_max_new_size, NewSize));
  1228         if (PrintGCDetails && Verbose) {
  1229           // Too early to use gclog_or_tty
  1230           tty->print_cr("Ergo set NewSize: " SIZE_FORMAT, NewSize);
  1233       // Unless explicitly requested otherwise, size old gen
  1234       // so that it's at least 3X of NewSize to begin with;
  1235       // later NewRatio will decide how it grows; see above.
  1236       if (FLAG_IS_DEFAULT(OldSize)) {
  1237         if (max_heap > NewSize) {
  1238           FLAG_SET_ERGO(uintx, OldSize, MIN2(3*NewSize, max_heap - NewSize));
  1239           if (PrintGCDetails && Verbose) {
  1240             // Too early to use gclog_or_tty
  1241             tty->print_cr("Ergo set OldSize: " SIZE_FORMAT, OldSize);
  1247   // Unless explicitly requested otherwise, definitely
  1248   // promote all objects surviving "tenuring_default" scavenges.
  1249   if (FLAG_IS_DEFAULT(MaxTenuringThreshold) &&
  1250       FLAG_IS_DEFAULT(SurvivorRatio)) {
  1251     FLAG_SET_ERGO(intx, MaxTenuringThreshold, tenuring_default);
  1253   // If we decided above (or user explicitly requested)
  1254   // `promote all' (via MaxTenuringThreshold := 0),
  1255   // prefer minuscule survivor spaces so as not to waste
  1256   // space for (non-existent) survivors
  1257   if (FLAG_IS_DEFAULT(SurvivorRatio) && MaxTenuringThreshold == 0) {
  1258     FLAG_SET_ERGO(intx, SurvivorRatio, MAX2((intx)1024, SurvivorRatio));
  1260   // If OldPLABSize is set and CMSParPromoteBlocksToClaim is not,
  1261   // set CMSParPromoteBlocksToClaim equal to OldPLABSize.
  1262   // This is done in order to make ParNew+CMS configuration to work
  1263   // with YoungPLABSize and OldPLABSize options.
  1264   // See CR 6362902.
  1265   if (!FLAG_IS_DEFAULT(OldPLABSize)) {
  1266     if (FLAG_IS_DEFAULT(CMSParPromoteBlocksToClaim)) {
  1267       // OldPLABSize is not the default value but CMSParPromoteBlocksToClaim
  1268       // is.  In this situtation let CMSParPromoteBlocksToClaim follow
  1269       // the value (either from the command line or ergonomics) of
  1270       // OldPLABSize.  Following OldPLABSize is an ergonomics decision.
  1271       FLAG_SET_ERGO(uintx, CMSParPromoteBlocksToClaim, OldPLABSize);
  1272     } else {
  1273       // OldPLABSize and CMSParPromoteBlocksToClaim are both set.
  1274       // CMSParPromoteBlocksToClaim is a collector-specific flag, so
  1275       // we'll let it to take precedence.
  1276       jio_fprintf(defaultStream::error_stream(),
  1277                   "Both OldPLABSize and CMSParPromoteBlocksToClaim"
  1278                   " options are specified for the CMS collector."
  1279                   " CMSParPromoteBlocksToClaim will take precedence.\n");
  1282   if (!FLAG_IS_DEFAULT(ResizeOldPLAB) && !ResizeOldPLAB) {
  1283     // OldPLAB sizing manually turned off: Use a larger default setting,
  1284     // unless it was manually specified. This is because a too-low value
  1285     // will slow down scavenges.
  1286     if (FLAG_IS_DEFAULT(CMSParPromoteBlocksToClaim)) {
  1287       FLAG_SET_ERGO(uintx, CMSParPromoteBlocksToClaim, 50); // default value before 6631166
  1290   // Overwrite OldPLABSize which is the variable we will internally use everywhere.
  1291   FLAG_SET_ERGO(uintx, OldPLABSize, CMSParPromoteBlocksToClaim);
  1292   // If either of the static initialization defaults have changed, note this
  1293   // modification.
  1294   if (!FLAG_IS_DEFAULT(CMSParPromoteBlocksToClaim) || !FLAG_IS_DEFAULT(OldPLABWeight)) {
  1295     CFLS_LAB::modify_initialization(OldPLABSize, OldPLABWeight);
  1297   if (PrintGCDetails && Verbose) {
  1298     tty->print_cr("MarkStackSize: %uk  MarkStackSizeMax: %uk",
  1299       MarkStackSize / K, MarkStackSizeMax / K);
  1300     tty->print_cr("ConcGCThreads: %u", ConcGCThreads);
  1303 #endif // KERNEL
  1305 void set_object_alignment() {
  1306   // Object alignment.
  1307   assert(is_power_of_2(ObjectAlignmentInBytes), "ObjectAlignmentInBytes must be power of 2");
  1308   MinObjAlignmentInBytes     = ObjectAlignmentInBytes;
  1309   assert(MinObjAlignmentInBytes >= HeapWordsPerLong * HeapWordSize, "ObjectAlignmentInBytes value is too small");
  1310   MinObjAlignment            = MinObjAlignmentInBytes / HeapWordSize;
  1311   assert(MinObjAlignmentInBytes == MinObjAlignment * HeapWordSize, "ObjectAlignmentInBytes value is incorrect");
  1312   MinObjAlignmentInBytesMask = MinObjAlignmentInBytes - 1;
  1314   LogMinObjAlignmentInBytes  = exact_log2(ObjectAlignmentInBytes);
  1315   LogMinObjAlignment         = LogMinObjAlignmentInBytes - LogHeapWordSize;
  1317   // Oop encoding heap max
  1318   OopEncodingHeapMax = (uint64_t(max_juint) + 1) << LogMinObjAlignmentInBytes;
  1320 #ifndef KERNEL
  1321   // Set CMS global values
  1322   CompactibleFreeListSpace::set_cms_values();
  1323 #endif // KERNEL
  1326 bool verify_object_alignment() {
  1327   // Object alignment.
  1328   if (!is_power_of_2(ObjectAlignmentInBytes)) {
  1329     jio_fprintf(defaultStream::error_stream(),
  1330                 "error: ObjectAlignmentInBytes=%d must be power of 2\n",
  1331                 (int)ObjectAlignmentInBytes);
  1332     return false;
  1334   if ((int)ObjectAlignmentInBytes < BytesPerLong) {
  1335     jio_fprintf(defaultStream::error_stream(),
  1336                 "error: ObjectAlignmentInBytes=%d must be greater or equal %d\n",
  1337                 (int)ObjectAlignmentInBytes, BytesPerLong);
  1338     return false;
  1340   // It does not make sense to have big object alignment
  1341   // since a space lost due to alignment will be greater
  1342   // then a saved space from compressed oops.
  1343   if ((int)ObjectAlignmentInBytes > 256) {
  1344     jio_fprintf(defaultStream::error_stream(),
  1345                 "error: ObjectAlignmentInBytes=%d must not be greater then 256\n",
  1346                 (int)ObjectAlignmentInBytes);
  1347     return false;
  1349   // In case page size is very small.
  1350   if ((int)ObjectAlignmentInBytes >= os::vm_page_size()) {
  1351     jio_fprintf(defaultStream::error_stream(),
  1352                 "error: ObjectAlignmentInBytes=%d must be less then page size %d\n",
  1353                 (int)ObjectAlignmentInBytes, os::vm_page_size());
  1354     return false;
  1356   return true;
  1359 inline uintx max_heap_for_compressed_oops() {
  1360   // Avoid sign flip.
  1361   if (OopEncodingHeapMax < MaxPermSize + os::vm_page_size()) {
  1362     return 0;
  1364   LP64_ONLY(return OopEncodingHeapMax - MaxPermSize - os::vm_page_size());
  1365   NOT_LP64(ShouldNotReachHere(); return 0);
  1368 bool Arguments::should_auto_select_low_pause_collector() {
  1369   if (UseAutoGCSelectPolicy &&
  1370       !FLAG_IS_DEFAULT(MaxGCPauseMillis) &&
  1371       (MaxGCPauseMillis <= AutoGCSelectPauseMillis)) {
  1372     if (PrintGCDetails) {
  1373       // Cannot use gclog_or_tty yet.
  1374       tty->print_cr("Automatic selection of the low pause collector"
  1375        " based on pause goal of %d (ms)", MaxGCPauseMillis);
  1377     return true;
  1379   return false;
  1382 void Arguments::set_ergonomics_flags() {
  1383   // Parallel GC is not compatible with sharing. If one specifies
  1384   // that they want sharing explicitly, do not set ergonomics flags.
  1385   if (DumpSharedSpaces || ForceSharedSpaces) {
  1386     return;
  1389   if (os::is_server_class_machine() && !force_client_mode ) {
  1390     // If no other collector is requested explicitly,
  1391     // let the VM select the collector based on
  1392     // machine class and automatic selection policy.
  1393     if (!UseSerialGC &&
  1394         !UseConcMarkSweepGC &&
  1395         !UseG1GC &&
  1396         !UseParNewGC &&
  1397         !DumpSharedSpaces &&
  1398         FLAG_IS_DEFAULT(UseParallelGC)) {
  1399       if (should_auto_select_low_pause_collector()) {
  1400         FLAG_SET_ERGO(bool, UseConcMarkSweepGC, true);
  1401       } else {
  1402         FLAG_SET_ERGO(bool, UseParallelGC, true);
  1404       no_shared_spaces();
  1408 #ifndef ZERO
  1409 #ifdef _LP64
  1410   // Check that UseCompressedOops can be set with the max heap size allocated
  1411   // by ergonomics.
  1412   if (MaxHeapSize <= max_heap_for_compressed_oops()) {
  1413 #if !defined(COMPILER1) || defined(TIERED)
  1414     if (FLAG_IS_DEFAULT(UseCompressedOops)) {
  1415       FLAG_SET_ERGO(bool, UseCompressedOops, true);
  1417 #endif
  1418 #ifdef _WIN64
  1419     if (UseLargePages && UseCompressedOops) {
  1420       // Cannot allocate guard pages for implicit checks in indexed addressing
  1421       // mode, when large pages are specified on windows.
  1422       // This flag could be switched ON if narrow oop base address is set to 0,
  1423       // see code in Universe::initialize_heap().
  1424       Universe::set_narrow_oop_use_implicit_null_checks(false);
  1426 #endif //  _WIN64
  1427   } else {
  1428     if (UseCompressedOops && !FLAG_IS_DEFAULT(UseCompressedOops)) {
  1429       warning("Max heap size too large for Compressed Oops");
  1430       FLAG_SET_DEFAULT(UseCompressedOops, false);
  1433   // Also checks that certain machines are slower with compressed oops
  1434   // in vm_version initialization code.
  1435 #endif // _LP64
  1436 #endif // !ZERO
  1439 void Arguments::set_parallel_gc_flags() {
  1440   assert(UseParallelGC || UseParallelOldGC, "Error");
  1441   // If parallel old was requested, automatically enable parallel scavenge.
  1442   if (UseParallelOldGC && !UseParallelGC && FLAG_IS_DEFAULT(UseParallelGC)) {
  1443     FLAG_SET_DEFAULT(UseParallelGC, true);
  1446   // If no heap maximum was requested explicitly, use some reasonable fraction
  1447   // of the physical memory, up to a maximum of 1GB.
  1448   if (UseParallelGC) {
  1449     FLAG_SET_ERGO(uintx, ParallelGCThreads,
  1450                   Abstract_VM_Version::parallel_worker_threads());
  1452     // If InitialSurvivorRatio or MinSurvivorRatio were not specified, but the
  1453     // SurvivorRatio has been set, reset their default values to SurvivorRatio +
  1454     // 2.  By doing this we make SurvivorRatio also work for Parallel Scavenger.
  1455     // See CR 6362902 for details.
  1456     if (!FLAG_IS_DEFAULT(SurvivorRatio)) {
  1457       if (FLAG_IS_DEFAULT(InitialSurvivorRatio)) {
  1458          FLAG_SET_DEFAULT(InitialSurvivorRatio, SurvivorRatio + 2);
  1460       if (FLAG_IS_DEFAULT(MinSurvivorRatio)) {
  1461         FLAG_SET_DEFAULT(MinSurvivorRatio, SurvivorRatio + 2);
  1465     if (UseParallelOldGC) {
  1466       // Par compact uses lower default values since they are treated as
  1467       // minimums.  These are different defaults because of the different
  1468       // interpretation and are not ergonomically set.
  1469       if (FLAG_IS_DEFAULT(MarkSweepDeadRatio)) {
  1470         FLAG_SET_DEFAULT(MarkSweepDeadRatio, 1);
  1472       if (FLAG_IS_DEFAULT(PermMarkSweepDeadRatio)) {
  1473         FLAG_SET_DEFAULT(PermMarkSweepDeadRatio, 5);
  1479 void Arguments::set_g1_gc_flags() {
  1480   assert(UseG1GC, "Error");
  1481 #ifdef COMPILER1
  1482   FastTLABRefill = false;
  1483 #endif
  1484   FLAG_SET_DEFAULT(ParallelGCThreads,
  1485                      Abstract_VM_Version::parallel_worker_threads());
  1486   if (ParallelGCThreads == 0) {
  1487     FLAG_SET_DEFAULT(ParallelGCThreads,
  1488                      Abstract_VM_Version::parallel_worker_threads());
  1490   no_shared_spaces();
  1492   if (FLAG_IS_DEFAULT(MarkStackSize)) {
  1493     FLAG_SET_DEFAULT(MarkStackSize, 128 * TASKQUEUE_SIZE);
  1495   if (PrintGCDetails && Verbose) {
  1496     tty->print_cr("MarkStackSize: %uk  MarkStackSizeMax: %uk",
  1497       MarkStackSize / K, MarkStackSizeMax / K);
  1498     tty->print_cr("ConcGCThreads: %u", ConcGCThreads);
  1501   if (FLAG_IS_DEFAULT(GCTimeRatio) || GCTimeRatio == 0) {
  1502     // In G1, we want the default GC overhead goal to be higher than
  1503     // say in PS. So we set it here to 10%. Otherwise the heap might
  1504     // be expanded more aggressively than we would like it to. In
  1505     // fact, even 10% seems to not be high enough in some cases
  1506     // (especially small GC stress tests that the main thing they do
  1507     // is allocation). We might consider increase it further.
  1508     FLAG_SET_DEFAULT(GCTimeRatio, 9);
  1512 void Arguments::set_heap_size() {
  1513   if (!FLAG_IS_DEFAULT(DefaultMaxRAMFraction)) {
  1514     // Deprecated flag
  1515     FLAG_SET_CMDLINE(uintx, MaxRAMFraction, DefaultMaxRAMFraction);
  1518   const julong phys_mem =
  1519     FLAG_IS_DEFAULT(MaxRAM) ? MIN2(os::physical_memory(), (julong)MaxRAM)
  1520                             : (julong)MaxRAM;
  1522   // If the maximum heap size has not been set with -Xmx,
  1523   // then set it as fraction of the size of physical memory,
  1524   // respecting the maximum and minimum sizes of the heap.
  1525   if (FLAG_IS_DEFAULT(MaxHeapSize)) {
  1526     julong reasonable_max = phys_mem / MaxRAMFraction;
  1528     if (phys_mem <= MaxHeapSize * MinRAMFraction) {
  1529       // Small physical memory, so use a minimum fraction of it for the heap
  1530       reasonable_max = phys_mem / MinRAMFraction;
  1531     } else {
  1532       // Not-small physical memory, so require a heap at least
  1533       // as large as MaxHeapSize
  1534       reasonable_max = MAX2(reasonable_max, (julong)MaxHeapSize);
  1536     if (!FLAG_IS_DEFAULT(ErgoHeapSizeLimit) && ErgoHeapSizeLimit != 0) {
  1537       // Limit the heap size to ErgoHeapSizeLimit
  1538       reasonable_max = MIN2(reasonable_max, (julong)ErgoHeapSizeLimit);
  1540     if (UseCompressedOops) {
  1541       // Limit the heap size to the maximum possible when using compressed oops
  1542       julong max_coop_heap = (julong)max_heap_for_compressed_oops();
  1543       if (HeapBaseMinAddress + MaxHeapSize < max_coop_heap) {
  1544         // Heap should be above HeapBaseMinAddress to get zero based compressed oops
  1545         // but it should be not less than default MaxHeapSize.
  1546         max_coop_heap -= HeapBaseMinAddress;
  1548       reasonable_max = MIN2(reasonable_max, max_coop_heap);
  1550     reasonable_max = os::allocatable_physical_memory(reasonable_max);
  1552     if (!FLAG_IS_DEFAULT(InitialHeapSize)) {
  1553       // An initial heap size was specified on the command line,
  1554       // so be sure that the maximum size is consistent.  Done
  1555       // after call to allocatable_physical_memory because that
  1556       // method might reduce the allocation size.
  1557       reasonable_max = MAX2(reasonable_max, (julong)InitialHeapSize);
  1560     if (PrintGCDetails && Verbose) {
  1561       // Cannot use gclog_or_tty yet.
  1562       tty->print_cr("  Maximum heap size " SIZE_FORMAT, reasonable_max);
  1564     FLAG_SET_ERGO(uintx, MaxHeapSize, (uintx)reasonable_max);
  1567   // If the initial_heap_size has not been set with InitialHeapSize
  1568   // or -Xms, then set it as fraction of the size of physical memory,
  1569   // respecting the maximum and minimum sizes of the heap.
  1570   if (FLAG_IS_DEFAULT(InitialHeapSize)) {
  1571     julong reasonable_minimum = (julong)(OldSize + NewSize);
  1573     reasonable_minimum = MIN2(reasonable_minimum, (julong)MaxHeapSize);
  1575     reasonable_minimum = os::allocatable_physical_memory(reasonable_minimum);
  1577     julong reasonable_initial = phys_mem / InitialRAMFraction;
  1579     reasonable_initial = MAX2(reasonable_initial, reasonable_minimum);
  1580     reasonable_initial = MIN2(reasonable_initial, (julong)MaxHeapSize);
  1582     reasonable_initial = os::allocatable_physical_memory(reasonable_initial);
  1584     if (PrintGCDetails && Verbose) {
  1585       // Cannot use gclog_or_tty yet.
  1586       tty->print_cr("  Initial heap size " SIZE_FORMAT, (uintx)reasonable_initial);
  1587       tty->print_cr("  Minimum heap size " SIZE_FORMAT, (uintx)reasonable_minimum);
  1589     FLAG_SET_ERGO(uintx, InitialHeapSize, (uintx)reasonable_initial);
  1590     set_min_heap_size((uintx)reasonable_minimum);
  1594 // This must be called after ergonomics because we want bytecode rewriting
  1595 // if the server compiler is used, or if UseSharedSpaces is disabled.
  1596 void Arguments::set_bytecode_flags() {
  1597   // Better not attempt to store into a read-only space.
  1598   if (UseSharedSpaces) {
  1599     FLAG_SET_DEFAULT(RewriteBytecodes, false);
  1600     FLAG_SET_DEFAULT(RewriteFrequentPairs, false);
  1603   if (!RewriteBytecodes) {
  1604     FLAG_SET_DEFAULT(RewriteFrequentPairs, false);
  1608 // Aggressive optimization flags  -XX:+AggressiveOpts
  1609 void Arguments::set_aggressive_opts_flags() {
  1610 #ifdef COMPILER2
  1611   if (AggressiveOpts || !FLAG_IS_DEFAULT(AutoBoxCacheMax)) {
  1612     if (FLAG_IS_DEFAULT(EliminateAutoBox)) {
  1613       FLAG_SET_DEFAULT(EliminateAutoBox, true);
  1615     if (FLAG_IS_DEFAULT(AutoBoxCacheMax)) {
  1616       FLAG_SET_DEFAULT(AutoBoxCacheMax, 20000);
  1619     // Feed the cache size setting into the JDK
  1620     char buffer[1024];
  1621     sprintf(buffer, "java.lang.Integer.IntegerCache.high=" INTX_FORMAT, AutoBoxCacheMax);
  1622     add_property(buffer);
  1624   if (AggressiveOpts && FLAG_IS_DEFAULT(DoEscapeAnalysis)) {
  1625     FLAG_SET_DEFAULT(DoEscapeAnalysis, true);
  1627   if (AggressiveOpts && FLAG_IS_DEFAULT(BiasedLockingStartupDelay)) {
  1628     FLAG_SET_DEFAULT(BiasedLockingStartupDelay, 500);
  1630   if (AggressiveOpts && FLAG_IS_DEFAULT(OptimizeStringConcat)) {
  1631     FLAG_SET_DEFAULT(OptimizeStringConcat, true);
  1633   if (AggressiveOpts && FLAG_IS_DEFAULT(OptimizeFill)) {
  1634     FLAG_SET_DEFAULT(OptimizeFill, true);
  1636 #endif
  1638   if (AggressiveOpts) {
  1639 // Sample flag setting code
  1640 //    if (FLAG_IS_DEFAULT(EliminateZeroing)) {
  1641 //      FLAG_SET_DEFAULT(EliminateZeroing, true);
  1642 //    }
  1646 //===========================================================================================================
  1647 // Parsing of java.compiler property
  1649 void Arguments::process_java_compiler_argument(char* arg) {
  1650   // For backwards compatibility, Djava.compiler=NONE or ""
  1651   // causes us to switch to -Xint mode UNLESS -Xdebug
  1652   // is also specified.
  1653   if (strlen(arg) == 0 || strcasecmp(arg, "NONE") == 0) {
  1654     set_java_compiler(true);    // "-Djava.compiler[=...]" most recently seen.
  1658 void Arguments::process_java_launcher_argument(const char* launcher, void* extra_info) {
  1659   _sun_java_launcher = strdup(launcher);
  1660   if (strcmp("gamma", _sun_java_launcher) == 0) {
  1661     _created_by_gamma_launcher = true;
  1665 bool Arguments::created_by_java_launcher() {
  1666   assert(_sun_java_launcher != NULL, "property must have value");
  1667   return strcmp(DEFAULT_JAVA_LAUNCHER, _sun_java_launcher) != 0;
  1670 bool Arguments::created_by_gamma_launcher() {
  1671   return _created_by_gamma_launcher;
  1674 //===========================================================================================================
  1675 // Parsing of main arguments
  1677 bool Arguments::verify_interval(uintx val, uintx min,
  1678                                 uintx max, const char* name) {
  1679   // Returns true iff value is in the inclusive interval [min..max]
  1680   // false, otherwise.
  1681   if (val >= min && val <= max) {
  1682     return true;
  1684   jio_fprintf(defaultStream::error_stream(),
  1685               "%s of " UINTX_FORMAT " is invalid; must be between " UINTX_FORMAT
  1686               " and " UINTX_FORMAT "\n",
  1687               name, val, min, max);
  1688   return false;
  1691 bool Arguments::verify_min_value(intx val, intx min, const char* name) {
  1692   // Returns true if given value is greater than specified min threshold
  1693   // false, otherwise.
  1694   if (val >= min ) {
  1695       return true;
  1697   jio_fprintf(defaultStream::error_stream(),
  1698               "%s of " INTX_FORMAT " is invalid; must be greater than " INTX_FORMAT "\n",
  1699               name, val, min);
  1700   return false;
  1703 bool Arguments::verify_percentage(uintx value, const char* name) {
  1704   if (value <= 100) {
  1705     return true;
  1707   jio_fprintf(defaultStream::error_stream(),
  1708               "%s of " UINTX_FORMAT " is invalid; must be between 0 and 100\n",
  1709               name, value);
  1710   return false;
  1713 static void force_serial_gc() {
  1714   FLAG_SET_DEFAULT(UseSerialGC, true);
  1715   FLAG_SET_DEFAULT(UseParNewGC, false);
  1716   FLAG_SET_DEFAULT(UseConcMarkSweepGC, false);
  1717   FLAG_SET_DEFAULT(CMSIncrementalMode, false);  // special CMS suboption
  1718   FLAG_SET_DEFAULT(UseParallelGC, false);
  1719   FLAG_SET_DEFAULT(UseParallelOldGC, false);
  1720   FLAG_SET_DEFAULT(UseG1GC, false);
  1723 static bool verify_serial_gc_flags() {
  1724   return (UseSerialGC &&
  1725         !(UseParNewGC || (UseConcMarkSweepGC || CMSIncrementalMode) || UseG1GC ||
  1726           UseParallelGC || UseParallelOldGC));
  1729 // Check consistency of GC selection
  1730 bool Arguments::check_gc_consistency() {
  1731   bool status = true;
  1732   // Ensure that the user has not selected conflicting sets
  1733   // of collectors. [Note: this check is merely a user convenience;
  1734   // collectors over-ride each other so that only a non-conflicting
  1735   // set is selected; however what the user gets is not what they
  1736   // may have expected from the combination they asked for. It's
  1737   // better to reduce user confusion by not allowing them to
  1738   // select conflicting combinations.
  1739   uint i = 0;
  1740   if (UseSerialGC)                       i++;
  1741   if (UseConcMarkSweepGC || UseParNewGC) i++;
  1742   if (UseParallelGC || UseParallelOldGC) i++;
  1743   if (UseG1GC)                           i++;
  1744   if (i > 1) {
  1745     jio_fprintf(defaultStream::error_stream(),
  1746                 "Conflicting collector combinations in option list; "
  1747                 "please refer to the release notes for the combinations "
  1748                 "allowed\n");
  1749     status = false;
  1752   return status;
  1755 // Check stack pages settings
  1756 bool Arguments::check_stack_pages()
  1758   bool status = true;
  1759   status = status && verify_min_value(StackYellowPages, 1, "StackYellowPages");
  1760   status = status && verify_min_value(StackRedPages, 1, "StackRedPages");
  1761   // greater stack shadow pages can't generate instruction to bang stack
  1762   status = status && verify_interval(StackShadowPages, 1, 50, "StackShadowPages");
  1763   return status;
  1766 // Check the consistency of vm_init_args
  1767 bool Arguments::check_vm_args_consistency() {
  1768   // Method for adding checks for flag consistency.
  1769   // The intent is to warn the user of all possible conflicts,
  1770   // before returning an error.
  1771   // Note: Needs platform-dependent factoring.
  1772   bool status = true;
  1774 #if ( (defined(COMPILER2) && defined(SPARC)))
  1775   // NOTE: The call to VM_Version_init depends on the fact that VM_Version_init
  1776   // on sparc doesn't require generation of a stub as is the case on, e.g.,
  1777   // x86.  Normally, VM_Version_init must be called from init_globals in
  1778   // init.cpp, which is called by the initial java thread *after* arguments
  1779   // have been parsed.  VM_Version_init gets called twice on sparc.
  1780   extern void VM_Version_init();
  1781   VM_Version_init();
  1782   if (!VM_Version::has_v9()) {
  1783     jio_fprintf(defaultStream::error_stream(),
  1784                 "V8 Machine detected, Server requires V9\n");
  1785     status = false;
  1787 #endif /* COMPILER2 && SPARC */
  1789   // Allow both -XX:-UseStackBanging and -XX:-UseBoundThreads in non-product
  1790   // builds so the cost of stack banging can be measured.
  1791 #if (defined(PRODUCT) && defined(SOLARIS))
  1792   if (!UseBoundThreads && !UseStackBanging) {
  1793     jio_fprintf(defaultStream::error_stream(),
  1794                 "-UseStackBanging conflicts with -UseBoundThreads\n");
  1796      status = false;
  1798 #endif
  1800   if (TLABRefillWasteFraction == 0) {
  1801     jio_fprintf(defaultStream::error_stream(),
  1802                 "TLABRefillWasteFraction should be a denominator, "
  1803                 "not " SIZE_FORMAT "\n",
  1804                 TLABRefillWasteFraction);
  1805     status = false;
  1808   status = status && verify_percentage(AdaptiveSizePolicyWeight,
  1809                               "AdaptiveSizePolicyWeight");
  1810   status = status && verify_percentage(AdaptivePermSizeWeight, "AdaptivePermSizeWeight");
  1811   status = status && verify_percentage(ThresholdTolerance, "ThresholdTolerance");
  1812   status = status && verify_percentage(MinHeapFreeRatio, "MinHeapFreeRatio");
  1813   status = status && verify_percentage(MaxHeapFreeRatio, "MaxHeapFreeRatio");
  1815   if (MinHeapFreeRatio > MaxHeapFreeRatio) {
  1816     jio_fprintf(defaultStream::error_stream(),
  1817                 "MinHeapFreeRatio (" UINTX_FORMAT ") must be less than or "
  1818                 "equal to MaxHeapFreeRatio (" UINTX_FORMAT ")\n",
  1819                 MinHeapFreeRatio, MaxHeapFreeRatio);
  1820     status = false;
  1822   // Keeping the heap 100% free is hard ;-) so limit it to 99%.
  1823   MinHeapFreeRatio = MIN2(MinHeapFreeRatio, (uintx) 99);
  1825   if (FullGCALot && FLAG_IS_DEFAULT(MarkSweepAlwaysCompactCount)) {
  1826     MarkSweepAlwaysCompactCount = 1;  // Move objects every gc.
  1829   if (UseParallelOldGC && ParallelOldGCSplitALot) {
  1830     // Settings to encourage splitting.
  1831     if (!FLAG_IS_CMDLINE(NewRatio)) {
  1832       FLAG_SET_CMDLINE(intx, NewRatio, 2);
  1834     if (!FLAG_IS_CMDLINE(ScavengeBeforeFullGC)) {
  1835       FLAG_SET_CMDLINE(bool, ScavengeBeforeFullGC, false);
  1839   status = status && verify_percentage(GCHeapFreeLimit, "GCHeapFreeLimit");
  1840   status = status && verify_percentage(GCTimeLimit, "GCTimeLimit");
  1841   if (GCTimeLimit == 100) {
  1842     // Turn off gc-overhead-limit-exceeded checks
  1843     FLAG_SET_DEFAULT(UseGCOverheadLimit, false);
  1846   status = status && verify_percentage(GCHeapFreeLimit, "GCHeapFreeLimit");
  1848   // Check whether user-specified sharing option conflicts with GC or page size.
  1849   // Both sharing and large pages are enabled by default on some platforms;
  1850   // large pages override sharing only if explicitly set on the command line.
  1851   const bool cannot_share = UseConcMarkSweepGC || CMSIncrementalMode ||
  1852           UseG1GC || UseParNewGC || UseParallelGC || UseParallelOldGC ||
  1853           UseLargePages && FLAG_IS_CMDLINE(UseLargePages);
  1854   if (cannot_share) {
  1855     // Either force sharing on by forcing the other options off, or
  1856     // force sharing off.
  1857     if (DumpSharedSpaces || ForceSharedSpaces) {
  1858       jio_fprintf(defaultStream::error_stream(),
  1859                   "Using Serial GC and default page size because of %s\n",
  1860                   ForceSharedSpaces ? "-Xshare:on" : "-Xshare:dump");
  1861       force_serial_gc();
  1862       FLAG_SET_DEFAULT(UseLargePages, false);
  1863     } else {
  1864       if (UseSharedSpaces && Verbose) {
  1865         jio_fprintf(defaultStream::error_stream(),
  1866                     "Turning off use of shared archive because of "
  1867                     "choice of garbage collector or large pages\n");
  1869       no_shared_spaces();
  1871   } else if (UseLargePages && (UseSharedSpaces || DumpSharedSpaces)) {
  1872     FLAG_SET_DEFAULT(UseLargePages, false);
  1875   status = status && check_gc_consistency();
  1876   status = status && check_stack_pages();
  1878   if (_has_alloc_profile) {
  1879     if (UseParallelGC || UseParallelOldGC) {
  1880       jio_fprintf(defaultStream::error_stream(),
  1881                   "error:  invalid argument combination.\n"
  1882                   "Allocation profiling (-Xaprof) cannot be used together with "
  1883                   "Parallel GC (-XX:+UseParallelGC or -XX:+UseParallelOldGC).\n");
  1884       status = false;
  1886     if (UseConcMarkSweepGC) {
  1887       jio_fprintf(defaultStream::error_stream(),
  1888                   "error:  invalid argument combination.\n"
  1889                   "Allocation profiling (-Xaprof) cannot be used together with "
  1890                   "the CMS collector (-XX:+UseConcMarkSweepGC).\n");
  1891       status = false;
  1895   if (CMSIncrementalMode) {
  1896     if (!UseConcMarkSweepGC) {
  1897       jio_fprintf(defaultStream::error_stream(),
  1898                   "error:  invalid argument combination.\n"
  1899                   "The CMS collector (-XX:+UseConcMarkSweepGC) must be "
  1900                   "selected in order\nto use CMSIncrementalMode.\n");
  1901       status = false;
  1902     } else {
  1903       status = status && verify_percentage(CMSIncrementalDutyCycle,
  1904                                   "CMSIncrementalDutyCycle");
  1905       status = status && verify_percentage(CMSIncrementalDutyCycleMin,
  1906                                   "CMSIncrementalDutyCycleMin");
  1907       status = status && verify_percentage(CMSIncrementalSafetyFactor,
  1908                                   "CMSIncrementalSafetyFactor");
  1909       status = status && verify_percentage(CMSIncrementalOffset,
  1910                                   "CMSIncrementalOffset");
  1911       status = status && verify_percentage(CMSExpAvgFactor,
  1912                                   "CMSExpAvgFactor");
  1913       // If it was not set on the command line, set
  1914       // CMSInitiatingOccupancyFraction to 1 so icms can initiate cycles early.
  1915       if (CMSInitiatingOccupancyFraction < 0) {
  1916         FLAG_SET_DEFAULT(CMSInitiatingOccupancyFraction, 1);
  1921   // CMS space iteration, which FLSVerifyAllHeapreferences entails,
  1922   // insists that we hold the requisite locks so that the iteration is
  1923   // MT-safe. For the verification at start-up and shut-down, we don't
  1924   // yet have a good way of acquiring and releasing these locks,
  1925   // which are not visible at the CollectedHeap level. We want to
  1926   // be able to acquire these locks and then do the iteration rather
  1927   // than just disable the lock verification. This will be fixed under
  1928   // bug 4788986.
  1929   if (UseConcMarkSweepGC && FLSVerifyAllHeapReferences) {
  1930     if (VerifyGCStartAt == 0) {
  1931       warning("Heap verification at start-up disabled "
  1932               "(due to current incompatibility with FLSVerifyAllHeapReferences)");
  1933       VerifyGCStartAt = 1;      // Disable verification at start-up
  1935     if (VerifyBeforeExit) {
  1936       warning("Heap verification at shutdown disabled "
  1937               "(due to current incompatibility with FLSVerifyAllHeapReferences)");
  1938       VerifyBeforeExit = false; // Disable verification at shutdown
  1942   // Note: only executed in non-PRODUCT mode
  1943   if (!UseAsyncConcMarkSweepGC &&
  1944       (ExplicitGCInvokesConcurrent ||
  1945        ExplicitGCInvokesConcurrentAndUnloadsClasses)) {
  1946     jio_fprintf(defaultStream::error_stream(),
  1947                 "error: +ExplictGCInvokesConcurrent[AndUnloadsClasses] conflicts"
  1948                 " with -UseAsyncConcMarkSweepGC");
  1949     status = false;
  1952 #ifndef SERIALGC
  1953   if (UseG1GC) {
  1954     status = status && verify_percentage(InitiatingHeapOccupancyPercent,
  1955                                          "InitiatingHeapOccupancyPercent");
  1956     status = status && verify_min_value(G1RefProcDrainInterval, 1,
  1957                                         "G1RefProcDrainInterval");
  1958     status = status && verify_min_value((intx)G1ConcMarkStepDurationMillis, 1,
  1959                                         "G1ConcMarkStepDurationMillis");
  1961 #endif
  1963   status = status && verify_interval(RefDiscoveryPolicy,
  1964                                      ReferenceProcessor::DiscoveryPolicyMin,
  1965                                      ReferenceProcessor::DiscoveryPolicyMax,
  1966                                      "RefDiscoveryPolicy");
  1968   // Limit the lower bound of this flag to 1 as it is used in a division
  1969   // expression.
  1970   status = status && verify_interval(TLABWasteTargetPercent,
  1971                                      1, 100, "TLABWasteTargetPercent");
  1973   status = status && verify_object_alignment();
  1975   return status;
  1978 bool Arguments::is_bad_option(const JavaVMOption* option, jboolean ignore,
  1979   const char* option_type) {
  1980   if (ignore) return false;
  1982   const char* spacer = " ";
  1983   if (option_type == NULL) {
  1984     option_type = ++spacer; // Set both to the empty string.
  1987   if (os::obsolete_option(option)) {
  1988     jio_fprintf(defaultStream::error_stream(),
  1989                 "Obsolete %s%soption: %s\n", option_type, spacer,
  1990       option->optionString);
  1991     return false;
  1992   } else {
  1993     jio_fprintf(defaultStream::error_stream(),
  1994                 "Unrecognized %s%soption: %s\n", option_type, spacer,
  1995       option->optionString);
  1996     return true;
  2000 static const char* user_assertion_options[] = {
  2001   "-da", "-ea", "-disableassertions", "-enableassertions", 0
  2002 };
  2004 static const char* system_assertion_options[] = {
  2005   "-dsa", "-esa", "-disablesystemassertions", "-enablesystemassertions", 0
  2006 };
  2008 // Return true if any of the strings in null-terminated array 'names' matches.
  2009 // If tail_allowed is true, then the tail must begin with a colon; otherwise,
  2010 // the option must match exactly.
  2011 static bool match_option(const JavaVMOption* option, const char** names, const char** tail,
  2012   bool tail_allowed) {
  2013   for (/* empty */; *names != NULL; ++names) {
  2014     if (match_option(option, *names, tail)) {
  2015       if (**tail == '\0' || tail_allowed && **tail == ':') {
  2016         return true;
  2020   return false;
  2023 bool Arguments::parse_uintx(const char* value,
  2024                             uintx* uintx_arg,
  2025                             uintx min_size) {
  2027   // Check the sign first since atomull() parses only unsigned values.
  2028   bool value_is_positive = !(*value == '-');
  2030   if (value_is_positive) {
  2031     julong n;
  2032     bool good_return = atomull(value, &n);
  2033     if (good_return) {
  2034       bool above_minimum = n >= min_size;
  2035       bool value_is_too_large = n > max_uintx;
  2037       if (above_minimum && !value_is_too_large) {
  2038         *uintx_arg = n;
  2039         return true;
  2043   return false;
  2046 Arguments::ArgsRange Arguments::parse_memory_size(const char* s,
  2047                                                   julong* long_arg,
  2048                                                   julong min_size) {
  2049   if (!atomull(s, long_arg)) return arg_unreadable;
  2050   return check_memory_size(*long_arg, min_size);
  2053 // Parse JavaVMInitArgs structure
  2055 jint Arguments::parse_vm_init_args(const JavaVMInitArgs* args) {
  2056   // For components of the system classpath.
  2057   SysClassPath scp(Arguments::get_sysclasspath());
  2058   bool scp_assembly_required = false;
  2060   // Save default settings for some mode flags
  2061   Arguments::_AlwaysCompileLoopMethods = AlwaysCompileLoopMethods;
  2062   Arguments::_UseOnStackReplacement    = UseOnStackReplacement;
  2063   Arguments::_ClipInlining             = ClipInlining;
  2064   Arguments::_BackgroundCompilation    = BackgroundCompilation;
  2066   // Parse JAVA_TOOL_OPTIONS environment variable (if present)
  2067   jint result = parse_java_tool_options_environment_variable(&scp, &scp_assembly_required);
  2068   if (result != JNI_OK) {
  2069     return result;
  2072   // Parse JavaVMInitArgs structure passed in
  2073   result = parse_each_vm_init_arg(args, &scp, &scp_assembly_required, COMMAND_LINE);
  2074   if (result != JNI_OK) {
  2075     return result;
  2078   if (AggressiveOpts) {
  2079     // Insert alt-rt.jar between user-specified bootclasspath
  2080     // prefix and the default bootclasspath.  os::set_boot_path()
  2081     // uses meta_index_dir as the default bootclasspath directory.
  2082     const char* altclasses_jar = "alt-rt.jar";
  2083     size_t altclasses_path_len = strlen(get_meta_index_dir()) + 1 +
  2084                                  strlen(altclasses_jar);
  2085     char* altclasses_path = NEW_C_HEAP_ARRAY(char, altclasses_path_len);
  2086     strcpy(altclasses_path, get_meta_index_dir());
  2087     strcat(altclasses_path, altclasses_jar);
  2088     scp.add_suffix_to_prefix(altclasses_path);
  2089     scp_assembly_required = true;
  2090     FREE_C_HEAP_ARRAY(char, altclasses_path);
  2093   // Parse _JAVA_OPTIONS environment variable (if present) (mimics classic VM)
  2094   result = parse_java_options_environment_variable(&scp, &scp_assembly_required);
  2095   if (result != JNI_OK) {
  2096     return result;
  2099   // Do final processing now that all arguments have been parsed
  2100   result = finalize_vm_init_args(&scp, scp_assembly_required);
  2101   if (result != JNI_OK) {
  2102     return result;
  2105   return JNI_OK;
  2108 jint Arguments::parse_each_vm_init_arg(const JavaVMInitArgs* args,
  2109                                        SysClassPath* scp_p,
  2110                                        bool* scp_assembly_required_p,
  2111                                        FlagValueOrigin origin) {
  2112   // Remaining part of option string
  2113   const char* tail;
  2115   // iterate over arguments
  2116   for (int index = 0; index < args->nOptions; index++) {
  2117     bool is_absolute_path = false;  // for -agentpath vs -agentlib
  2119     const JavaVMOption* option = args->options + index;
  2121     if (!match_option(option, "-Djava.class.path", &tail) &&
  2122         !match_option(option, "-Dsun.java.command", &tail) &&
  2123         !match_option(option, "-Dsun.java.launcher", &tail)) {
  2125         // add all jvm options to the jvm_args string. This string
  2126         // is used later to set the java.vm.args PerfData string constant.
  2127         // the -Djava.class.path and the -Dsun.java.command options are
  2128         // omitted from jvm_args string as each have their own PerfData
  2129         // string constant object.
  2130         build_jvm_args(option->optionString);
  2133     // -verbose:[class/gc/jni]
  2134     if (match_option(option, "-verbose", &tail)) {
  2135       if (!strcmp(tail, ":class") || !strcmp(tail, "")) {
  2136         FLAG_SET_CMDLINE(bool, TraceClassLoading, true);
  2137         FLAG_SET_CMDLINE(bool, TraceClassUnloading, true);
  2138       } else if (!strcmp(tail, ":gc")) {
  2139         FLAG_SET_CMDLINE(bool, PrintGC, true);
  2140       } else if (!strcmp(tail, ":jni")) {
  2141         FLAG_SET_CMDLINE(bool, PrintJNIResolving, true);
  2143     // -da / -ea / -disableassertions / -enableassertions
  2144     // These accept an optional class/package name separated by a colon, e.g.,
  2145     // -da:java.lang.Thread.
  2146     } else if (match_option(option, user_assertion_options, &tail, true)) {
  2147       bool enable = option->optionString[1] == 'e';     // char after '-' is 'e'
  2148       if (*tail == '\0') {
  2149         JavaAssertions::setUserClassDefault(enable);
  2150       } else {
  2151         assert(*tail == ':', "bogus match by match_option()");
  2152         JavaAssertions::addOption(tail + 1, enable);
  2154     // -dsa / -esa / -disablesystemassertions / -enablesystemassertions
  2155     } else if (match_option(option, system_assertion_options, &tail, false)) {
  2156       bool enable = option->optionString[1] == 'e';     // char after '-' is 'e'
  2157       JavaAssertions::setSystemClassDefault(enable);
  2158     // -bootclasspath:
  2159     } else if (match_option(option, "-Xbootclasspath:", &tail)) {
  2160       scp_p->reset_path(tail);
  2161       *scp_assembly_required_p = true;
  2162     // -bootclasspath/a:
  2163     } else if (match_option(option, "-Xbootclasspath/a:", &tail)) {
  2164       scp_p->add_suffix(tail);
  2165       *scp_assembly_required_p = true;
  2166     // -bootclasspath/p:
  2167     } else if (match_option(option, "-Xbootclasspath/p:", &tail)) {
  2168       scp_p->add_prefix(tail);
  2169       *scp_assembly_required_p = true;
  2170     // -Xrun
  2171     } else if (match_option(option, "-Xrun", &tail)) {
  2172       if (tail != NULL) {
  2173         const char* pos = strchr(tail, ':');
  2174         size_t len = (pos == NULL) ? strlen(tail) : pos - tail;
  2175         char* name = (char*)memcpy(NEW_C_HEAP_ARRAY(char, len + 1), tail, len);
  2176         name[len] = '\0';
  2178         char *options = NULL;
  2179         if(pos != NULL) {
  2180           size_t len2 = strlen(pos+1) + 1; // options start after ':'.  Final zero must be copied.
  2181           options = (char*)memcpy(NEW_C_HEAP_ARRAY(char, len2), pos+1, len2);
  2183 #ifdef JVMTI_KERNEL
  2184         if ((strcmp(name, "hprof") == 0) || (strcmp(name, "jdwp") == 0)) {
  2185           warning("profiling and debugging agents are not supported with Kernel VM");
  2186         } else
  2187 #endif // JVMTI_KERNEL
  2188         add_init_library(name, options);
  2190     // -agentlib and -agentpath
  2191     } else if (match_option(option, "-agentlib:", &tail) ||
  2192           (is_absolute_path = match_option(option, "-agentpath:", &tail))) {
  2193       if(tail != NULL) {
  2194         const char* pos = strchr(tail, '=');
  2195         size_t len = (pos == NULL) ? strlen(tail) : pos - tail;
  2196         char* name = strncpy(NEW_C_HEAP_ARRAY(char, len + 1), tail, len);
  2197         name[len] = '\0';
  2199         char *options = NULL;
  2200         if(pos != NULL) {
  2201           options = strcpy(NEW_C_HEAP_ARRAY(char, strlen(pos + 1) + 1), pos + 1);
  2203 #ifdef JVMTI_KERNEL
  2204         if ((strcmp(name, "hprof") == 0) || (strcmp(name, "jdwp") == 0)) {
  2205           warning("profiling and debugging agents are not supported with Kernel VM");
  2206         } else
  2207 #endif // JVMTI_KERNEL
  2208         add_init_agent(name, options, is_absolute_path);
  2211     // -javaagent
  2212     } else if (match_option(option, "-javaagent:", &tail)) {
  2213       if(tail != NULL) {
  2214         char *options = strcpy(NEW_C_HEAP_ARRAY(char, strlen(tail) + 1), tail);
  2215         add_init_agent("instrument", options, false);
  2217     // -Xnoclassgc
  2218     } else if (match_option(option, "-Xnoclassgc", &tail)) {
  2219       FLAG_SET_CMDLINE(bool, ClassUnloading, false);
  2220     // -Xincgc: i-CMS
  2221     } else if (match_option(option, "-Xincgc", &tail)) {
  2222       FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, true);
  2223       FLAG_SET_CMDLINE(bool, CMSIncrementalMode, true);
  2224     // -Xnoincgc: no i-CMS
  2225     } else if (match_option(option, "-Xnoincgc", &tail)) {
  2226       FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, false);
  2227       FLAG_SET_CMDLINE(bool, CMSIncrementalMode, false);
  2228     // -Xconcgc
  2229     } else if (match_option(option, "-Xconcgc", &tail)) {
  2230       FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, true);
  2231     // -Xnoconcgc
  2232     } else if (match_option(option, "-Xnoconcgc", &tail)) {
  2233       FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, false);
  2234     // -Xbatch
  2235     } else if (match_option(option, "-Xbatch", &tail)) {
  2236       FLAG_SET_CMDLINE(bool, BackgroundCompilation, false);
  2237     // -Xmn for compatibility with other JVM vendors
  2238     } else if (match_option(option, "-Xmn", &tail)) {
  2239       julong long_initial_eden_size = 0;
  2240       ArgsRange errcode = parse_memory_size(tail, &long_initial_eden_size, 1);
  2241       if (errcode != arg_in_range) {
  2242         jio_fprintf(defaultStream::error_stream(),
  2243                     "Invalid initial eden size: %s\n", option->optionString);
  2244         describe_range_error(errcode);
  2245         return JNI_EINVAL;
  2247       FLAG_SET_CMDLINE(uintx, MaxNewSize, (uintx)long_initial_eden_size);
  2248       FLAG_SET_CMDLINE(uintx, NewSize, (uintx)long_initial_eden_size);
  2249     // -Xms
  2250     } else if (match_option(option, "-Xms", &tail)) {
  2251       julong long_initial_heap_size = 0;
  2252       ArgsRange errcode = parse_memory_size(tail, &long_initial_heap_size, 1);
  2253       if (errcode != arg_in_range) {
  2254         jio_fprintf(defaultStream::error_stream(),
  2255                     "Invalid initial heap size: %s\n", option->optionString);
  2256         describe_range_error(errcode);
  2257         return JNI_EINVAL;
  2259       FLAG_SET_CMDLINE(uintx, InitialHeapSize, (uintx)long_initial_heap_size);
  2260       // Currently the minimum size and the initial heap sizes are the same.
  2261       set_min_heap_size(InitialHeapSize);
  2262     // -Xmx
  2263     } else if (match_option(option, "-Xmx", &tail)) {
  2264       julong long_max_heap_size = 0;
  2265       ArgsRange errcode = parse_memory_size(tail, &long_max_heap_size, 1);
  2266       if (errcode != arg_in_range) {
  2267         jio_fprintf(defaultStream::error_stream(),
  2268                     "Invalid maximum heap size: %s\n", option->optionString);
  2269         describe_range_error(errcode);
  2270         return JNI_EINVAL;
  2272       FLAG_SET_CMDLINE(uintx, MaxHeapSize, (uintx)long_max_heap_size);
  2273     // Xmaxf
  2274     } else if (match_option(option, "-Xmaxf", &tail)) {
  2275       int maxf = (int)(atof(tail) * 100);
  2276       if (maxf < 0 || maxf > 100) {
  2277         jio_fprintf(defaultStream::error_stream(),
  2278                     "Bad max heap free percentage size: %s\n",
  2279                     option->optionString);
  2280         return JNI_EINVAL;
  2281       } else {
  2282         FLAG_SET_CMDLINE(uintx, MaxHeapFreeRatio, maxf);
  2284     // Xminf
  2285     } else if (match_option(option, "-Xminf", &tail)) {
  2286       int minf = (int)(atof(tail) * 100);
  2287       if (minf < 0 || minf > 100) {
  2288         jio_fprintf(defaultStream::error_stream(),
  2289                     "Bad min heap free percentage size: %s\n",
  2290                     option->optionString);
  2291         return JNI_EINVAL;
  2292       } else {
  2293         FLAG_SET_CMDLINE(uintx, MinHeapFreeRatio, minf);
  2295     // -Xss
  2296     } else if (match_option(option, "-Xss", &tail)) {
  2297       julong long_ThreadStackSize = 0;
  2298       ArgsRange errcode = parse_memory_size(tail, &long_ThreadStackSize, 1000);
  2299       if (errcode != arg_in_range) {
  2300         jio_fprintf(defaultStream::error_stream(),
  2301                     "Invalid thread stack size: %s\n", option->optionString);
  2302         describe_range_error(errcode);
  2303         return JNI_EINVAL;
  2305       // Internally track ThreadStackSize in units of 1024 bytes.
  2306       FLAG_SET_CMDLINE(intx, ThreadStackSize,
  2307                               round_to((int)long_ThreadStackSize, K) / K);
  2308     // -Xoss
  2309     } else if (match_option(option, "-Xoss", &tail)) {
  2310           // HotSpot does not have separate native and Java stacks, ignore silently for compatibility
  2311     // -Xmaxjitcodesize
  2312     } else if (match_option(option, "-Xmaxjitcodesize", &tail) ||
  2313                match_option(option, "-XX:ReservedCodeCacheSize=", &tail)) {
  2314       julong long_ReservedCodeCacheSize = 0;
  2315       ArgsRange errcode = parse_memory_size(tail, &long_ReservedCodeCacheSize,
  2316                                             (size_t)InitialCodeCacheSize);
  2317       if (errcode != arg_in_range) {
  2318         jio_fprintf(defaultStream::error_stream(),
  2319                     "Invalid maximum code cache size: %s. Should be greater than InitialCodeCacheSize=%dK\n",
  2320                     option->optionString, InitialCodeCacheSize/K);
  2321         describe_range_error(errcode);
  2322         return JNI_EINVAL;
  2324       FLAG_SET_CMDLINE(uintx, ReservedCodeCacheSize, (uintx)long_ReservedCodeCacheSize);
  2325     // -green
  2326     } else if (match_option(option, "-green", &tail)) {
  2327       jio_fprintf(defaultStream::error_stream(),
  2328                   "Green threads support not available\n");
  2329           return JNI_EINVAL;
  2330     // -native
  2331     } else if (match_option(option, "-native", &tail)) {
  2332           // HotSpot always uses native threads, ignore silently for compatibility
  2333     // -Xsqnopause
  2334     } else if (match_option(option, "-Xsqnopause", &tail)) {
  2335           // EVM option, ignore silently for compatibility
  2336     // -Xrs
  2337     } else if (match_option(option, "-Xrs", &tail)) {
  2338           // Classic/EVM option, new functionality
  2339       FLAG_SET_CMDLINE(bool, ReduceSignalUsage, true);
  2340     } else if (match_option(option, "-Xusealtsigs", &tail)) {
  2341           // change default internal VM signals used - lower case for back compat
  2342       FLAG_SET_CMDLINE(bool, UseAltSigs, true);
  2343     // -Xoptimize
  2344     } else if (match_option(option, "-Xoptimize", &tail)) {
  2345           // EVM option, ignore silently for compatibility
  2346     // -Xprof
  2347     } else if (match_option(option, "-Xprof", &tail)) {
  2348 #ifndef FPROF_KERNEL
  2349       _has_profile = true;
  2350 #else // FPROF_KERNEL
  2351       // do we have to exit?
  2352       warning("Kernel VM does not support flat profiling.");
  2353 #endif // FPROF_KERNEL
  2354     // -Xaprof
  2355     } else if (match_option(option, "-Xaprof", &tail)) {
  2356       _has_alloc_profile = true;
  2357     // -Xconcurrentio
  2358     } else if (match_option(option, "-Xconcurrentio", &tail)) {
  2359       FLAG_SET_CMDLINE(bool, UseLWPSynchronization, true);
  2360       FLAG_SET_CMDLINE(bool, BackgroundCompilation, false);
  2361       FLAG_SET_CMDLINE(intx, DeferThrSuspendLoopCount, 1);
  2362       FLAG_SET_CMDLINE(bool, UseTLAB, false);
  2363       FLAG_SET_CMDLINE(uintx, NewSizeThreadIncrease, 16 * K);  // 20Kb per thread added to new generation
  2365       // -Xinternalversion
  2366     } else if (match_option(option, "-Xinternalversion", &tail)) {
  2367       jio_fprintf(defaultStream::output_stream(), "%s\n",
  2368                   VM_Version::internal_vm_info_string());
  2369       vm_exit(0);
  2370 #ifndef PRODUCT
  2371     // -Xprintflags
  2372     } else if (match_option(option, "-Xprintflags", &tail)) {
  2373       CommandLineFlags::printFlags();
  2374       vm_exit(0);
  2375 #endif
  2376     // -D
  2377     } else if (match_option(option, "-D", &tail)) {
  2378       if (!add_property(tail)) {
  2379         return JNI_ENOMEM;
  2381       // Out of the box management support
  2382       if (match_option(option, "-Dcom.sun.management", &tail)) {
  2383         FLAG_SET_CMDLINE(bool, ManagementServer, true);
  2385     // -Xint
  2386     } else if (match_option(option, "-Xint", &tail)) {
  2387           set_mode_flags(_int);
  2388     // -Xmixed
  2389     } else if (match_option(option, "-Xmixed", &tail)) {
  2390           set_mode_flags(_mixed);
  2391     // -Xcomp
  2392     } else if (match_option(option, "-Xcomp", &tail)) {
  2393       // for testing the compiler; turn off all flags that inhibit compilation
  2394           set_mode_flags(_comp);
  2396     // -Xshare:dump
  2397     } else if (match_option(option, "-Xshare:dump", &tail)) {
  2398 #ifdef TIERED
  2399       FLAG_SET_CMDLINE(bool, DumpSharedSpaces, true);
  2400       set_mode_flags(_int);     // Prevent compilation, which creates objects
  2401 #elif defined(COMPILER2)
  2402       vm_exit_during_initialization(
  2403           "Dumping a shared archive is not supported on the Server JVM.", NULL);
  2404 #elif defined(KERNEL)
  2405       vm_exit_during_initialization(
  2406           "Dumping a shared archive is not supported on the Kernel JVM.", NULL);
  2407 #else
  2408       FLAG_SET_CMDLINE(bool, DumpSharedSpaces, true);
  2409       set_mode_flags(_int);     // Prevent compilation, which creates objects
  2410 #endif
  2411     // -Xshare:on
  2412     } else if (match_option(option, "-Xshare:on", &tail)) {
  2413       FLAG_SET_CMDLINE(bool, UseSharedSpaces, true);
  2414       FLAG_SET_CMDLINE(bool, RequireSharedSpaces, true);
  2415 #ifdef TIERED
  2416       FLAG_SET_CMDLINE(bool, ForceSharedSpaces, true);
  2417 #endif // TIERED
  2418     // -Xshare:auto
  2419     } else if (match_option(option, "-Xshare:auto", &tail)) {
  2420       FLAG_SET_CMDLINE(bool, UseSharedSpaces, true);
  2421       FLAG_SET_CMDLINE(bool, RequireSharedSpaces, false);
  2422     // -Xshare:off
  2423     } else if (match_option(option, "-Xshare:off", &tail)) {
  2424       FLAG_SET_CMDLINE(bool, UseSharedSpaces, false);
  2425       FLAG_SET_CMDLINE(bool, RequireSharedSpaces, false);
  2427     // -Xverify
  2428     } else if (match_option(option, "-Xverify", &tail)) {
  2429       if (strcmp(tail, ":all") == 0 || strcmp(tail, "") == 0) {
  2430         FLAG_SET_CMDLINE(bool, BytecodeVerificationLocal, true);
  2431         FLAG_SET_CMDLINE(bool, BytecodeVerificationRemote, true);
  2432       } else if (strcmp(tail, ":remote") == 0) {
  2433         FLAG_SET_CMDLINE(bool, BytecodeVerificationLocal, false);
  2434         FLAG_SET_CMDLINE(bool, BytecodeVerificationRemote, true);
  2435       } else if (strcmp(tail, ":none") == 0) {
  2436         FLAG_SET_CMDLINE(bool, BytecodeVerificationLocal, false);
  2437         FLAG_SET_CMDLINE(bool, BytecodeVerificationRemote, false);
  2438       } else if (is_bad_option(option, args->ignoreUnrecognized, "verification")) {
  2439         return JNI_EINVAL;
  2441     // -Xdebug
  2442     } else if (match_option(option, "-Xdebug", &tail)) {
  2443       // note this flag has been used, then ignore
  2444       set_xdebug_mode(true);
  2445     // -Xnoagent
  2446     } else if (match_option(option, "-Xnoagent", &tail)) {
  2447       // For compatibility with classic. HotSpot refuses to load the old style agent.dll.
  2448     } else if (match_option(option, "-Xboundthreads", &tail)) {
  2449       // Bind user level threads to kernel threads (Solaris only)
  2450       FLAG_SET_CMDLINE(bool, UseBoundThreads, true);
  2451     } else if (match_option(option, "-Xloggc:", &tail)) {
  2452       // Redirect GC output to the file. -Xloggc:<filename>
  2453       // ostream_init_log(), when called will use this filename
  2454       // to initialize a fileStream.
  2455       _gc_log_filename = strdup(tail);
  2456       FLAG_SET_CMDLINE(bool, PrintGC, true);
  2457       FLAG_SET_CMDLINE(bool, PrintGCTimeStamps, true);
  2458       FLAG_SET_CMDLINE(bool, TraceClassUnloading, true);
  2460     // JNI hooks
  2461     } else if (match_option(option, "-Xcheck", &tail)) {
  2462       if (!strcmp(tail, ":jni")) {
  2463         CheckJNICalls = true;
  2464       } else if (is_bad_option(option, args->ignoreUnrecognized,
  2465                                      "check")) {
  2466         return JNI_EINVAL;
  2468     } else if (match_option(option, "vfprintf", &tail)) {
  2469       _vfprintf_hook = CAST_TO_FN_PTR(vfprintf_hook_t, option->extraInfo);
  2470     } else if (match_option(option, "exit", &tail)) {
  2471       _exit_hook = CAST_TO_FN_PTR(exit_hook_t, option->extraInfo);
  2472     } else if (match_option(option, "abort", &tail)) {
  2473       _abort_hook = CAST_TO_FN_PTR(abort_hook_t, option->extraInfo);
  2474     // -XX:+AggressiveHeap
  2475     } else if (match_option(option, "-XX:+AggressiveHeap", &tail)) {
  2477       // This option inspects the machine and attempts to set various
  2478       // parameters to be optimal for long-running, memory allocation
  2479       // intensive jobs.  It is intended for machines with large
  2480       // amounts of cpu and memory.
  2482       // initHeapSize is needed since _initial_heap_size is 4 bytes on a 32 bit
  2483       // VM, but we may not be able to represent the total physical memory
  2484       // available (like having 8gb of memory on a box but using a 32bit VM).
  2485       // Thus, we need to make sure we're using a julong for intermediate
  2486       // calculations.
  2487       julong initHeapSize;
  2488       julong total_memory = os::physical_memory();
  2490       if (total_memory < (julong)256*M) {
  2491         jio_fprintf(defaultStream::error_stream(),
  2492                     "You need at least 256mb of memory to use -XX:+AggressiveHeap\n");
  2493         vm_exit(1);
  2496       // The heap size is half of available memory, or (at most)
  2497       // all of possible memory less 160mb (leaving room for the OS
  2498       // when using ISM).  This is the maximum; because adaptive sizing
  2499       // is turned on below, the actual space used may be smaller.
  2501       initHeapSize = MIN2(total_memory / (julong)2,
  2502                           total_memory - (julong)160*M);
  2504       // Make sure that if we have a lot of memory we cap the 32 bit
  2505       // process space.  The 64bit VM version of this function is a nop.
  2506       initHeapSize = os::allocatable_physical_memory(initHeapSize);
  2508       // The perm gen is separate but contiguous with the
  2509       // object heap (and is reserved with it) so subtract it
  2510       // from the heap size.
  2511       if (initHeapSize > MaxPermSize) {
  2512         initHeapSize = initHeapSize - MaxPermSize;
  2513       } else {
  2514         warning("AggressiveHeap and MaxPermSize values may conflict");
  2517       if (FLAG_IS_DEFAULT(MaxHeapSize)) {
  2518          FLAG_SET_CMDLINE(uintx, MaxHeapSize, initHeapSize);
  2519          FLAG_SET_CMDLINE(uintx, InitialHeapSize, initHeapSize);
  2520          // Currently the minimum size and the initial heap sizes are the same.
  2521          set_min_heap_size(initHeapSize);
  2523       if (FLAG_IS_DEFAULT(NewSize)) {
  2524          // Make the young generation 3/8ths of the total heap.
  2525          FLAG_SET_CMDLINE(uintx, NewSize,
  2526                                 ((julong)MaxHeapSize / (julong)8) * (julong)3);
  2527          FLAG_SET_CMDLINE(uintx, MaxNewSize, NewSize);
  2530       FLAG_SET_DEFAULT(UseLargePages, true);
  2532       // Increase some data structure sizes for efficiency
  2533       FLAG_SET_CMDLINE(uintx, BaseFootPrintEstimate, MaxHeapSize);
  2534       FLAG_SET_CMDLINE(bool, ResizeTLAB, false);
  2535       FLAG_SET_CMDLINE(uintx, TLABSize, 256*K);
  2537       // See the OldPLABSize comment below, but replace 'after promotion'
  2538       // with 'after copying'.  YoungPLABSize is the size of the survivor
  2539       // space per-gc-thread buffers.  The default is 4kw.
  2540       FLAG_SET_CMDLINE(uintx, YoungPLABSize, 256*K);      // Note: this is in words
  2542       // OldPLABSize is the size of the buffers in the old gen that
  2543       // UseParallelGC uses to promote live data that doesn't fit in the
  2544       // survivor spaces.  At any given time, there's one for each gc thread.
  2545       // The default size is 1kw. These buffers are rarely used, since the
  2546       // survivor spaces are usually big enough.  For specjbb, however, there
  2547       // are occasions when there's lots of live data in the young gen
  2548       // and we end up promoting some of it.  We don't have a definite
  2549       // explanation for why bumping OldPLABSize helps, but the theory
  2550       // is that a bigger PLAB results in retaining something like the
  2551       // original allocation order after promotion, which improves mutator
  2552       // locality.  A minor effect may be that larger PLABs reduce the
  2553       // number of PLAB allocation events during gc.  The value of 8kw
  2554       // was arrived at by experimenting with specjbb.
  2555       FLAG_SET_CMDLINE(uintx, OldPLABSize, 8*K);  // Note: this is in words
  2557       // CompilationPolicyChoice=0 causes the server compiler to adopt
  2558       // a more conservative which-method-do-I-compile policy when one
  2559       // of the counters maintained by the interpreter trips.  The
  2560       // result is reduced startup time and improved specjbb and
  2561       // alacrity performance.  Zero is the default, but we set it
  2562       // explicitly here in case the default changes.
  2563       // See runtime/compilationPolicy.*.
  2564       FLAG_SET_CMDLINE(intx, CompilationPolicyChoice, 0);
  2566       // Enable parallel GC and adaptive generation sizing
  2567       FLAG_SET_CMDLINE(bool, UseParallelGC, true);
  2568       FLAG_SET_DEFAULT(ParallelGCThreads,
  2569                        Abstract_VM_Version::parallel_worker_threads());
  2571       // Encourage steady state memory management
  2572       FLAG_SET_CMDLINE(uintx, ThresholdTolerance, 100);
  2574       // This appears to improve mutator locality
  2575       FLAG_SET_CMDLINE(bool, ScavengeBeforeFullGC, false);
  2577       // Get around early Solaris scheduling bug
  2578       // (affinity vs other jobs on system)
  2579       // but disallow DR and offlining (5008695).
  2580       FLAG_SET_CMDLINE(bool, BindGCTaskThreadsToCPUs, true);
  2582     } else if (match_option(option, "-XX:+NeverTenure", &tail)) {
  2583       // The last option must always win.
  2584       FLAG_SET_CMDLINE(bool, AlwaysTenure, false);
  2585       FLAG_SET_CMDLINE(bool, NeverTenure, true);
  2586     } else if (match_option(option, "-XX:+AlwaysTenure", &tail)) {
  2587       // The last option must always win.
  2588       FLAG_SET_CMDLINE(bool, NeverTenure, false);
  2589       FLAG_SET_CMDLINE(bool, AlwaysTenure, true);
  2590     } else if (match_option(option, "-XX:+CMSPermGenSweepingEnabled", &tail) ||
  2591                match_option(option, "-XX:-CMSPermGenSweepingEnabled", &tail)) {
  2592       jio_fprintf(defaultStream::error_stream(),
  2593         "Please use CMSClassUnloadingEnabled in place of "
  2594         "CMSPermGenSweepingEnabled in the future\n");
  2595     } else if (match_option(option, "-XX:+UseGCTimeLimit", &tail)) {
  2596       FLAG_SET_CMDLINE(bool, UseGCOverheadLimit, true);
  2597       jio_fprintf(defaultStream::error_stream(),
  2598         "Please use -XX:+UseGCOverheadLimit in place of "
  2599         "-XX:+UseGCTimeLimit in the future\n");
  2600     } else if (match_option(option, "-XX:-UseGCTimeLimit", &tail)) {
  2601       FLAG_SET_CMDLINE(bool, UseGCOverheadLimit, false);
  2602       jio_fprintf(defaultStream::error_stream(),
  2603         "Please use -XX:-UseGCOverheadLimit in place of "
  2604         "-XX:-UseGCTimeLimit in the future\n");
  2605     // The TLE options are for compatibility with 1.3 and will be
  2606     // removed without notice in a future release.  These options
  2607     // are not to be documented.
  2608     } else if (match_option(option, "-XX:MaxTLERatio=", &tail)) {
  2609       // No longer used.
  2610     } else if (match_option(option, "-XX:+ResizeTLE", &tail)) {
  2611       FLAG_SET_CMDLINE(bool, ResizeTLAB, true);
  2612     } else if (match_option(option, "-XX:-ResizeTLE", &tail)) {
  2613       FLAG_SET_CMDLINE(bool, ResizeTLAB, false);
  2614     } else if (match_option(option, "-XX:+PrintTLE", &tail)) {
  2615       FLAG_SET_CMDLINE(bool, PrintTLAB, true);
  2616     } else if (match_option(option, "-XX:-PrintTLE", &tail)) {
  2617       FLAG_SET_CMDLINE(bool, PrintTLAB, false);
  2618     } else if (match_option(option, "-XX:TLEFragmentationRatio=", &tail)) {
  2619       // No longer used.
  2620     } else if (match_option(option, "-XX:TLESize=", &tail)) {
  2621       julong long_tlab_size = 0;
  2622       ArgsRange errcode = parse_memory_size(tail, &long_tlab_size, 1);
  2623       if (errcode != arg_in_range) {
  2624         jio_fprintf(defaultStream::error_stream(),
  2625                     "Invalid TLAB size: %s\n", option->optionString);
  2626         describe_range_error(errcode);
  2627         return JNI_EINVAL;
  2629       FLAG_SET_CMDLINE(uintx, TLABSize, long_tlab_size);
  2630     } else if (match_option(option, "-XX:TLEThreadRatio=", &tail)) {
  2631       // No longer used.
  2632     } else if (match_option(option, "-XX:+UseTLE", &tail)) {
  2633       FLAG_SET_CMDLINE(bool, UseTLAB, true);
  2634     } else if (match_option(option, "-XX:-UseTLE", &tail)) {
  2635       FLAG_SET_CMDLINE(bool, UseTLAB, false);
  2636 SOLARIS_ONLY(
  2637     } else if (match_option(option, "-XX:+UsePermISM", &tail)) {
  2638       warning("-XX:+UsePermISM is obsolete.");
  2639       FLAG_SET_CMDLINE(bool, UseISM, true);
  2640     } else if (match_option(option, "-XX:-UsePermISM", &tail)) {
  2641       FLAG_SET_CMDLINE(bool, UseISM, false);
  2643     } else if (match_option(option, "-XX:+DisplayVMOutputToStderr", &tail)) {
  2644       FLAG_SET_CMDLINE(bool, DisplayVMOutputToStdout, false);
  2645       FLAG_SET_CMDLINE(bool, DisplayVMOutputToStderr, true);
  2646     } else if (match_option(option, "-XX:+DisplayVMOutputToStdout", &tail)) {
  2647       FLAG_SET_CMDLINE(bool, DisplayVMOutputToStderr, false);
  2648       FLAG_SET_CMDLINE(bool, DisplayVMOutputToStdout, true);
  2649     } else if (match_option(option, "-XX:+ExtendedDTraceProbes", &tail)) {
  2650 #ifdef SOLARIS
  2651       FLAG_SET_CMDLINE(bool, ExtendedDTraceProbes, true);
  2652       FLAG_SET_CMDLINE(bool, DTraceMethodProbes, true);
  2653       FLAG_SET_CMDLINE(bool, DTraceAllocProbes, true);
  2654       FLAG_SET_CMDLINE(bool, DTraceMonitorProbes, true);
  2655 #else // ndef SOLARIS
  2656       jio_fprintf(defaultStream::error_stream(),
  2657                   "ExtendedDTraceProbes flag is only applicable on Solaris\n");
  2658       return JNI_EINVAL;
  2659 #endif // ndef SOLARIS
  2660 #ifdef ASSERT
  2661     } else if (match_option(option, "-XX:+FullGCALot", &tail)) {
  2662       FLAG_SET_CMDLINE(bool, FullGCALot, true);
  2663       // disable scavenge before parallel mark-compact
  2664       FLAG_SET_CMDLINE(bool, ScavengeBeforeFullGC, false);
  2665 #endif
  2666     } else if (match_option(option, "-XX:CMSParPromoteBlocksToClaim=", &tail)) {
  2667       julong cms_blocks_to_claim = (julong)atol(tail);
  2668       FLAG_SET_CMDLINE(uintx, CMSParPromoteBlocksToClaim, cms_blocks_to_claim);
  2669       jio_fprintf(defaultStream::error_stream(),
  2670         "Please use -XX:OldPLABSize in place of "
  2671         "-XX:CMSParPromoteBlocksToClaim in the future\n");
  2672     } else if (match_option(option, "-XX:ParCMSPromoteBlocksToClaim=", &tail)) {
  2673       julong cms_blocks_to_claim = (julong)atol(tail);
  2674       FLAG_SET_CMDLINE(uintx, CMSParPromoteBlocksToClaim, cms_blocks_to_claim);
  2675       jio_fprintf(defaultStream::error_stream(),
  2676         "Please use -XX:OldPLABSize in place of "
  2677         "-XX:ParCMSPromoteBlocksToClaim in the future\n");
  2678     } else if (match_option(option, "-XX:ParallelGCOldGenAllocBufferSize=", &tail)) {
  2679       julong old_plab_size = 0;
  2680       ArgsRange errcode = parse_memory_size(tail, &old_plab_size, 1);
  2681       if (errcode != arg_in_range) {
  2682         jio_fprintf(defaultStream::error_stream(),
  2683                     "Invalid old PLAB size: %s\n", option->optionString);
  2684         describe_range_error(errcode);
  2685         return JNI_EINVAL;
  2687       FLAG_SET_CMDLINE(uintx, OldPLABSize, old_plab_size);
  2688       jio_fprintf(defaultStream::error_stream(),
  2689                   "Please use -XX:OldPLABSize in place of "
  2690                   "-XX:ParallelGCOldGenAllocBufferSize in the future\n");
  2691     } else if (match_option(option, "-XX:ParallelGCToSpaceAllocBufferSize=", &tail)) {
  2692       julong young_plab_size = 0;
  2693       ArgsRange errcode = parse_memory_size(tail, &young_plab_size, 1);
  2694       if (errcode != arg_in_range) {
  2695         jio_fprintf(defaultStream::error_stream(),
  2696                     "Invalid young PLAB size: %s\n", option->optionString);
  2697         describe_range_error(errcode);
  2698         return JNI_EINVAL;
  2700       FLAG_SET_CMDLINE(uintx, YoungPLABSize, young_plab_size);
  2701       jio_fprintf(defaultStream::error_stream(),
  2702                   "Please use -XX:YoungPLABSize in place of "
  2703                   "-XX:ParallelGCToSpaceAllocBufferSize in the future\n");
  2704     } else if (match_option(option, "-XX:CMSMarkStackSize=", &tail) ||
  2705                match_option(option, "-XX:G1MarkStackSize=", &tail)) {
  2706       julong stack_size = 0;
  2707       ArgsRange errcode = parse_memory_size(tail, &stack_size, 1);
  2708       if (errcode != arg_in_range) {
  2709         jio_fprintf(defaultStream::error_stream(),
  2710                     "Invalid mark stack size: %s\n", option->optionString);
  2711         describe_range_error(errcode);
  2712         return JNI_EINVAL;
  2714       FLAG_SET_CMDLINE(uintx, MarkStackSize, stack_size);
  2715     } else if (match_option(option, "-XX:CMSMarkStackSizeMax=", &tail)) {
  2716       julong max_stack_size = 0;
  2717       ArgsRange errcode = parse_memory_size(tail, &max_stack_size, 1);
  2718       if (errcode != arg_in_range) {
  2719         jio_fprintf(defaultStream::error_stream(),
  2720                     "Invalid maximum mark stack size: %s\n",
  2721                     option->optionString);
  2722         describe_range_error(errcode);
  2723         return JNI_EINVAL;
  2725       FLAG_SET_CMDLINE(uintx, MarkStackSizeMax, max_stack_size);
  2726     } else if (match_option(option, "-XX:ParallelMarkingThreads=", &tail) ||
  2727                match_option(option, "-XX:ParallelCMSThreads=", &tail)) {
  2728       uintx conc_threads = 0;
  2729       if (!parse_uintx(tail, &conc_threads, 1)) {
  2730         jio_fprintf(defaultStream::error_stream(),
  2731                     "Invalid concurrent threads: %s\n", option->optionString);
  2732         return JNI_EINVAL;
  2734       FLAG_SET_CMDLINE(uintx, ConcGCThreads, conc_threads);
  2735     } else if (match_option(option, "-XX:", &tail)) { // -XX:xxxx
  2736       // Skip -XX:Flags= since that case has already been handled
  2737       if (strncmp(tail, "Flags=", strlen("Flags=")) != 0) {
  2738         if (!process_argument(tail, args->ignoreUnrecognized, origin)) {
  2739           return JNI_EINVAL;
  2742     // Unknown option
  2743     } else if (is_bad_option(option, args->ignoreUnrecognized)) {
  2744       return JNI_ERR;
  2747   // Change the default value for flags  which have different default values
  2748   // when working with older JDKs.
  2749   if (JDK_Version::current().compare_major(6) <= 0 &&
  2750       FLAG_IS_DEFAULT(UseVMInterruptibleIO)) {
  2751     FLAG_SET_DEFAULT(UseVMInterruptibleIO, true);
  2753 #ifdef LINUX
  2754  if (JDK_Version::current().compare_major(6) <= 0 &&
  2755       FLAG_IS_DEFAULT(UseLinuxPosixThreadCPUClocks)) {
  2756     FLAG_SET_DEFAULT(UseLinuxPosixThreadCPUClocks, false);
  2758 #endif // LINUX
  2759   return JNI_OK;
  2762 jint Arguments::finalize_vm_init_args(SysClassPath* scp_p, bool scp_assembly_required) {
  2763   // This must be done after all -D arguments have been processed.
  2764   scp_p->expand_endorsed();
  2766   if (scp_assembly_required || scp_p->get_endorsed() != NULL) {
  2767     // Assemble the bootclasspath elements into the final path.
  2768     Arguments::set_sysclasspath(scp_p->combined_path());
  2771   // This must be done after all arguments have been processed.
  2772   // java_compiler() true means set to "NONE" or empty.
  2773   if (java_compiler() && !xdebug_mode()) {
  2774     // For backwards compatibility, we switch to interpreted mode if
  2775     // -Djava.compiler="NONE" or "" is specified AND "-Xdebug" was
  2776     // not specified.
  2777     set_mode_flags(_int);
  2779   if (CompileThreshold == 0) {
  2780     set_mode_flags(_int);
  2783 #ifndef COMPILER2
  2784   // Don't degrade server performance for footprint
  2785   if (FLAG_IS_DEFAULT(UseLargePages) &&
  2786       MaxHeapSize < LargePageHeapSizeThreshold) {
  2787     // No need for large granularity pages w/small heaps.
  2788     // Note that large pages are enabled/disabled for both the
  2789     // Java heap and the code cache.
  2790     FLAG_SET_DEFAULT(UseLargePages, false);
  2791     SOLARIS_ONLY(FLAG_SET_DEFAULT(UseMPSS, false));
  2792     SOLARIS_ONLY(FLAG_SET_DEFAULT(UseISM, false));
  2795   // Tiered compilation is undefined with C1.
  2796   TieredCompilation = false;
  2797 #else
  2798   if (!FLAG_IS_DEFAULT(OptoLoopAlignment) && FLAG_IS_DEFAULT(MaxLoopPad)) {
  2799     FLAG_SET_DEFAULT(MaxLoopPad, OptoLoopAlignment-1);
  2801   // Temporary disable bulk zeroing reduction with G1. See CR 6627983.
  2802   if (UseG1GC) {
  2803     FLAG_SET_DEFAULT(ReduceBulkZeroing, false);
  2805 #endif
  2807   // If we are running in a headless jre, force java.awt.headless property
  2808   // to be true unless the property has already been set.
  2809   // Also allow the OS environment variable JAVA_AWT_HEADLESS to set headless state.
  2810   if (os::is_headless_jre()) {
  2811     const char* headless = Arguments::get_property("java.awt.headless");
  2812     if (headless == NULL) {
  2813       char envbuffer[128];
  2814       if (!os::getenv("JAVA_AWT_HEADLESS", envbuffer, sizeof(envbuffer))) {
  2815         if (!add_property("java.awt.headless=true")) {
  2816           return JNI_ENOMEM;
  2818       } else {
  2819         char buffer[256];
  2820         strcpy(buffer, "java.awt.headless=");
  2821         strcat(buffer, envbuffer);
  2822         if (!add_property(buffer)) {
  2823           return JNI_ENOMEM;
  2829   if (!check_vm_args_consistency()) {
  2830     return JNI_ERR;
  2833   return JNI_OK;
  2836 jint Arguments::parse_java_options_environment_variable(SysClassPath* scp_p, bool* scp_assembly_required_p) {
  2837   return parse_options_environment_variable("_JAVA_OPTIONS", scp_p,
  2838                                             scp_assembly_required_p);
  2841 jint Arguments::parse_java_tool_options_environment_variable(SysClassPath* scp_p, bool* scp_assembly_required_p) {
  2842   return parse_options_environment_variable("JAVA_TOOL_OPTIONS", scp_p,
  2843                                             scp_assembly_required_p);
  2846 jint Arguments::parse_options_environment_variable(const char* name, SysClassPath* scp_p, bool* scp_assembly_required_p) {
  2847   const int N_MAX_OPTIONS = 64;
  2848   const int OPTION_BUFFER_SIZE = 1024;
  2849   char buffer[OPTION_BUFFER_SIZE];
  2851   // The variable will be ignored if it exceeds the length of the buffer.
  2852   // Don't check this variable if user has special privileges
  2853   // (e.g. unix su command).
  2854   if (os::getenv(name, buffer, sizeof(buffer)) &&
  2855       !os::have_special_privileges()) {
  2856     JavaVMOption options[N_MAX_OPTIONS];      // Construct option array
  2857     jio_fprintf(defaultStream::error_stream(),
  2858                 "Picked up %s: %s\n", name, buffer);
  2859     char* rd = buffer;                        // pointer to the input string (rd)
  2860     int i;
  2861     for (i = 0; i < N_MAX_OPTIONS;) {         // repeat for all options in the input string
  2862       while (isspace(*rd)) rd++;              // skip whitespace
  2863       if (*rd == 0) break;                    // we re done when the input string is read completely
  2865       // The output, option string, overwrites the input string.
  2866       // Because of quoting, the pointer to the option string (wrt) may lag the pointer to
  2867       // input string (rd).
  2868       char* wrt = rd;
  2870       options[i++].optionString = wrt;        // Fill in option
  2871       while (*rd != 0 && !isspace(*rd)) {     // unquoted strings terminate with a space or NULL
  2872         if (*rd == '\'' || *rd == '"') {      // handle a quoted string
  2873           int quote = *rd;                    // matching quote to look for
  2874           rd++;                               // don't copy open quote
  2875           while (*rd != quote) {              // include everything (even spaces) up until quote
  2876             if (*rd == 0) {                   // string termination means unmatched string
  2877               jio_fprintf(defaultStream::error_stream(),
  2878                           "Unmatched quote in %s\n", name);
  2879               return JNI_ERR;
  2881             *wrt++ = *rd++;                   // copy to option string
  2883           rd++;                               // don't copy close quote
  2884         } else {
  2885           *wrt++ = *rd++;                     // copy to option string
  2888       // Need to check if we're done before writing a NULL,
  2889       // because the write could be to the byte that rd is pointing to.
  2890       if (*rd++ == 0) {
  2891         *wrt = 0;
  2892         break;
  2894       *wrt = 0;                               // Zero terminate option
  2896     // Construct JavaVMInitArgs structure and parse as if it was part of the command line
  2897     JavaVMInitArgs vm_args;
  2898     vm_args.version = JNI_VERSION_1_2;
  2899     vm_args.options = options;
  2900     vm_args.nOptions = i;
  2901     vm_args.ignoreUnrecognized = IgnoreUnrecognizedVMOptions;
  2903     if (PrintVMOptions) {
  2904       const char* tail;
  2905       for (int i = 0; i < vm_args.nOptions; i++) {
  2906         const JavaVMOption *option = vm_args.options + i;
  2907         if (match_option(option, "-XX:", &tail)) {
  2908           logOption(tail);
  2913     return(parse_each_vm_init_arg(&vm_args, scp_p, scp_assembly_required_p, ENVIRON_VAR));
  2915   return JNI_OK;
  2919 // Parse entry point called from JNI_CreateJavaVM
  2921 jint Arguments::parse(const JavaVMInitArgs* args) {
  2923   // Sharing support
  2924   // Construct the path to the archive
  2925   char jvm_path[JVM_MAXPATHLEN];
  2926   os::jvm_path(jvm_path, sizeof(jvm_path));
  2927 #ifdef TIERED
  2928   if (strstr(jvm_path, "client") != NULL) {
  2929     force_client_mode = true;
  2931 #endif // TIERED
  2932   char *end = strrchr(jvm_path, *os::file_separator());
  2933   if (end != NULL) *end = '\0';
  2934   char *shared_archive_path = NEW_C_HEAP_ARRAY(char, strlen(jvm_path) +
  2935                                         strlen(os::file_separator()) + 20);
  2936   if (shared_archive_path == NULL) return JNI_ENOMEM;
  2937   strcpy(shared_archive_path, jvm_path);
  2938   strcat(shared_archive_path, os::file_separator());
  2939   strcat(shared_archive_path, "classes");
  2940   DEBUG_ONLY(strcat(shared_archive_path, "_g");)
  2941   strcat(shared_archive_path, ".jsa");
  2942   SharedArchivePath = shared_archive_path;
  2944   // Remaining part of option string
  2945   const char* tail;
  2947   // If flag "-XX:Flags=flags-file" is used it will be the first option to be processed.
  2948   bool settings_file_specified = false;
  2949   const char* flags_file;
  2950   int index;
  2951   for (index = 0; index < args->nOptions; index++) {
  2952     const JavaVMOption *option = args->options + index;
  2953     if (match_option(option, "-XX:Flags=", &tail)) {
  2954       flags_file = tail;
  2955       settings_file_specified = true;
  2957     if (match_option(option, "-XX:+PrintVMOptions", &tail)) {
  2958       PrintVMOptions = true;
  2960     if (match_option(option, "-XX:-PrintVMOptions", &tail)) {
  2961       PrintVMOptions = false;
  2963     if (match_option(option, "-XX:+IgnoreUnrecognizedVMOptions", &tail)) {
  2964       IgnoreUnrecognizedVMOptions = true;
  2966     if (match_option(option, "-XX:-IgnoreUnrecognizedVMOptions", &tail)) {
  2967       IgnoreUnrecognizedVMOptions = false;
  2969     if (match_option(option, "-XX:+PrintFlagsInitial", &tail)) {
  2970       CommandLineFlags::printFlags();
  2971       vm_exit(0);
  2974 #ifndef PRODUCT
  2975     if (match_option(option, "-XX:+PrintFlagsWithComments", &tail)) {
  2976       CommandLineFlags::printFlags(true);
  2977       vm_exit(0);
  2979 #endif
  2982   if (IgnoreUnrecognizedVMOptions) {
  2983     // uncast const to modify the flag args->ignoreUnrecognized
  2984     *(jboolean*)(&args->ignoreUnrecognized) = true;
  2987   // Parse specified settings file
  2988   if (settings_file_specified) {
  2989     if (!process_settings_file(flags_file, true, args->ignoreUnrecognized)) {
  2990       return JNI_EINVAL;
  2994   // Parse default .hotspotrc settings file
  2995   if (!settings_file_specified) {
  2996     if (!process_settings_file(".hotspotrc", false, args->ignoreUnrecognized)) {
  2997       return JNI_EINVAL;
  3001   if (PrintVMOptions) {
  3002     for (index = 0; index < args->nOptions; index++) {
  3003       const JavaVMOption *option = args->options + index;
  3004       if (match_option(option, "-XX:", &tail)) {
  3005         logOption(tail);
  3010   // Parse JavaVMInitArgs structure passed in, as well as JAVA_TOOL_OPTIONS and _JAVA_OPTIONS
  3011   jint result = parse_vm_init_args(args);
  3012   if (result != JNI_OK) {
  3013     return result;
  3016 #ifndef PRODUCT
  3017   if (TraceBytecodesAt != 0) {
  3018     TraceBytecodes = true;
  3020   if (CountCompiledCalls) {
  3021     if (UseCounterDecay) {
  3022       warning("UseCounterDecay disabled because CountCalls is set");
  3023       UseCounterDecay = false;
  3026 #endif // PRODUCT
  3028   if (EnableInvokeDynamic && !EnableMethodHandles) {
  3029     if (!FLAG_IS_DEFAULT(EnableMethodHandles)) {
  3030       warning("forcing EnableMethodHandles true because EnableInvokeDynamic is true");
  3032     EnableMethodHandles = true;
  3034   if (EnableMethodHandles && !AnonymousClasses) {
  3035     if (!FLAG_IS_DEFAULT(AnonymousClasses)) {
  3036       warning("forcing AnonymousClasses true because EnableMethodHandles is true");
  3038     AnonymousClasses = true;
  3040   if ((EnableMethodHandles || AnonymousClasses) && ScavengeRootsInCode == 0) {
  3041     if (!FLAG_IS_DEFAULT(ScavengeRootsInCode)) {
  3042       warning("forcing ScavengeRootsInCode non-zero because EnableMethodHandles or AnonymousClasses is true");
  3044     ScavengeRootsInCode = 1;
  3047   if (PrintGCDetails) {
  3048     // Turn on -verbose:gc options as well
  3049     PrintGC = true;
  3052   // Set object alignment values.
  3053   set_object_alignment();
  3055 #ifdef SERIALGC
  3056   force_serial_gc();
  3057 #endif // SERIALGC
  3058 #ifdef KERNEL
  3059   no_shared_spaces();
  3060 #endif // KERNEL
  3062   // Set flags based on ergonomics.
  3063   set_ergonomics_flags();
  3065   if (UseCompressedOops) {
  3066     check_compressed_oops_compat();
  3069   // Check the GC selections again.
  3070   if (!check_gc_consistency()) {
  3071     return JNI_EINVAL;
  3074   if (TieredCompilation) {
  3075     set_tiered_flags();
  3076   } else {
  3077     // Check if the policy is valid. Policies 0 and 1 are valid for non-tiered setup.
  3078     if (CompilationPolicyChoice >= 2) {
  3079       vm_exit_during_initialization(
  3080         "Incompatible compilation policy selected", NULL);
  3084 #ifndef KERNEL
  3085   if (UseConcMarkSweepGC) {
  3086     // Set flags for CMS and ParNew.  Check UseConcMarkSweep first
  3087     // to ensure that when both UseConcMarkSweepGC and UseParNewGC
  3088     // are true, we don't call set_parnew_gc_flags() as well.
  3089     set_cms_and_parnew_gc_flags();
  3090   } else {
  3091     // Set heap size based on available physical memory
  3092     set_heap_size();
  3093     // Set per-collector flags
  3094     if (UseParallelGC || UseParallelOldGC) {
  3095       set_parallel_gc_flags();
  3096     } else if (UseParNewGC) {
  3097       set_parnew_gc_flags();
  3098     } else if (UseG1GC) {
  3099       set_g1_gc_flags();
  3102 #endif // KERNEL
  3104 #ifdef SERIALGC
  3105   assert(verify_serial_gc_flags(), "SerialGC unset");
  3106 #endif // SERIALGC
  3108   // Set bytecode rewriting flags
  3109   set_bytecode_flags();
  3111   // Set flags if Aggressive optimization flags (-XX:+AggressiveOpts) enabled.
  3112   set_aggressive_opts_flags();
  3114   // Turn off biased locking for locking debug mode flags,
  3115   // which are subtlely different from each other but neither works with
  3116   // biased locking.
  3117   if (!UseFastLocking || UseHeavyMonitors) {
  3118     if (!FLAG_IS_DEFAULT(UseBiasedLocking) && UseBiasedLocking) {
  3119       // flag set to true on command line; warn the user that they
  3120       // can't enable biased locking here
  3121       warning("Biased Locking is not supported with locking debug flags"
  3122               "; ignoring UseBiasedLocking flag." );
  3124     UseBiasedLocking = false;
  3127 #ifdef CC_INTERP
  3128   // Clear flags not supported by the C++ interpreter
  3129   FLAG_SET_DEFAULT(ProfileInterpreter, false);
  3130   FLAG_SET_DEFAULT(UseBiasedLocking, false);
  3131   LP64_ONLY(FLAG_SET_DEFAULT(UseCompressedOops, false));
  3132 #endif // CC_INTERP
  3134 #ifdef COMPILER2
  3135   if (!UseBiasedLocking || EmitSync != 0) {
  3136     UseOptoBiasInlining = false;
  3138 #endif
  3140   if (PrintAssembly && FLAG_IS_DEFAULT(DebugNonSafepoints)) {
  3141     warning("PrintAssembly is enabled; turning on DebugNonSafepoints to gain additional output");
  3142     DebugNonSafepoints = true;
  3145 #ifndef PRODUCT
  3146   if (CompileTheWorld) {
  3147     // Force NmethodSweeper to sweep whole CodeCache each time.
  3148     if (FLAG_IS_DEFAULT(NmethodSweepFraction)) {
  3149       NmethodSweepFraction = 1;
  3152 #endif
  3154   if (PrintCommandLineFlags) {
  3155     CommandLineFlags::printSetFlags();
  3158   // Apply CPU specific policy for the BiasedLocking
  3159   if (UseBiasedLocking) {
  3160     if (!VM_Version::use_biased_locking() &&
  3161         !(FLAG_IS_CMDLINE(UseBiasedLocking))) {
  3162       UseBiasedLocking = false;
  3166   // set PauseAtExit if the gamma launcher was used and a debugger is attached
  3167   // but only if not already set on the commandline
  3168   if (Arguments::created_by_gamma_launcher() && os::is_debugger_attached()) {
  3169     bool set = false;
  3170     CommandLineFlags::wasSetOnCmdline("PauseAtExit", &set);
  3171     if (!set) {
  3172       FLAG_SET_DEFAULT(PauseAtExit, true);
  3176   return JNI_OK;
  3179 int Arguments::PropertyList_count(SystemProperty* pl) {
  3180   int count = 0;
  3181   while(pl != NULL) {
  3182     count++;
  3183     pl = pl->next();
  3185   return count;
  3188 const char* Arguments::PropertyList_get_value(SystemProperty *pl, const char* key) {
  3189   assert(key != NULL, "just checking");
  3190   SystemProperty* prop;
  3191   for (prop = pl; prop != NULL; prop = prop->next()) {
  3192     if (strcmp(key, prop->key()) == 0) return prop->value();
  3194   return NULL;
  3197 const char* Arguments::PropertyList_get_key_at(SystemProperty *pl, int index) {
  3198   int count = 0;
  3199   const char* ret_val = NULL;
  3201   while(pl != NULL) {
  3202     if(count >= index) {
  3203       ret_val = pl->key();
  3204       break;
  3206     count++;
  3207     pl = pl->next();
  3210   return ret_val;
  3213 char* Arguments::PropertyList_get_value_at(SystemProperty* pl, int index) {
  3214   int count = 0;
  3215   char* ret_val = NULL;
  3217   while(pl != NULL) {
  3218     if(count >= index) {
  3219       ret_val = pl->value();
  3220       break;
  3222     count++;
  3223     pl = pl->next();
  3226   return ret_val;
  3229 void Arguments::PropertyList_add(SystemProperty** plist, SystemProperty *new_p) {
  3230   SystemProperty* p = *plist;
  3231   if (p == NULL) {
  3232     *plist = new_p;
  3233   } else {
  3234     while (p->next() != NULL) {
  3235       p = p->next();
  3237     p->set_next(new_p);
  3241 void Arguments::PropertyList_add(SystemProperty** plist, const char* k, char* v) {
  3242   if (plist == NULL)
  3243     return;
  3245   SystemProperty* new_p = new SystemProperty(k, v, true);
  3246   PropertyList_add(plist, new_p);
  3249 // This add maintains unique property key in the list.
  3250 void Arguments::PropertyList_unique_add(SystemProperty** plist, const char* k, char* v, jboolean append) {
  3251   if (plist == NULL)
  3252     return;
  3254   // If property key exist then update with new value.
  3255   SystemProperty* prop;
  3256   for (prop = *plist; prop != NULL; prop = prop->next()) {
  3257     if (strcmp(k, prop->key()) == 0) {
  3258       if (append) {
  3259         prop->append_value(v);
  3260       } else {
  3261         prop->set_value(v);
  3263       return;
  3267   PropertyList_add(plist, k, v);
  3270 #ifdef KERNEL
  3271 char *Arguments::get_kernel_properties() {
  3272   // Find properties starting with kernel and append them to string
  3273   // We need to find out how long they are first because the URL's that they
  3274   // might point to could get long.
  3275   int length = 0;
  3276   SystemProperty* prop;
  3277   for (prop = _system_properties; prop != NULL; prop = prop->next()) {
  3278     if (strncmp(prop->key(), "kernel.", 7 ) == 0) {
  3279       length += (strlen(prop->key()) + strlen(prop->value()) + 5);  // "-D ="
  3282   // Add one for null terminator.
  3283   char *props = AllocateHeap(length + 1, "get_kernel_properties");
  3284   if (length != 0) {
  3285     int pos = 0;
  3286     for (prop = _system_properties; prop != NULL; prop = prop->next()) {
  3287       if (strncmp(prop->key(), "kernel.", 7 ) == 0) {
  3288         jio_snprintf(&props[pos], length-pos,
  3289                      "-D%s=%s ", prop->key(), prop->value());
  3290         pos = strlen(props);
  3294   // null terminate props in case of null
  3295   props[length] = '\0';
  3296   return props;
  3298 #endif // KERNEL
  3300 // Copies src into buf, replacing "%%" with "%" and "%p" with pid
  3301 // Returns true if all of the source pointed by src has been copied over to
  3302 // the destination buffer pointed by buf. Otherwise, returns false.
  3303 // Notes:
  3304 // 1. If the length (buflen) of the destination buffer excluding the
  3305 // NULL terminator character is not long enough for holding the expanded
  3306 // pid characters, it also returns false instead of returning the partially
  3307 // expanded one.
  3308 // 2. The passed in "buflen" should be large enough to hold the null terminator.
  3309 bool Arguments::copy_expand_pid(const char* src, size_t srclen,
  3310                                 char* buf, size_t buflen) {
  3311   const char* p = src;
  3312   char* b = buf;
  3313   const char* src_end = &src[srclen];
  3314   char* buf_end = &buf[buflen - 1];
  3316   while (p < src_end && b < buf_end) {
  3317     if (*p == '%') {
  3318       switch (*(++p)) {
  3319       case '%':         // "%%" ==> "%"
  3320         *b++ = *p++;
  3321         break;
  3322       case 'p':  {       //  "%p" ==> current process id
  3323         // buf_end points to the character before the last character so
  3324         // that we could write '\0' to the end of the buffer.
  3325         size_t buf_sz = buf_end - b + 1;
  3326         int ret = jio_snprintf(b, buf_sz, "%d", os::current_process_id());
  3328         // if jio_snprintf fails or the buffer is not long enough to hold
  3329         // the expanded pid, returns false.
  3330         if (ret < 0 || ret >= (int)buf_sz) {
  3331           return false;
  3332         } else {
  3333           b += ret;
  3334           assert(*b == '\0', "fail in copy_expand_pid");
  3335           if (p == src_end && b == buf_end + 1) {
  3336             // reach the end of the buffer.
  3337             return true;
  3340         p++;
  3341         break;
  3343       default :
  3344         *b++ = '%';
  3346     } else {
  3347       *b++ = *p++;
  3350   *b = '\0';
  3351   return (p == src_end); // return false if not all of the source was copied

mercurial