src/share/vm/runtime/arguments.cpp

Mon, 13 May 2013 07:53:45 +0200

author
rbackman
date
Mon, 13 May 2013 07:53:45 +0200
changeset 5096
735c995bf1a1
parent 5078
194f52aa2f23
parent 5093
9b77ca4ce35e
child 5102
f944ba972151
permissions
-rw-r--r--

Merge

     1 /*
     2  * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     8  *
     9  * This code is distributed in the hope that it will be useful, but WITHOUT
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    12  * version 2 for more details (a copy is included in the LICENSE file that
    13  * accompanied this code).
    14  *
    15  * You should have received a copy of the GNU General Public License version
    16  * 2 along with this work; if not, write to the Free Software Foundation,
    17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    18  *
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    22  *
    23  */
    25 #include "precompiled.hpp"
    26 #include "classfile/javaAssertions.hpp"
    27 #include "classfile/symbolTable.hpp"
    28 #include "compiler/compilerOracle.hpp"
    29 #include "memory/allocation.inline.hpp"
    30 #include "memory/cardTableRS.hpp"
    31 #include "memory/referenceProcessor.hpp"
    32 #include "memory/universe.inline.hpp"
    33 #include "oops/oop.inline.hpp"
    34 #include "prims/jvmtiExport.hpp"
    35 #include "runtime/arguments.hpp"
    36 #include "runtime/globals_extension.hpp"
    37 #include "runtime/java.hpp"
    38 #include "services/management.hpp"
    39 #include "services/memTracker.hpp"
    40 #include "utilities/defaultStream.hpp"
    41 #include "utilities/macros.hpp"
    42 #include "utilities/taskqueue.hpp"
    43 #ifdef TARGET_OS_FAMILY_linux
    44 # include "os_linux.inline.hpp"
    45 #endif
    46 #ifdef TARGET_OS_FAMILY_solaris
    47 # include "os_solaris.inline.hpp"
    48 #endif
    49 #ifdef TARGET_OS_FAMILY_windows
    50 # include "os_windows.inline.hpp"
    51 #endif
    52 #ifdef TARGET_OS_FAMILY_bsd
    53 # include "os_bsd.inline.hpp"
    54 #endif
    55 #if INCLUDE_ALL_GCS
    56 #include "gc_implementation/concurrentMarkSweep/compactibleFreeListSpace.hpp"
    57 #endif // INCLUDE_ALL_GCS
    59 // Note: This is a special bug reporting site for the JVM
    60 #define DEFAULT_VENDOR_URL_BUG "http://bugreport.sun.com/bugreport/crash.jsp"
    61 #define DEFAULT_JAVA_LAUNCHER  "generic"
    63 char**  Arguments::_jvm_flags_array             = NULL;
    64 int     Arguments::_num_jvm_flags               = 0;
    65 char**  Arguments::_jvm_args_array              = NULL;
    66 int     Arguments::_num_jvm_args                = 0;
    67 char*  Arguments::_java_command                 = NULL;
    68 SystemProperty* Arguments::_system_properties   = NULL;
    69 const char*  Arguments::_gc_log_filename        = NULL;
    70 bool   Arguments::_has_profile                  = false;
    71 bool   Arguments::_has_alloc_profile            = false;
    72 uintx  Arguments::_min_heap_size                = 0;
    73 Arguments::Mode Arguments::_mode                = _mixed;
    74 bool   Arguments::_java_compiler                = false;
    75 bool   Arguments::_xdebug_mode                  = false;
    76 const char*  Arguments::_java_vendor_url_bug    = DEFAULT_VENDOR_URL_BUG;
    77 const char*  Arguments::_sun_java_launcher      = DEFAULT_JAVA_LAUNCHER;
    78 int    Arguments::_sun_java_launcher_pid        = -1;
    79 bool   Arguments::_created_by_gamma_launcher    = false;
    81 // These parameters are reset in method parse_vm_init_args(JavaVMInitArgs*)
    82 bool   Arguments::_AlwaysCompileLoopMethods     = AlwaysCompileLoopMethods;
    83 bool   Arguments::_UseOnStackReplacement        = UseOnStackReplacement;
    84 bool   Arguments::_BackgroundCompilation        = BackgroundCompilation;
    85 bool   Arguments::_ClipInlining                 = ClipInlining;
    87 char*  Arguments::SharedArchivePath             = NULL;
    89 AgentLibraryList Arguments::_libraryList;
    90 AgentLibraryList Arguments::_agentList;
    92 abort_hook_t     Arguments::_abort_hook         = NULL;
    93 exit_hook_t      Arguments::_exit_hook          = NULL;
    94 vfprintf_hook_t  Arguments::_vfprintf_hook      = NULL;
    97 SystemProperty *Arguments::_java_ext_dirs = NULL;
    98 SystemProperty *Arguments::_java_endorsed_dirs = NULL;
    99 SystemProperty *Arguments::_sun_boot_library_path = NULL;
   100 SystemProperty *Arguments::_java_library_path = NULL;
   101 SystemProperty *Arguments::_java_home = NULL;
   102 SystemProperty *Arguments::_java_class_path = NULL;
   103 SystemProperty *Arguments::_sun_boot_class_path = NULL;
   105 char* Arguments::_meta_index_path = NULL;
   106 char* Arguments::_meta_index_dir = NULL;
   108 // Check if head of 'option' matches 'name', and sets 'tail' remaining part of option string
   110 static bool match_option(const JavaVMOption *option, const char* name,
   111                          const char** tail) {
   112   int len = (int)strlen(name);
   113   if (strncmp(option->optionString, name, len) == 0) {
   114     *tail = option->optionString + len;
   115     return true;
   116   } else {
   117     return false;
   118   }
   119 }
   121 static void logOption(const char* opt) {
   122   if (PrintVMOptions) {
   123     jio_fprintf(defaultStream::output_stream(), "VM option '%s'\n", opt);
   124   }
   125 }
   127 // Process java launcher properties.
   128 void Arguments::process_sun_java_launcher_properties(JavaVMInitArgs* args) {
   129   // See if sun.java.launcher or sun.java.launcher.pid is defined.
   130   // Must do this before setting up other system properties,
   131   // as some of them may depend on launcher type.
   132   for (int index = 0; index < args->nOptions; index++) {
   133     const JavaVMOption* option = args->options + index;
   134     const char* tail;
   136     if (match_option(option, "-Dsun.java.launcher=", &tail)) {
   137       process_java_launcher_argument(tail, option->extraInfo);
   138       continue;
   139     }
   140     if (match_option(option, "-Dsun.java.launcher.pid=", &tail)) {
   141       _sun_java_launcher_pid = atoi(tail);
   142       continue;
   143     }
   144   }
   145 }
   147 // Initialize system properties key and value.
   148 void Arguments::init_system_properties() {
   150   PropertyList_add(&_system_properties, new SystemProperty("java.vm.specification.name",
   151                                                                  "Java Virtual Machine Specification",  false));
   152   PropertyList_add(&_system_properties, new SystemProperty("java.vm.version", VM_Version::vm_release(),  false));
   153   PropertyList_add(&_system_properties, new SystemProperty("java.vm.name", VM_Version::vm_name(),  false));
   154   PropertyList_add(&_system_properties, new SystemProperty("java.vm.info", VM_Version::vm_info_string(),  true));
   156   // following are JVMTI agent writeable properties.
   157   // Properties values are set to NULL and they are
   158   // os specific they are initialized in os::init_system_properties_values().
   159   _java_ext_dirs = new SystemProperty("java.ext.dirs", NULL,  true);
   160   _java_endorsed_dirs = new SystemProperty("java.endorsed.dirs", NULL,  true);
   161   _sun_boot_library_path = new SystemProperty("sun.boot.library.path", NULL,  true);
   162   _java_library_path = new SystemProperty("java.library.path", NULL,  true);
   163   _java_home =  new SystemProperty("java.home", NULL,  true);
   164   _sun_boot_class_path = new SystemProperty("sun.boot.class.path", NULL,  true);
   166   _java_class_path = new SystemProperty("java.class.path", "",  true);
   168   // Add to System Property list.
   169   PropertyList_add(&_system_properties, _java_ext_dirs);
   170   PropertyList_add(&_system_properties, _java_endorsed_dirs);
   171   PropertyList_add(&_system_properties, _sun_boot_library_path);
   172   PropertyList_add(&_system_properties, _java_library_path);
   173   PropertyList_add(&_system_properties, _java_home);
   174   PropertyList_add(&_system_properties, _java_class_path);
   175   PropertyList_add(&_system_properties, _sun_boot_class_path);
   177   // Set OS specific system properties values
   178   os::init_system_properties_values();
   179 }
   182   // Update/Initialize System properties after JDK version number is known
   183 void Arguments::init_version_specific_system_properties() {
   184   enum { bufsz = 16 };
   185   char buffer[bufsz];
   186   const char* spec_vendor = "Sun Microsystems Inc.";
   187   uint32_t spec_version = 0;
   189   if (JDK_Version::is_gte_jdk17x_version()) {
   190     spec_vendor = "Oracle Corporation";
   191     spec_version = JDK_Version::current().major_version();
   192   }
   193   jio_snprintf(buffer, bufsz, "1." UINT32_FORMAT, spec_version);
   195   PropertyList_add(&_system_properties,
   196       new SystemProperty("java.vm.specification.vendor",  spec_vendor, false));
   197   PropertyList_add(&_system_properties,
   198       new SystemProperty("java.vm.specification.version", buffer, false));
   199   PropertyList_add(&_system_properties,
   200       new SystemProperty("java.vm.vendor", VM_Version::vm_vendor(),  false));
   201 }
   203 /**
   204  * Provide a slightly more user-friendly way of eliminating -XX flags.
   205  * When a flag is eliminated, it can be added to this list in order to
   206  * continue accepting this flag on the command-line, while issuing a warning
   207  * and ignoring the value.  Once the JDK version reaches the 'accept_until'
   208  * limit, we flatly refuse to admit the existence of the flag.  This allows
   209  * a flag to die correctly over JDK releases using HSX.
   210  */
   211 typedef struct {
   212   const char* name;
   213   JDK_Version obsoleted_in; // when the flag went away
   214   JDK_Version accept_until; // which version to start denying the existence
   215 } ObsoleteFlag;
   217 static ObsoleteFlag obsolete_jvm_flags[] = {
   218   { "UseTrainGC",                    JDK_Version::jdk(5), JDK_Version::jdk(7) },
   219   { "UseSpecialLargeObjectHandling", JDK_Version::jdk(5), JDK_Version::jdk(7) },
   220   { "UseOversizedCarHandling",       JDK_Version::jdk(5), JDK_Version::jdk(7) },
   221   { "TraceCarAllocation",            JDK_Version::jdk(5), JDK_Version::jdk(7) },
   222   { "PrintTrainGCProcessingStats",   JDK_Version::jdk(5), JDK_Version::jdk(7) },
   223   { "LogOfCarSpaceSize",             JDK_Version::jdk(5), JDK_Version::jdk(7) },
   224   { "OversizedCarThreshold",         JDK_Version::jdk(5), JDK_Version::jdk(7) },
   225   { "MinTickInterval",               JDK_Version::jdk(5), JDK_Version::jdk(7) },
   226   { "DefaultTickInterval",           JDK_Version::jdk(5), JDK_Version::jdk(7) },
   227   { "MaxTickInterval",               JDK_Version::jdk(5), JDK_Version::jdk(7) },
   228   { "DelayTickAdjustment",           JDK_Version::jdk(5), JDK_Version::jdk(7) },
   229   { "ProcessingToTenuringRatio",     JDK_Version::jdk(5), JDK_Version::jdk(7) },
   230   { "MinTrainLength",                JDK_Version::jdk(5), JDK_Version::jdk(7) },
   231   { "AppendRatio",         JDK_Version::jdk_update(6,10), JDK_Version::jdk(7) },
   232   { "DefaultMaxRAM",       JDK_Version::jdk_update(6,18), JDK_Version::jdk(7) },
   233   { "DefaultInitialRAMFraction",
   234                            JDK_Version::jdk_update(6,18), JDK_Version::jdk(7) },
   235   { "UseDepthFirstScavengeOrder",
   236                            JDK_Version::jdk_update(6,22), JDK_Version::jdk(7) },
   237   { "HandlePromotionFailure",
   238                            JDK_Version::jdk_update(6,24), JDK_Version::jdk(8) },
   239   { "MaxLiveObjectEvacuationRatio",
   240                            JDK_Version::jdk_update(6,24), JDK_Version::jdk(8) },
   241   { "ForceSharedSpaces",   JDK_Version::jdk_update(6,25), JDK_Version::jdk(8) },
   242   { "UseParallelOldGCCompacting",
   243                            JDK_Version::jdk_update(6,27), JDK_Version::jdk(8) },
   244   { "UseParallelDensePrefixUpdate",
   245                            JDK_Version::jdk_update(6,27), JDK_Version::jdk(8) },
   246   { "UseParallelOldGCDensePrefix",
   247                            JDK_Version::jdk_update(6,27), JDK_Version::jdk(8) },
   248   { "AllowTransitionalJSR292",       JDK_Version::jdk(7), JDK_Version::jdk(8) },
   249   { "UseCompressedStrings",          JDK_Version::jdk(7), JDK_Version::jdk(8) },
   250   { "CMSPermGenPrecleaningEnabled", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
   251   { "CMSTriggerPermRatio", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
   252   { "CMSInitiatingPermOccupancyFraction", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
   253   { "AdaptivePermSizeWeight", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
   254   { "PermGenPadding", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
   255   { "PermMarkSweepDeadRatio", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
   256   { "PermSize", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
   257   { "MaxPermSize", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
   258   { "MinPermHeapExpansion", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
   259   { "MaxPermHeapExpansion", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
   260   { "CMSRevisitStackSize",           JDK_Version::jdk(8), JDK_Version::jdk(9) },
   261   { "PrintRevisitStats",             JDK_Version::jdk(8), JDK_Version::jdk(9) },
   262   { "UseVectoredExceptions",         JDK_Version::jdk(8), JDK_Version::jdk(9) },
   263   { "UseSplitVerifier",              JDK_Version::jdk(8), JDK_Version::jdk(9) },
   264 #ifdef PRODUCT
   265   { "DesiredMethodLimit",
   266                            JDK_Version::jdk_update(7, 2), JDK_Version::jdk(8) },
   267 #endif // PRODUCT
   268   { NULL, JDK_Version(0), JDK_Version(0) }
   269 };
   271 // Returns true if the flag is obsolete and fits into the range specified
   272 // for being ignored.  In the case that the flag is ignored, the 'version'
   273 // value is filled in with the version number when the flag became
   274 // obsolete so that that value can be displayed to the user.
   275 bool Arguments::is_newly_obsolete(const char *s, JDK_Version* version) {
   276   int i = 0;
   277   assert(version != NULL, "Must provide a version buffer");
   278   while (obsolete_jvm_flags[i].name != NULL) {
   279     const ObsoleteFlag& flag_status = obsolete_jvm_flags[i];
   280     // <flag>=xxx form
   281     // [-|+]<flag> form
   282     if ((strncmp(flag_status.name, s, strlen(flag_status.name)) == 0) ||
   283         ((s[0] == '+' || s[0] == '-') &&
   284         (strncmp(flag_status.name, &s[1], strlen(flag_status.name)) == 0))) {
   285       if (JDK_Version::current().compare(flag_status.accept_until) == -1) {
   286           *version = flag_status.obsoleted_in;
   287           return true;
   288       }
   289     }
   290     i++;
   291   }
   292   return false;
   293 }
   295 // Constructs the system class path (aka boot class path) from the following
   296 // components, in order:
   297 //
   298 //     prefix           // from -Xbootclasspath/p:...
   299 //     endorsed         // the expansion of -Djava.endorsed.dirs=...
   300 //     base             // from os::get_system_properties() or -Xbootclasspath=
   301 //     suffix           // from -Xbootclasspath/a:...
   302 //
   303 // java.endorsed.dirs is a list of directories; any jar or zip files in the
   304 // directories are added to the sysclasspath just before the base.
   305 //
   306 // This could be AllStatic, but it isn't needed after argument processing is
   307 // complete.
   308 class SysClassPath: public StackObj {
   309 public:
   310   SysClassPath(const char* base);
   311   ~SysClassPath();
   313   inline void set_base(const char* base);
   314   inline void add_prefix(const char* prefix);
   315   inline void add_suffix_to_prefix(const char* suffix);
   316   inline void add_suffix(const char* suffix);
   317   inline void reset_path(const char* base);
   319   // Expand the jar/zip files in each directory listed by the java.endorsed.dirs
   320   // property.  Must be called after all command-line arguments have been
   321   // processed (in particular, -Djava.endorsed.dirs=...) and before calling
   322   // combined_path().
   323   void expand_endorsed();
   325   inline const char* get_base()     const { return _items[_scp_base]; }
   326   inline const char* get_prefix()   const { return _items[_scp_prefix]; }
   327   inline const char* get_suffix()   const { return _items[_scp_suffix]; }
   328   inline const char* get_endorsed() const { return _items[_scp_endorsed]; }
   330   // Combine all the components into a single c-heap-allocated string; caller
   331   // must free the string if/when no longer needed.
   332   char* combined_path();
   334 private:
   335   // Utility routines.
   336   static char* add_to_path(const char* path, const char* str, bool prepend);
   337   static char* add_jars_to_path(char* path, const char* directory);
   339   inline void reset_item_at(int index);
   341   // Array indices for the items that make up the sysclasspath.  All except the
   342   // base are allocated in the C heap and freed by this class.
   343   enum {
   344     _scp_prefix,        // from -Xbootclasspath/p:...
   345     _scp_endorsed,      // the expansion of -Djava.endorsed.dirs=...
   346     _scp_base,          // the default sysclasspath
   347     _scp_suffix,        // from -Xbootclasspath/a:...
   348     _scp_nitems         // the number of items, must be last.
   349   };
   351   const char* _items[_scp_nitems];
   352   DEBUG_ONLY(bool _expansion_done;)
   353 };
   355 SysClassPath::SysClassPath(const char* base) {
   356   memset(_items, 0, sizeof(_items));
   357   _items[_scp_base] = base;
   358   DEBUG_ONLY(_expansion_done = false;)
   359 }
   361 SysClassPath::~SysClassPath() {
   362   // Free everything except the base.
   363   for (int i = 0; i < _scp_nitems; ++i) {
   364     if (i != _scp_base) reset_item_at(i);
   365   }
   366   DEBUG_ONLY(_expansion_done = false;)
   367 }
   369 inline void SysClassPath::set_base(const char* base) {
   370   _items[_scp_base] = base;
   371 }
   373 inline void SysClassPath::add_prefix(const char* prefix) {
   374   _items[_scp_prefix] = add_to_path(_items[_scp_prefix], prefix, true);
   375 }
   377 inline void SysClassPath::add_suffix_to_prefix(const char* suffix) {
   378   _items[_scp_prefix] = add_to_path(_items[_scp_prefix], suffix, false);
   379 }
   381 inline void SysClassPath::add_suffix(const char* suffix) {
   382   _items[_scp_suffix] = add_to_path(_items[_scp_suffix], suffix, false);
   383 }
   385 inline void SysClassPath::reset_item_at(int index) {
   386   assert(index < _scp_nitems && index != _scp_base, "just checking");
   387   if (_items[index] != NULL) {
   388     FREE_C_HEAP_ARRAY(char, _items[index], mtInternal);
   389     _items[index] = NULL;
   390   }
   391 }
   393 inline void SysClassPath::reset_path(const char* base) {
   394   // Clear the prefix and suffix.
   395   reset_item_at(_scp_prefix);
   396   reset_item_at(_scp_suffix);
   397   set_base(base);
   398 }
   400 //------------------------------------------------------------------------------
   402 void SysClassPath::expand_endorsed() {
   403   assert(_items[_scp_endorsed] == NULL, "can only be called once.");
   405   const char* path = Arguments::get_property("java.endorsed.dirs");
   406   if (path == NULL) {
   407     path = Arguments::get_endorsed_dir();
   408     assert(path != NULL, "no default for java.endorsed.dirs");
   409   }
   411   char* expanded_path = NULL;
   412   const char separator = *os::path_separator();
   413   const char* const end = path + strlen(path);
   414   while (path < end) {
   415     const char* tmp_end = strchr(path, separator);
   416     if (tmp_end == NULL) {
   417       expanded_path = add_jars_to_path(expanded_path, path);
   418       path = end;
   419     } else {
   420       char* dirpath = NEW_C_HEAP_ARRAY(char, tmp_end - path + 1, mtInternal);
   421       memcpy(dirpath, path, tmp_end - path);
   422       dirpath[tmp_end - path] = '\0';
   423       expanded_path = add_jars_to_path(expanded_path, dirpath);
   424       FREE_C_HEAP_ARRAY(char, dirpath, mtInternal);
   425       path = tmp_end + 1;
   426     }
   427   }
   428   _items[_scp_endorsed] = expanded_path;
   429   DEBUG_ONLY(_expansion_done = true;)
   430 }
   432 // Combine the bootclasspath elements, some of which may be null, into a single
   433 // c-heap-allocated string.
   434 char* SysClassPath::combined_path() {
   435   assert(_items[_scp_base] != NULL, "empty default sysclasspath");
   436   assert(_expansion_done, "must call expand_endorsed() first.");
   438   size_t lengths[_scp_nitems];
   439   size_t total_len = 0;
   441   const char separator = *os::path_separator();
   443   // Get the lengths.
   444   int i;
   445   for (i = 0; i < _scp_nitems; ++i) {
   446     if (_items[i] != NULL) {
   447       lengths[i] = strlen(_items[i]);
   448       // Include space for the separator char (or a NULL for the last item).
   449       total_len += lengths[i] + 1;
   450     }
   451   }
   452   assert(total_len > 0, "empty sysclasspath not allowed");
   454   // Copy the _items to a single string.
   455   char* cp = NEW_C_HEAP_ARRAY(char, total_len, mtInternal);
   456   char* cp_tmp = cp;
   457   for (i = 0; i < _scp_nitems; ++i) {
   458     if (_items[i] != NULL) {
   459       memcpy(cp_tmp, _items[i], lengths[i]);
   460       cp_tmp += lengths[i];
   461       *cp_tmp++ = separator;
   462     }
   463   }
   464   *--cp_tmp = '\0';     // Replace the extra separator.
   465   return cp;
   466 }
   468 // Note:  path must be c-heap-allocated (or NULL); it is freed if non-null.
   469 char*
   470 SysClassPath::add_to_path(const char* path, const char* str, bool prepend) {
   471   char *cp;
   473   assert(str != NULL, "just checking");
   474   if (path == NULL) {
   475     size_t len = strlen(str) + 1;
   476     cp = NEW_C_HEAP_ARRAY(char, len, mtInternal);
   477     memcpy(cp, str, len);                       // copy the trailing null
   478   } else {
   479     const char separator = *os::path_separator();
   480     size_t old_len = strlen(path);
   481     size_t str_len = strlen(str);
   482     size_t len = old_len + str_len + 2;
   484     if (prepend) {
   485       cp = NEW_C_HEAP_ARRAY(char, len, mtInternal);
   486       char* cp_tmp = cp;
   487       memcpy(cp_tmp, str, str_len);
   488       cp_tmp += str_len;
   489       *cp_tmp = separator;
   490       memcpy(++cp_tmp, path, old_len + 1);      // copy the trailing null
   491       FREE_C_HEAP_ARRAY(char, path, mtInternal);
   492     } else {
   493       cp = REALLOC_C_HEAP_ARRAY(char, path, len, mtInternal);
   494       char* cp_tmp = cp + old_len;
   495       *cp_tmp = separator;
   496       memcpy(++cp_tmp, str, str_len + 1);       // copy the trailing null
   497     }
   498   }
   499   return cp;
   500 }
   502 // Scan the directory and append any jar or zip files found to path.
   503 // Note:  path must be c-heap-allocated (or NULL); it is freed if non-null.
   504 char* SysClassPath::add_jars_to_path(char* path, const char* directory) {
   505   DIR* dir = os::opendir(directory);
   506   if (dir == NULL) return path;
   508   char dir_sep[2] = { '\0', '\0' };
   509   size_t directory_len = strlen(directory);
   510   const char fileSep = *os::file_separator();
   511   if (directory[directory_len - 1] != fileSep) dir_sep[0] = fileSep;
   513   /* Scan the directory for jars/zips, appending them to path. */
   514   struct dirent *entry;
   515   char *dbuf = NEW_C_HEAP_ARRAY(char, os::readdir_buf_size(directory), mtInternal);
   516   while ((entry = os::readdir(dir, (dirent *) dbuf)) != NULL) {
   517     const char* name = entry->d_name;
   518     const char* ext = name + strlen(name) - 4;
   519     bool isJarOrZip = ext > name &&
   520       (os::file_name_strcmp(ext, ".jar") == 0 ||
   521        os::file_name_strcmp(ext, ".zip") == 0);
   522     if (isJarOrZip) {
   523       char* jarpath = NEW_C_HEAP_ARRAY(char, directory_len + 2 + strlen(name), mtInternal);
   524       sprintf(jarpath, "%s%s%s", directory, dir_sep, name);
   525       path = add_to_path(path, jarpath, false);
   526       FREE_C_HEAP_ARRAY(char, jarpath, mtInternal);
   527     }
   528   }
   529   FREE_C_HEAP_ARRAY(char, dbuf, mtInternal);
   530   os::closedir(dir);
   531   return path;
   532 }
   534 // Parses a memory size specification string.
   535 static bool atomull(const char *s, julong* result) {
   536   julong n = 0;
   537   int args_read = sscanf(s, JULONG_FORMAT, &n);
   538   if (args_read != 1) {
   539     return false;
   540   }
   541   while (*s != '\0' && isdigit(*s)) {
   542     s++;
   543   }
   544   // 4705540: illegal if more characters are found after the first non-digit
   545   if (strlen(s) > 1) {
   546     return false;
   547   }
   548   switch (*s) {
   549     case 'T': case 't':
   550       *result = n * G * K;
   551       // Check for overflow.
   552       if (*result/((julong)G * K) != n) return false;
   553       return true;
   554     case 'G': case 'g':
   555       *result = n * G;
   556       if (*result/G != n) return false;
   557       return true;
   558     case 'M': case 'm':
   559       *result = n * M;
   560       if (*result/M != n) return false;
   561       return true;
   562     case 'K': case 'k':
   563       *result = n * K;
   564       if (*result/K != n) return false;
   565       return true;
   566     case '\0':
   567       *result = n;
   568       return true;
   569     default:
   570       return false;
   571   }
   572 }
   574 Arguments::ArgsRange Arguments::check_memory_size(julong size, julong min_size) {
   575   if (size < min_size) return arg_too_small;
   576   // Check that size will fit in a size_t (only relevant on 32-bit)
   577   if (size > max_uintx) return arg_too_big;
   578   return arg_in_range;
   579 }
   581 // Describe an argument out of range error
   582 void Arguments::describe_range_error(ArgsRange errcode) {
   583   switch(errcode) {
   584   case arg_too_big:
   585     jio_fprintf(defaultStream::error_stream(),
   586                 "The specified size exceeds the maximum "
   587                 "representable size.\n");
   588     break;
   589   case arg_too_small:
   590   case arg_unreadable:
   591   case arg_in_range:
   592     // do nothing for now
   593     break;
   594   default:
   595     ShouldNotReachHere();
   596   }
   597 }
   599 static bool set_bool_flag(char* name, bool value, FlagValueOrigin origin) {
   600   return CommandLineFlags::boolAtPut(name, &value, origin);
   601 }
   603 static bool set_fp_numeric_flag(char* name, char* value, FlagValueOrigin origin) {
   604   double v;
   605   if (sscanf(value, "%lf", &v) != 1) {
   606     return false;
   607   }
   609   if (CommandLineFlags::doubleAtPut(name, &v, origin)) {
   610     return true;
   611   }
   612   return false;
   613 }
   615 static bool set_numeric_flag(char* name, char* value, FlagValueOrigin origin) {
   616   julong v;
   617   intx intx_v;
   618   bool is_neg = false;
   619   // Check the sign first since atomull() parses only unsigned values.
   620   if (*value == '-') {
   621     if (!CommandLineFlags::intxAt(name, &intx_v)) {
   622       return false;
   623     }
   624     value++;
   625     is_neg = true;
   626   }
   627   if (!atomull(value, &v)) {
   628     return false;
   629   }
   630   intx_v = (intx) v;
   631   if (is_neg) {
   632     intx_v = -intx_v;
   633   }
   634   if (CommandLineFlags::intxAtPut(name, &intx_v, origin)) {
   635     return true;
   636   }
   637   uintx uintx_v = (uintx) v;
   638   if (!is_neg && CommandLineFlags::uintxAtPut(name, &uintx_v, origin)) {
   639     return true;
   640   }
   641   uint64_t uint64_t_v = (uint64_t) v;
   642   if (!is_neg && CommandLineFlags::uint64_tAtPut(name, &uint64_t_v, origin)) {
   643     return true;
   644   }
   645   return false;
   646 }
   648 static bool set_string_flag(char* name, const char* value, FlagValueOrigin origin) {
   649   if (!CommandLineFlags::ccstrAtPut(name, &value, origin))  return false;
   650   // Contract:  CommandLineFlags always returns a pointer that needs freeing.
   651   FREE_C_HEAP_ARRAY(char, value, mtInternal);
   652   return true;
   653 }
   655 static bool append_to_string_flag(char* name, const char* new_value, FlagValueOrigin origin) {
   656   const char* old_value = "";
   657   if (!CommandLineFlags::ccstrAt(name, &old_value))  return false;
   658   size_t old_len = old_value != NULL ? strlen(old_value) : 0;
   659   size_t new_len = strlen(new_value);
   660   const char* value;
   661   char* free_this_too = NULL;
   662   if (old_len == 0) {
   663     value = new_value;
   664   } else if (new_len == 0) {
   665     value = old_value;
   666   } else {
   667     char* buf = NEW_C_HEAP_ARRAY(char, old_len + 1 + new_len + 1, mtInternal);
   668     // each new setting adds another LINE to the switch:
   669     sprintf(buf, "%s\n%s", old_value, new_value);
   670     value = buf;
   671     free_this_too = buf;
   672   }
   673   (void) CommandLineFlags::ccstrAtPut(name, &value, origin);
   674   // CommandLineFlags always returns a pointer that needs freeing.
   675   FREE_C_HEAP_ARRAY(char, value, mtInternal);
   676   if (free_this_too != NULL) {
   677     // CommandLineFlags made its own copy, so I must delete my own temp. buffer.
   678     FREE_C_HEAP_ARRAY(char, free_this_too, mtInternal);
   679   }
   680   return true;
   681 }
   683 bool Arguments::parse_argument(const char* arg, FlagValueOrigin origin) {
   685   // range of acceptable characters spelled out for portability reasons
   686 #define NAME_RANGE  "[abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_]"
   687 #define BUFLEN 255
   688   char name[BUFLEN+1];
   689   char dummy;
   691   if (sscanf(arg, "-%" XSTR(BUFLEN) NAME_RANGE "%c", name, &dummy) == 1) {
   692     return set_bool_flag(name, false, origin);
   693   }
   694   if (sscanf(arg, "+%" XSTR(BUFLEN) NAME_RANGE "%c", name, &dummy) == 1) {
   695     return set_bool_flag(name, true, origin);
   696   }
   698   char punct;
   699   if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "%c", name, &punct) == 2 && punct == '=') {
   700     const char* value = strchr(arg, '=') + 1;
   701     Flag* flag = Flag::find_flag(name, strlen(name));
   702     if (flag != NULL && flag->is_ccstr()) {
   703       if (flag->ccstr_accumulates()) {
   704         return append_to_string_flag(name, value, origin);
   705       } else {
   706         if (value[0] == '\0') {
   707           value = NULL;
   708         }
   709         return set_string_flag(name, value, origin);
   710       }
   711     }
   712   }
   714   if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE ":%c", name, &punct) == 2 && punct == '=') {
   715     const char* value = strchr(arg, '=') + 1;
   716     // -XX:Foo:=xxx will reset the string flag to the given value.
   717     if (value[0] == '\0') {
   718       value = NULL;
   719     }
   720     return set_string_flag(name, value, origin);
   721   }
   723 #define SIGNED_FP_NUMBER_RANGE "[-0123456789.]"
   724 #define SIGNED_NUMBER_RANGE    "[-0123456789]"
   725 #define        NUMBER_RANGE    "[0123456789]"
   726   char value[BUFLEN + 1];
   727   char value2[BUFLEN + 1];
   728   if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "=" "%" XSTR(BUFLEN) SIGNED_NUMBER_RANGE "." "%" XSTR(BUFLEN) NUMBER_RANGE "%c", name, value, value2, &dummy) == 3) {
   729     // Looks like a floating-point number -- try again with more lenient format string
   730     if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "=" "%" XSTR(BUFLEN) SIGNED_FP_NUMBER_RANGE "%c", name, value, &dummy) == 2) {
   731       return set_fp_numeric_flag(name, value, origin);
   732     }
   733   }
   735 #define VALUE_RANGE "[-kmgtKMGT0123456789]"
   736   if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "=" "%" XSTR(BUFLEN) VALUE_RANGE "%c", name, value, &dummy) == 2) {
   737     return set_numeric_flag(name, value, origin);
   738   }
   740   return false;
   741 }
   743 void Arguments::add_string(char*** bldarray, int* count, const char* arg) {
   744   assert(bldarray != NULL, "illegal argument");
   746   if (arg == NULL) {
   747     return;
   748   }
   750   int new_count = *count + 1;
   752   // expand the array and add arg to the last element
   753   if (*bldarray == NULL) {
   754     *bldarray = NEW_C_HEAP_ARRAY(char*, new_count, mtInternal);
   755   } else {
   756     *bldarray = REALLOC_C_HEAP_ARRAY(char*, *bldarray, new_count, mtInternal);
   757   }
   758   (*bldarray)[*count] = strdup(arg);
   759   *count = new_count;
   760 }
   762 void Arguments::build_jvm_args(const char* arg) {
   763   add_string(&_jvm_args_array, &_num_jvm_args, arg);
   764 }
   766 void Arguments::build_jvm_flags(const char* arg) {
   767   add_string(&_jvm_flags_array, &_num_jvm_flags, arg);
   768 }
   770 // utility function to return a string that concatenates all
   771 // strings in a given char** array
   772 const char* Arguments::build_resource_string(char** args, int count) {
   773   if (args == NULL || count == 0) {
   774     return NULL;
   775   }
   776   size_t length = strlen(args[0]) + 1; // add 1 for the null terminator
   777   for (int i = 1; i < count; i++) {
   778     length += strlen(args[i]) + 1; // add 1 for a space
   779   }
   780   char* s = NEW_RESOURCE_ARRAY(char, length);
   781   strcpy(s, args[0]);
   782   for (int j = 1; j < count; j++) {
   783     strcat(s, " ");
   784     strcat(s, args[j]);
   785   }
   786   return (const char*) s;
   787 }
   789 void Arguments::print_on(outputStream* st) {
   790   st->print_cr("VM Arguments:");
   791   if (num_jvm_flags() > 0) {
   792     st->print("jvm_flags: "); print_jvm_flags_on(st);
   793   }
   794   if (num_jvm_args() > 0) {
   795     st->print("jvm_args: "); print_jvm_args_on(st);
   796   }
   797   st->print_cr("java_command: %s", java_command() ? java_command() : "<unknown>");
   798   if (_java_class_path != NULL) {
   799     char* path = _java_class_path->value();
   800     st->print_cr("java_class_path (initial): %s", strlen(path) == 0 ? "<not set>" : path );
   801   }
   802   st->print_cr("Launcher Type: %s", _sun_java_launcher);
   803 }
   805 void Arguments::print_jvm_flags_on(outputStream* st) {
   806   if (_num_jvm_flags > 0) {
   807     for (int i=0; i < _num_jvm_flags; i++) {
   808       st->print("%s ", _jvm_flags_array[i]);
   809     }
   810     st->print_cr("");
   811   }
   812 }
   814 void Arguments::print_jvm_args_on(outputStream* st) {
   815   if (_num_jvm_args > 0) {
   816     for (int i=0; i < _num_jvm_args; i++) {
   817       st->print("%s ", _jvm_args_array[i]);
   818     }
   819     st->print_cr("");
   820   }
   821 }
   823 bool Arguments::process_argument(const char* arg,
   824     jboolean ignore_unrecognized, FlagValueOrigin origin) {
   826   JDK_Version since = JDK_Version();
   828   if (parse_argument(arg, origin) || ignore_unrecognized) {
   829     return true;
   830   }
   832   bool has_plus_minus = (*arg == '+' || *arg == '-');
   833   const char* const argname = has_plus_minus ? arg + 1 : arg;
   834   if (is_newly_obsolete(arg, &since)) {
   835     char version[256];
   836     since.to_string(version, sizeof(version));
   837     warning("ignoring option %s; support was removed in %s", argname, version);
   838     return true;
   839   }
   841   // For locked flags, report a custom error message if available.
   842   // Otherwise, report the standard unrecognized VM option.
   844   size_t arg_len;
   845   const char* equal_sign = strchr(argname, '=');
   846   if (equal_sign == NULL) {
   847     arg_len = strlen(argname);
   848   } else {
   849     arg_len = equal_sign - argname;
   850   }
   852   Flag* found_flag = Flag::find_flag((char*)argname, arg_len, true);
   853   if (found_flag != NULL) {
   854     char locked_message_buf[BUFLEN];
   855     found_flag->get_locked_message(locked_message_buf, BUFLEN);
   856     if (strlen(locked_message_buf) == 0) {
   857       if (found_flag->is_bool() && !has_plus_minus) {
   858         jio_fprintf(defaultStream::error_stream(),
   859           "Missing +/- setting for VM option '%s'\n", argname);
   860       } else if (!found_flag->is_bool() && has_plus_minus) {
   861         jio_fprintf(defaultStream::error_stream(),
   862           "Unexpected +/- setting in VM option '%s'\n", argname);
   863       } else {
   864         jio_fprintf(defaultStream::error_stream(),
   865           "Improperly specified VM option '%s'\n", argname);
   866       }
   867     } else {
   868       jio_fprintf(defaultStream::error_stream(), "%s", locked_message_buf);
   869     }
   870   } else {
   871     jio_fprintf(defaultStream::error_stream(),
   872                 "Unrecognized VM option '%s'\n", argname);
   873   }
   875   // allow for commandline "commenting out" options like -XX:#+Verbose
   876   return arg[0] == '#';
   877 }
   879 bool Arguments::process_settings_file(const char* file_name, bool should_exist, jboolean ignore_unrecognized) {
   880   FILE* stream = fopen(file_name, "rb");
   881   if (stream == NULL) {
   882     if (should_exist) {
   883       jio_fprintf(defaultStream::error_stream(),
   884                   "Could not open settings file %s\n", file_name);
   885       return false;
   886     } else {
   887       return true;
   888     }
   889   }
   891   char token[1024];
   892   int  pos = 0;
   894   bool in_white_space = true;
   895   bool in_comment     = false;
   896   bool in_quote       = false;
   897   char quote_c        = 0;
   898   bool result         = true;
   900   int c = getc(stream);
   901   while(c != EOF && pos < (int)(sizeof(token)-1)) {
   902     if (in_white_space) {
   903       if (in_comment) {
   904         if (c == '\n') in_comment = false;
   905       } else {
   906         if (c == '#') in_comment = true;
   907         else if (!isspace(c)) {
   908           in_white_space = false;
   909           token[pos++] = c;
   910         }
   911       }
   912     } else {
   913       if (c == '\n' || (!in_quote && isspace(c))) {
   914         // token ends at newline, or at unquoted whitespace
   915         // this allows a way to include spaces in string-valued options
   916         token[pos] = '\0';
   917         logOption(token);
   918         result &= process_argument(token, ignore_unrecognized, CONFIG_FILE);
   919         build_jvm_flags(token);
   920         pos = 0;
   921         in_white_space = true;
   922         in_quote = false;
   923       } else if (!in_quote && (c == '\'' || c == '"')) {
   924         in_quote = true;
   925         quote_c = c;
   926       } else if (in_quote && (c == quote_c)) {
   927         in_quote = false;
   928       } else {
   929         token[pos++] = c;
   930       }
   931     }
   932     c = getc(stream);
   933   }
   934   if (pos > 0) {
   935     token[pos] = '\0';
   936     result &= process_argument(token, ignore_unrecognized, CONFIG_FILE);
   937     build_jvm_flags(token);
   938   }
   939   fclose(stream);
   940   return result;
   941 }
   943 //=============================================================================================================
   944 // Parsing of properties (-D)
   946 const char* Arguments::get_property(const char* key) {
   947   return PropertyList_get_value(system_properties(), key);
   948 }
   950 bool Arguments::add_property(const char* prop) {
   951   const char* eq = strchr(prop, '=');
   952   char* key;
   953   // ns must be static--its address may be stored in a SystemProperty object.
   954   const static char ns[1] = {0};
   955   char* value = (char *)ns;
   957   size_t key_len = (eq == NULL) ? strlen(prop) : (eq - prop);
   958   key = AllocateHeap(key_len + 1, mtInternal);
   959   strncpy(key, prop, key_len);
   960   key[key_len] = '\0';
   962   if (eq != NULL) {
   963     size_t value_len = strlen(prop) - key_len - 1;
   964     value = AllocateHeap(value_len + 1, mtInternal);
   965     strncpy(value, &prop[key_len + 1], value_len + 1);
   966   }
   968   if (strcmp(key, "java.compiler") == 0) {
   969     process_java_compiler_argument(value);
   970     FreeHeap(key);
   971     if (eq != NULL) {
   972       FreeHeap(value);
   973     }
   974     return true;
   975   } else if (strcmp(key, "sun.java.command") == 0) {
   976     _java_command = value;
   978     // Record value in Arguments, but let it get passed to Java.
   979   } else if (strcmp(key, "sun.java.launcher.pid") == 0) {
   980     // launcher.pid property is private and is processed
   981     // in process_sun_java_launcher_properties();
   982     // the sun.java.launcher property is passed on to the java application
   983     FreeHeap(key);
   984     if (eq != NULL) {
   985       FreeHeap(value);
   986     }
   987     return true;
   988   } else if (strcmp(key, "java.vendor.url.bug") == 0) {
   989     // save it in _java_vendor_url_bug, so JVM fatal error handler can access
   990     // its value without going through the property list or making a Java call.
   991     _java_vendor_url_bug = value;
   992   } else if (strcmp(key, "sun.boot.library.path") == 0) {
   993     PropertyList_unique_add(&_system_properties, key, value, true);
   994     return true;
   995   }
   996   // Create new property and add at the end of the list
   997   PropertyList_unique_add(&_system_properties, key, value);
   998   return true;
   999 }
  1001 //===========================================================================================================
  1002 // Setting int/mixed/comp mode flags
  1004 void Arguments::set_mode_flags(Mode mode) {
  1005   // Set up default values for all flags.
  1006   // If you add a flag to any of the branches below,
  1007   // add a default value for it here.
  1008   set_java_compiler(false);
  1009   _mode                      = mode;
  1011   // Ensure Agent_OnLoad has the correct initial values.
  1012   // This may not be the final mode; mode may change later in onload phase.
  1013   PropertyList_unique_add(&_system_properties, "java.vm.info",
  1014                           (char*)VM_Version::vm_info_string(), false);
  1016   UseInterpreter             = true;
  1017   UseCompiler                = true;
  1018   UseLoopCounter             = true;
  1020 #ifndef ZERO
  1021   // Turn these off for mixed and comp.  Leave them on for Zero.
  1022   if (FLAG_IS_DEFAULT(UseFastAccessorMethods)) {
  1023     UseFastAccessorMethods = (mode == _int);
  1025   if (FLAG_IS_DEFAULT(UseFastEmptyMethods)) {
  1026     UseFastEmptyMethods = (mode == _int);
  1028 #endif
  1030   // Default values may be platform/compiler dependent -
  1031   // use the saved values
  1032   ClipInlining               = Arguments::_ClipInlining;
  1033   AlwaysCompileLoopMethods   = Arguments::_AlwaysCompileLoopMethods;
  1034   UseOnStackReplacement      = Arguments::_UseOnStackReplacement;
  1035   BackgroundCompilation      = Arguments::_BackgroundCompilation;
  1037   // Change from defaults based on mode
  1038   switch (mode) {
  1039   default:
  1040     ShouldNotReachHere();
  1041     break;
  1042   case _int:
  1043     UseCompiler              = false;
  1044     UseLoopCounter           = false;
  1045     AlwaysCompileLoopMethods = false;
  1046     UseOnStackReplacement    = false;
  1047     break;
  1048   case _mixed:
  1049     // same as default
  1050     break;
  1051   case _comp:
  1052     UseInterpreter           = false;
  1053     BackgroundCompilation    = false;
  1054     ClipInlining             = false;
  1055     // Be much more aggressive in tiered mode with -Xcomp and exercise C2 more.
  1056     // We will first compile a level 3 version (C1 with full profiling), then do one invocation of it and
  1057     // compile a level 4 (C2) and then continue executing it.
  1058     if (TieredCompilation) {
  1059       Tier3InvokeNotifyFreqLog = 0;
  1060       Tier4InvocationThreshold = 0;
  1062     break;
  1066 // Conflict: required to use shared spaces (-Xshare:on), but
  1067 // incompatible command line options were chosen.
  1069 static void no_shared_spaces() {
  1070   if (RequireSharedSpaces) {
  1071     jio_fprintf(defaultStream::error_stream(),
  1072       "Class data sharing is inconsistent with other specified options.\n");
  1073     vm_exit_during_initialization("Unable to use shared archive.", NULL);
  1074   } else {
  1075     FLAG_SET_DEFAULT(UseSharedSpaces, false);
  1079 void Arguments::set_tiered_flags() {
  1080   // With tiered, set default policy to AdvancedThresholdPolicy, which is 3.
  1081   if (FLAG_IS_DEFAULT(CompilationPolicyChoice)) {
  1082     FLAG_SET_DEFAULT(CompilationPolicyChoice, 3);
  1084   if (CompilationPolicyChoice < 2) {
  1085     vm_exit_during_initialization(
  1086       "Incompatible compilation policy selected", NULL);
  1088   // Increase the code cache size - tiered compiles a lot more.
  1089   if (FLAG_IS_DEFAULT(ReservedCodeCacheSize)) {
  1090     FLAG_SET_DEFAULT(ReservedCodeCacheSize, ReservedCodeCacheSize * 5);
  1094 #if INCLUDE_ALL_GCS
  1095 static void disable_adaptive_size_policy(const char* collector_name) {
  1096   if (UseAdaptiveSizePolicy) {
  1097     if (FLAG_IS_CMDLINE(UseAdaptiveSizePolicy)) {
  1098       warning("disabling UseAdaptiveSizePolicy; it is incompatible with %s.",
  1099               collector_name);
  1101     FLAG_SET_DEFAULT(UseAdaptiveSizePolicy, false);
  1105 void Arguments::set_parnew_gc_flags() {
  1106   assert(!UseSerialGC && !UseParallelOldGC && !UseParallelGC && !UseG1GC,
  1107          "control point invariant");
  1108   assert(UseParNewGC, "Error");
  1110   // Turn off AdaptiveSizePolicy for parnew until it is complete.
  1111   disable_adaptive_size_policy("UseParNewGC");
  1113   if (FLAG_IS_DEFAULT(ParallelGCThreads)) {
  1114     FLAG_SET_DEFAULT(ParallelGCThreads, Abstract_VM_Version::parallel_worker_threads());
  1115     assert(ParallelGCThreads > 0, "We should always have at least one thread by default");
  1116   } else if (ParallelGCThreads == 0) {
  1117     jio_fprintf(defaultStream::error_stream(),
  1118         "The ParNew GC can not be combined with -XX:ParallelGCThreads=0\n");
  1119     vm_exit(1);
  1122   // By default YoungPLABSize and OldPLABSize are set to 4096 and 1024 respectively,
  1123   // these settings are default for Parallel Scavenger. For ParNew+Tenured configuration
  1124   // we set them to 1024 and 1024.
  1125   // See CR 6362902.
  1126   if (FLAG_IS_DEFAULT(YoungPLABSize)) {
  1127     FLAG_SET_DEFAULT(YoungPLABSize, (intx)1024);
  1129   if (FLAG_IS_DEFAULT(OldPLABSize)) {
  1130     FLAG_SET_DEFAULT(OldPLABSize, (intx)1024);
  1133   // AlwaysTenure flag should make ParNew promote all at first collection.
  1134   // See CR 6362902.
  1135   if (AlwaysTenure) {
  1136     FLAG_SET_CMDLINE(uintx, MaxTenuringThreshold, 0);
  1138   // When using compressed oops, we use local overflow stacks,
  1139   // rather than using a global overflow list chained through
  1140   // the klass word of the object's pre-image.
  1141   if (UseCompressedOops && !ParGCUseLocalOverflow) {
  1142     if (!FLAG_IS_DEFAULT(ParGCUseLocalOverflow)) {
  1143       warning("Forcing +ParGCUseLocalOverflow: needed if using compressed references");
  1145     FLAG_SET_DEFAULT(ParGCUseLocalOverflow, true);
  1147   assert(ParGCUseLocalOverflow || !UseCompressedOops, "Error");
  1150 // Adjust some sizes to suit CMS and/or ParNew needs; these work well on
  1151 // sparc/solaris for certain applications, but would gain from
  1152 // further optimization and tuning efforts, and would almost
  1153 // certainly gain from analysis of platform and environment.
  1154 void Arguments::set_cms_and_parnew_gc_flags() {
  1155   assert(!UseSerialGC && !UseParallelOldGC && !UseParallelGC, "Error");
  1156   assert(UseConcMarkSweepGC, "CMS is expected to be on here");
  1158   // If we are using CMS, we prefer to UseParNewGC,
  1159   // unless explicitly forbidden.
  1160   if (FLAG_IS_DEFAULT(UseParNewGC)) {
  1161     FLAG_SET_ERGO(bool, UseParNewGC, true);
  1164   // Turn off AdaptiveSizePolicy by default for cms until it is complete.
  1165   disable_adaptive_size_policy("UseConcMarkSweepGC");
  1167   // In either case, adjust ParallelGCThreads and/or UseParNewGC
  1168   // as needed.
  1169   if (UseParNewGC) {
  1170     set_parnew_gc_flags();
  1173   size_t max_heap = align_size_down(MaxHeapSize,
  1174                                     CardTableRS::ct_max_alignment_constraint());
  1176   // Now make adjustments for CMS
  1177   intx   tenuring_default = (intx)6;
  1178   size_t young_gen_per_worker = CMSYoungGenPerWorker;
  1180   // Preferred young gen size for "short" pauses:
  1181   // upper bound depends on # of threads and NewRatio.
  1182   const uintx parallel_gc_threads =
  1183     (ParallelGCThreads == 0 ? 1 : ParallelGCThreads);
  1184   const size_t preferred_max_new_size_unaligned =
  1185     MIN2(max_heap/(NewRatio+1), ScaleForWordSize(young_gen_per_worker * parallel_gc_threads));
  1186   size_t preferred_max_new_size =
  1187     align_size_up(preferred_max_new_size_unaligned, os::vm_page_size());
  1189   // Unless explicitly requested otherwise, size young gen
  1190   // for "short" pauses ~ CMSYoungGenPerWorker*ParallelGCThreads
  1192   // If either MaxNewSize or NewRatio is set on the command line,
  1193   // assume the user is trying to set the size of the young gen.
  1194   if (FLAG_IS_DEFAULT(MaxNewSize) && FLAG_IS_DEFAULT(NewRatio)) {
  1196     // Set MaxNewSize to our calculated preferred_max_new_size unless
  1197     // NewSize was set on the command line and it is larger than
  1198     // preferred_max_new_size.
  1199     if (!FLAG_IS_DEFAULT(NewSize)) {   // NewSize explicitly set at command-line
  1200       FLAG_SET_ERGO(uintx, MaxNewSize, MAX2(NewSize, preferred_max_new_size));
  1201     } else {
  1202       FLAG_SET_ERGO(uintx, MaxNewSize, preferred_max_new_size);
  1204     if (PrintGCDetails && Verbose) {
  1205       // Too early to use gclog_or_tty
  1206       tty->print_cr("CMS ergo set MaxNewSize: " SIZE_FORMAT, MaxNewSize);
  1209     // Code along this path potentially sets NewSize and OldSize
  1210     if (PrintGCDetails && Verbose) {
  1211       // Too early to use gclog_or_tty
  1212       tty->print_cr("CMS set min_heap_size: " SIZE_FORMAT
  1213            " initial_heap_size:  " SIZE_FORMAT
  1214            " max_heap: " SIZE_FORMAT,
  1215            min_heap_size(), InitialHeapSize, max_heap);
  1217     size_t min_new = preferred_max_new_size;
  1218     if (FLAG_IS_CMDLINE(NewSize)) {
  1219       min_new = NewSize;
  1221     if (max_heap > min_new && min_heap_size() > min_new) {
  1222       // Unless explicitly requested otherwise, make young gen
  1223       // at least min_new, and at most preferred_max_new_size.
  1224       if (FLAG_IS_DEFAULT(NewSize)) {
  1225         FLAG_SET_ERGO(uintx, NewSize, MAX2(NewSize, min_new));
  1226         FLAG_SET_ERGO(uintx, NewSize, MIN2(preferred_max_new_size, NewSize));
  1227         if (PrintGCDetails && Verbose) {
  1228           // Too early to use gclog_or_tty
  1229           tty->print_cr("CMS ergo set NewSize: " SIZE_FORMAT, NewSize);
  1232       // Unless explicitly requested otherwise, size old gen
  1233       // so it's NewRatio x of NewSize.
  1234       if (FLAG_IS_DEFAULT(OldSize)) {
  1235         if (max_heap > NewSize) {
  1236           FLAG_SET_ERGO(uintx, OldSize, MIN2(NewRatio*NewSize, max_heap - NewSize));
  1237           if (PrintGCDetails && Verbose) {
  1238             // Too early to use gclog_or_tty
  1239             tty->print_cr("CMS ergo set OldSize: " SIZE_FORMAT, OldSize);
  1245   // Unless explicitly requested otherwise, definitely
  1246   // promote all objects surviving "tenuring_default" scavenges.
  1247   if (FLAG_IS_DEFAULT(MaxTenuringThreshold) &&
  1248       FLAG_IS_DEFAULT(SurvivorRatio)) {
  1249     FLAG_SET_ERGO(uintx, MaxTenuringThreshold, tenuring_default);
  1251   // If we decided above (or user explicitly requested)
  1252   // `promote all' (via MaxTenuringThreshold := 0),
  1253   // prefer minuscule survivor spaces so as not to waste
  1254   // space for (non-existent) survivors
  1255   if (FLAG_IS_DEFAULT(SurvivorRatio) && MaxTenuringThreshold == 0) {
  1256     FLAG_SET_ERGO(uintx, SurvivorRatio, MAX2((uintx)1024, SurvivorRatio));
  1258   // If OldPLABSize is set and CMSParPromoteBlocksToClaim is not,
  1259   // set CMSParPromoteBlocksToClaim equal to OldPLABSize.
  1260   // This is done in order to make ParNew+CMS configuration to work
  1261   // with YoungPLABSize and OldPLABSize options.
  1262   // See CR 6362902.
  1263   if (!FLAG_IS_DEFAULT(OldPLABSize)) {
  1264     if (FLAG_IS_DEFAULT(CMSParPromoteBlocksToClaim)) {
  1265       // OldPLABSize is not the default value but CMSParPromoteBlocksToClaim
  1266       // is.  In this situtation let CMSParPromoteBlocksToClaim follow
  1267       // the value (either from the command line or ergonomics) of
  1268       // OldPLABSize.  Following OldPLABSize is an ergonomics decision.
  1269       FLAG_SET_ERGO(uintx, CMSParPromoteBlocksToClaim, OldPLABSize);
  1270     } else {
  1271       // OldPLABSize and CMSParPromoteBlocksToClaim are both set.
  1272       // CMSParPromoteBlocksToClaim is a collector-specific flag, so
  1273       // we'll let it to take precedence.
  1274       jio_fprintf(defaultStream::error_stream(),
  1275                   "Both OldPLABSize and CMSParPromoteBlocksToClaim"
  1276                   " options are specified for the CMS collector."
  1277                   " CMSParPromoteBlocksToClaim will take precedence.\n");
  1280   if (!FLAG_IS_DEFAULT(ResizeOldPLAB) && !ResizeOldPLAB) {
  1281     // OldPLAB sizing manually turned off: Use a larger default setting,
  1282     // unless it was manually specified. This is because a too-low value
  1283     // will slow down scavenges.
  1284     if (FLAG_IS_DEFAULT(CMSParPromoteBlocksToClaim)) {
  1285       FLAG_SET_ERGO(uintx, CMSParPromoteBlocksToClaim, 50); // default value before 6631166
  1288   // Overwrite OldPLABSize which is the variable we will internally use everywhere.
  1289   FLAG_SET_ERGO(uintx, OldPLABSize, CMSParPromoteBlocksToClaim);
  1290   // If either of the static initialization defaults have changed, note this
  1291   // modification.
  1292   if (!FLAG_IS_DEFAULT(CMSParPromoteBlocksToClaim) || !FLAG_IS_DEFAULT(OldPLABWeight)) {
  1293     CFLS_LAB::modify_initialization(OldPLABSize, OldPLABWeight);
  1295   if (PrintGCDetails && Verbose) {
  1296     tty->print_cr("MarkStackSize: %uk  MarkStackSizeMax: %uk",
  1297       MarkStackSize / K, MarkStackSizeMax / K);
  1298     tty->print_cr("ConcGCThreads: %u", ConcGCThreads);
  1301 #endif // INCLUDE_ALL_GCS
  1303 void set_object_alignment() {
  1304   // Object alignment.
  1305   assert(is_power_of_2(ObjectAlignmentInBytes), "ObjectAlignmentInBytes must be power of 2");
  1306   MinObjAlignmentInBytes     = ObjectAlignmentInBytes;
  1307   assert(MinObjAlignmentInBytes >= HeapWordsPerLong * HeapWordSize, "ObjectAlignmentInBytes value is too small");
  1308   MinObjAlignment            = MinObjAlignmentInBytes / HeapWordSize;
  1309   assert(MinObjAlignmentInBytes == MinObjAlignment * HeapWordSize, "ObjectAlignmentInBytes value is incorrect");
  1310   MinObjAlignmentInBytesMask = MinObjAlignmentInBytes - 1;
  1312   LogMinObjAlignmentInBytes  = exact_log2(ObjectAlignmentInBytes);
  1313   LogMinObjAlignment         = LogMinObjAlignmentInBytes - LogHeapWordSize;
  1315   // Oop encoding heap max
  1316   OopEncodingHeapMax = (uint64_t(max_juint) + 1) << LogMinObjAlignmentInBytes;
  1318 #if INCLUDE_ALL_GCS
  1319   // Set CMS global values
  1320   CompactibleFreeListSpace::set_cms_values();
  1321 #endif // INCLUDE_ALL_GCS
  1324 bool verify_object_alignment() {
  1325   // Object alignment.
  1326   if (!is_power_of_2(ObjectAlignmentInBytes)) {
  1327     jio_fprintf(defaultStream::error_stream(),
  1328                 "error: ObjectAlignmentInBytes=%d must be power of 2\n",
  1329                 (int)ObjectAlignmentInBytes);
  1330     return false;
  1332   if ((int)ObjectAlignmentInBytes < BytesPerLong) {
  1333     jio_fprintf(defaultStream::error_stream(),
  1334                 "error: ObjectAlignmentInBytes=%d must be greater or equal %d\n",
  1335                 (int)ObjectAlignmentInBytes, BytesPerLong);
  1336     return false;
  1338   // It does not make sense to have big object alignment
  1339   // since a space lost due to alignment will be greater
  1340   // then a saved space from compressed oops.
  1341   if ((int)ObjectAlignmentInBytes > 256) {
  1342     jio_fprintf(defaultStream::error_stream(),
  1343                 "error: ObjectAlignmentInBytes=%d must not be greater than 256\n",
  1344                 (int)ObjectAlignmentInBytes);
  1345     return false;
  1347   // In case page size is very small.
  1348   if ((int)ObjectAlignmentInBytes >= os::vm_page_size()) {
  1349     jio_fprintf(defaultStream::error_stream(),
  1350                 "error: ObjectAlignmentInBytes=%d must be less than page size %d\n",
  1351                 (int)ObjectAlignmentInBytes, os::vm_page_size());
  1352     return false;
  1354   return true;
  1357 inline uintx max_heap_for_compressed_oops() {
  1358   // Avoid sign flip.
  1359   if (OopEncodingHeapMax < ClassMetaspaceSize + os::vm_page_size()) {
  1360     return 0;
  1362   LP64_ONLY(return OopEncodingHeapMax - ClassMetaspaceSize - os::vm_page_size());
  1363   NOT_LP64(ShouldNotReachHere(); return 0);
  1366 bool Arguments::should_auto_select_low_pause_collector() {
  1367   if (UseAutoGCSelectPolicy &&
  1368       !FLAG_IS_DEFAULT(MaxGCPauseMillis) &&
  1369       (MaxGCPauseMillis <= AutoGCSelectPauseMillis)) {
  1370     if (PrintGCDetails) {
  1371       // Cannot use gclog_or_tty yet.
  1372       tty->print_cr("Automatic selection of the low pause collector"
  1373        " based on pause goal of %d (ms)", MaxGCPauseMillis);
  1375     return true;
  1377   return false;
  1380 void Arguments::set_use_compressed_oops() {
  1381 #ifndef ZERO
  1382 #ifdef _LP64
  1383   // MaxHeapSize is not set up properly at this point, but
  1384   // the only value that can override MaxHeapSize if we are
  1385   // to use UseCompressedOops is InitialHeapSize.
  1386   size_t max_heap_size = MAX2(MaxHeapSize, InitialHeapSize);
  1388   if (max_heap_size <= max_heap_for_compressed_oops()) {
  1389 #if !defined(COMPILER1) || defined(TIERED)
  1390     if (FLAG_IS_DEFAULT(UseCompressedOops)) {
  1391       FLAG_SET_ERGO(bool, UseCompressedOops, true);
  1393 #endif
  1394 #ifdef _WIN64
  1395     if (UseLargePages && UseCompressedOops) {
  1396       // Cannot allocate guard pages for implicit checks in indexed addressing
  1397       // mode, when large pages are specified on windows.
  1398       // This flag could be switched ON if narrow oop base address is set to 0,
  1399       // see code in Universe::initialize_heap().
  1400       Universe::set_narrow_oop_use_implicit_null_checks(false);
  1402 #endif //  _WIN64
  1403   } else {
  1404     if (UseCompressedOops && !FLAG_IS_DEFAULT(UseCompressedOops)) {
  1405       warning("Max heap size too large for Compressed Oops");
  1406       FLAG_SET_DEFAULT(UseCompressedOops, false);
  1407       FLAG_SET_DEFAULT(UseCompressedKlassPointers, false);
  1410 #endif // _LP64
  1411 #endif // ZERO
  1414 void Arguments::set_ergonomics_flags() {
  1416   if (os::is_server_class_machine()) {
  1417     // If no other collector is requested explicitly,
  1418     // let the VM select the collector based on
  1419     // machine class and automatic selection policy.
  1420     if (!UseSerialGC &&
  1421         !UseConcMarkSweepGC &&
  1422         !UseG1GC &&
  1423         !UseParNewGC &&
  1424         FLAG_IS_DEFAULT(UseParallelGC)) {
  1425       if (should_auto_select_low_pause_collector()) {
  1426         FLAG_SET_ERGO(bool, UseConcMarkSweepGC, true);
  1427       } else {
  1428         FLAG_SET_ERGO(bool, UseParallelGC, true);
  1431     // Shared spaces work fine with other GCs but causes bytecode rewriting
  1432     // to be disabled, which hurts interpreter performance and decreases
  1433     // server performance.   On server class machines, keep the default
  1434     // off unless it is asked for.  Future work: either add bytecode rewriting
  1435     // at link time, or rewrite bytecodes in non-shared methods.
  1436     if (!DumpSharedSpaces && !RequireSharedSpaces) {
  1437       no_shared_spaces();
  1441 #ifndef ZERO
  1442 #ifdef _LP64
  1443   set_use_compressed_oops();
  1444   // UseCompressedOops must be on for UseCompressedKlassPointers to be on.
  1445   if (!UseCompressedOops) {
  1446     if (UseCompressedKlassPointers) {
  1447       warning("UseCompressedKlassPointers requires UseCompressedOops");
  1449     FLAG_SET_DEFAULT(UseCompressedKlassPointers, false);
  1450   } else {
  1451     // Turn on UseCompressedKlassPointers too
  1452     if (FLAG_IS_DEFAULT(UseCompressedKlassPointers)) {
  1453       FLAG_SET_ERGO(bool, UseCompressedKlassPointers, true);
  1455     // Set the ClassMetaspaceSize to something that will not need to be
  1456     // expanded, since it cannot be expanded.
  1457     if (UseCompressedKlassPointers) {
  1458       if (ClassMetaspaceSize > KlassEncodingMetaspaceMax) {
  1459         warning("Class metaspace size is too large for UseCompressedKlassPointers");
  1460         FLAG_SET_DEFAULT(UseCompressedKlassPointers, false);
  1461       } else if (FLAG_IS_DEFAULT(ClassMetaspaceSize)) {
  1462         // 100,000 classes seems like a good size, so 100M assumes around 1K
  1463         // per klass.   The vtable and oopMap is embedded so we don't have a fixed
  1464         // size per klass.   Eventually, this will be parameterized because it
  1465         // would also be useful to determine the optimal size of the
  1466         // systemDictionary.
  1467         FLAG_SET_ERGO(uintx, ClassMetaspaceSize, 100*M);
  1471   // Also checks that certain machines are slower with compressed oops
  1472   // in vm_version initialization code.
  1473 #endif // _LP64
  1474 #endif // !ZERO
  1477 void Arguments::set_parallel_gc_flags() {
  1478   assert(UseParallelGC || UseParallelOldGC, "Error");
  1479   // Enable ParallelOld unless it was explicitly disabled (cmd line or rc file).
  1480   if (FLAG_IS_DEFAULT(UseParallelOldGC)) {
  1481     FLAG_SET_DEFAULT(UseParallelOldGC, true);
  1483   FLAG_SET_DEFAULT(UseParallelGC, true);
  1485   // If no heap maximum was requested explicitly, use some reasonable fraction
  1486   // of the physical memory, up to a maximum of 1GB.
  1487   FLAG_SET_DEFAULT(ParallelGCThreads,
  1488                    Abstract_VM_Version::parallel_worker_threads());
  1489   if (ParallelGCThreads == 0) {
  1490     jio_fprintf(defaultStream::error_stream(),
  1491         "The Parallel GC can not be combined with -XX:ParallelGCThreads=0\n");
  1492     vm_exit(1);
  1496   // If InitialSurvivorRatio or MinSurvivorRatio were not specified, but the
  1497   // SurvivorRatio has been set, reset their default values to SurvivorRatio +
  1498   // 2.  By doing this we make SurvivorRatio also work for Parallel Scavenger.
  1499   // See CR 6362902 for details.
  1500   if (!FLAG_IS_DEFAULT(SurvivorRatio)) {
  1501     if (FLAG_IS_DEFAULT(InitialSurvivorRatio)) {
  1502        FLAG_SET_DEFAULT(InitialSurvivorRatio, SurvivorRatio + 2);
  1504     if (FLAG_IS_DEFAULT(MinSurvivorRatio)) {
  1505       FLAG_SET_DEFAULT(MinSurvivorRatio, SurvivorRatio + 2);
  1509   if (UseParallelOldGC) {
  1510     // Par compact uses lower default values since they are treated as
  1511     // minimums.  These are different defaults because of the different
  1512     // interpretation and are not ergonomically set.
  1513     if (FLAG_IS_DEFAULT(MarkSweepDeadRatio)) {
  1514       FLAG_SET_DEFAULT(MarkSweepDeadRatio, 1);
  1519 void Arguments::set_g1_gc_flags() {
  1520   assert(UseG1GC, "Error");
  1521 #ifdef COMPILER1
  1522   FastTLABRefill = false;
  1523 #endif
  1524   FLAG_SET_DEFAULT(ParallelGCThreads,
  1525                      Abstract_VM_Version::parallel_worker_threads());
  1526   if (ParallelGCThreads == 0) {
  1527     FLAG_SET_DEFAULT(ParallelGCThreads,
  1528                      Abstract_VM_Version::parallel_worker_threads());
  1531   // MarkStackSize will be set (if it hasn't been set by the user)
  1532   // when concurrent marking is initialized.
  1533   // Its value will be based upon the number of parallel marking threads.
  1534   // But we do set the maximum mark stack size here.
  1535   if (FLAG_IS_DEFAULT(MarkStackSizeMax)) {
  1536     FLAG_SET_DEFAULT(MarkStackSizeMax, 128 * TASKQUEUE_SIZE);
  1539   if (FLAG_IS_DEFAULT(GCTimeRatio) || GCTimeRatio == 0) {
  1540     // In G1, we want the default GC overhead goal to be higher than
  1541     // say in PS. So we set it here to 10%. Otherwise the heap might
  1542     // be expanded more aggressively than we would like it to. In
  1543     // fact, even 10% seems to not be high enough in some cases
  1544     // (especially small GC stress tests that the main thing they do
  1545     // is allocation). We might consider increase it further.
  1546     FLAG_SET_DEFAULT(GCTimeRatio, 9);
  1549   if (PrintGCDetails && Verbose) {
  1550     tty->print_cr("MarkStackSize: %uk  MarkStackSizeMax: %uk",
  1551       MarkStackSize / K, MarkStackSizeMax / K);
  1552     tty->print_cr("ConcGCThreads: %u", ConcGCThreads);
  1556 julong Arguments::limit_by_allocatable_memory(julong limit) {
  1557   julong max_allocatable;
  1558   julong result = limit;
  1559   if (os::has_allocatable_memory_limit(&max_allocatable)) {
  1560     result = MIN2(result, max_allocatable / MaxVirtMemFraction);
  1562   return result;
  1565 void Arguments::set_heap_size() {
  1566   if (!FLAG_IS_DEFAULT(DefaultMaxRAMFraction)) {
  1567     // Deprecated flag
  1568     FLAG_SET_CMDLINE(uintx, MaxRAMFraction, DefaultMaxRAMFraction);
  1571   const julong phys_mem =
  1572     FLAG_IS_DEFAULT(MaxRAM) ? MIN2(os::physical_memory(), (julong)MaxRAM)
  1573                             : (julong)MaxRAM;
  1575   // If the maximum heap size has not been set with -Xmx,
  1576   // then set it as fraction of the size of physical memory,
  1577   // respecting the maximum and minimum sizes of the heap.
  1578   if (FLAG_IS_DEFAULT(MaxHeapSize)) {
  1579     julong reasonable_max = phys_mem / MaxRAMFraction;
  1581     if (phys_mem <= MaxHeapSize * MinRAMFraction) {
  1582       // Small physical memory, so use a minimum fraction of it for the heap
  1583       reasonable_max = phys_mem / MinRAMFraction;
  1584     } else {
  1585       // Not-small physical memory, so require a heap at least
  1586       // as large as MaxHeapSize
  1587       reasonable_max = MAX2(reasonable_max, (julong)MaxHeapSize);
  1589     if (!FLAG_IS_DEFAULT(ErgoHeapSizeLimit) && ErgoHeapSizeLimit != 0) {
  1590       // Limit the heap size to ErgoHeapSizeLimit
  1591       reasonable_max = MIN2(reasonable_max, (julong)ErgoHeapSizeLimit);
  1593     if (UseCompressedOops) {
  1594       // Limit the heap size to the maximum possible when using compressed oops
  1595       julong max_coop_heap = (julong)max_heap_for_compressed_oops();
  1596       if (HeapBaseMinAddress + MaxHeapSize < max_coop_heap) {
  1597         // Heap should be above HeapBaseMinAddress to get zero based compressed oops
  1598         // but it should be not less than default MaxHeapSize.
  1599         max_coop_heap -= HeapBaseMinAddress;
  1601       reasonable_max = MIN2(reasonable_max, max_coop_heap);
  1603     reasonable_max = limit_by_allocatable_memory(reasonable_max);
  1605     if (!FLAG_IS_DEFAULT(InitialHeapSize)) {
  1606       // An initial heap size was specified on the command line,
  1607       // so be sure that the maximum size is consistent.  Done
  1608       // after call to limit_by_allocatable_memory because that
  1609       // method might reduce the allocation size.
  1610       reasonable_max = MAX2(reasonable_max, (julong)InitialHeapSize);
  1613     if (PrintGCDetails && Verbose) {
  1614       // Cannot use gclog_or_tty yet.
  1615       tty->print_cr("  Maximum heap size " SIZE_FORMAT, reasonable_max);
  1617     FLAG_SET_ERGO(uintx, MaxHeapSize, (uintx)reasonable_max);
  1620   // If the minimum or initial heap_size have not been set or requested to be set
  1621   // ergonomically, set them accordingly.
  1622   if (InitialHeapSize == 0 || min_heap_size() == 0) {
  1623     julong reasonable_minimum = (julong)(OldSize + NewSize);
  1625     reasonable_minimum = MIN2(reasonable_minimum, (julong)MaxHeapSize);
  1627     reasonable_minimum = limit_by_allocatable_memory(reasonable_minimum);
  1629     if (InitialHeapSize == 0) {
  1630       julong reasonable_initial = phys_mem / InitialRAMFraction;
  1632       reasonable_initial = MAX3(reasonable_initial, reasonable_minimum, (julong)min_heap_size());
  1633       reasonable_initial = MIN2(reasonable_initial, (julong)MaxHeapSize);
  1635       reasonable_initial = limit_by_allocatable_memory(reasonable_initial);
  1637       if (PrintGCDetails && Verbose) {
  1638         // Cannot use gclog_or_tty yet.
  1639         tty->print_cr("  Initial heap size " SIZE_FORMAT, (uintx)reasonable_initial);
  1641       FLAG_SET_ERGO(uintx, InitialHeapSize, (uintx)reasonable_initial);
  1643     // If the minimum heap size has not been set (via -Xms),
  1644     // synchronize with InitialHeapSize to avoid errors with the default value.
  1645     if (min_heap_size() == 0) {
  1646       set_min_heap_size(MIN2((uintx)reasonable_minimum, InitialHeapSize));
  1647       if (PrintGCDetails && Verbose) {
  1648         // Cannot use gclog_or_tty yet.
  1649         tty->print_cr("  Minimum heap size " SIZE_FORMAT, min_heap_size());
  1655 // This must be called after ergonomics because we want bytecode rewriting
  1656 // if the server compiler is used, or if UseSharedSpaces is disabled.
  1657 void Arguments::set_bytecode_flags() {
  1658   // Better not attempt to store into a read-only space.
  1659   if (UseSharedSpaces) {
  1660     FLAG_SET_DEFAULT(RewriteBytecodes, false);
  1661     FLAG_SET_DEFAULT(RewriteFrequentPairs, false);
  1664   if (!RewriteBytecodes) {
  1665     FLAG_SET_DEFAULT(RewriteFrequentPairs, false);
  1669 // Aggressive optimization flags  -XX:+AggressiveOpts
  1670 void Arguments::set_aggressive_opts_flags() {
  1671 #ifdef COMPILER2
  1672   if (AggressiveOpts || !FLAG_IS_DEFAULT(AutoBoxCacheMax)) {
  1673     if (FLAG_IS_DEFAULT(EliminateAutoBox)) {
  1674       FLAG_SET_DEFAULT(EliminateAutoBox, true);
  1676     if (FLAG_IS_DEFAULT(AutoBoxCacheMax)) {
  1677       FLAG_SET_DEFAULT(AutoBoxCacheMax, 20000);
  1680     // Feed the cache size setting into the JDK
  1681     char buffer[1024];
  1682     sprintf(buffer, "java.lang.Integer.IntegerCache.high=" INTX_FORMAT, AutoBoxCacheMax);
  1683     add_property(buffer);
  1685   if (AggressiveOpts && FLAG_IS_DEFAULT(BiasedLockingStartupDelay)) {
  1686     FLAG_SET_DEFAULT(BiasedLockingStartupDelay, 500);
  1688 #endif
  1690   if (AggressiveOpts) {
  1691 // Sample flag setting code
  1692 //    if (FLAG_IS_DEFAULT(EliminateZeroing)) {
  1693 //      FLAG_SET_DEFAULT(EliminateZeroing, true);
  1694 //    }
  1698 //===========================================================================================================
  1699 // Parsing of java.compiler property
  1701 void Arguments::process_java_compiler_argument(char* arg) {
  1702   // For backwards compatibility, Djava.compiler=NONE or ""
  1703   // causes us to switch to -Xint mode UNLESS -Xdebug
  1704   // is also specified.
  1705   if (strlen(arg) == 0 || strcasecmp(arg, "NONE") == 0) {
  1706     set_java_compiler(true);    // "-Djava.compiler[=...]" most recently seen.
  1710 void Arguments::process_java_launcher_argument(const char* launcher, void* extra_info) {
  1711   _sun_java_launcher = strdup(launcher);
  1712   if (strcmp("gamma", _sun_java_launcher) == 0) {
  1713     _created_by_gamma_launcher = true;
  1717 bool Arguments::created_by_java_launcher() {
  1718   assert(_sun_java_launcher != NULL, "property must have value");
  1719   return strcmp(DEFAULT_JAVA_LAUNCHER, _sun_java_launcher) != 0;
  1722 bool Arguments::created_by_gamma_launcher() {
  1723   return _created_by_gamma_launcher;
  1726 //===========================================================================================================
  1727 // Parsing of main arguments
  1729 bool Arguments::verify_interval(uintx val, uintx min,
  1730                                 uintx max, const char* name) {
  1731   // Returns true iff value is in the inclusive interval [min..max]
  1732   // false, otherwise.
  1733   if (val >= min && val <= max) {
  1734     return true;
  1736   jio_fprintf(defaultStream::error_stream(),
  1737               "%s of " UINTX_FORMAT " is invalid; must be between " UINTX_FORMAT
  1738               " and " UINTX_FORMAT "\n",
  1739               name, val, min, max);
  1740   return false;
  1743 bool Arguments::verify_min_value(intx val, intx min, const char* name) {
  1744   // Returns true if given value is at least specified min threshold
  1745   // false, otherwise.
  1746   if (val >= min ) {
  1747       return true;
  1749   jio_fprintf(defaultStream::error_stream(),
  1750               "%s of " INTX_FORMAT " is invalid; must be at least " INTX_FORMAT "\n",
  1751               name, val, min);
  1752   return false;
  1755 bool Arguments::verify_percentage(uintx value, const char* name) {
  1756   if (value <= 100) {
  1757     return true;
  1759   jio_fprintf(defaultStream::error_stream(),
  1760               "%s of " UINTX_FORMAT " is invalid; must be between 0 and 100\n",
  1761               name, value);
  1762   return false;
  1765 #if !INCLUDE_ALL_GCS
  1766 #ifdef ASSERT
  1767 static bool verify_serial_gc_flags() {
  1768   return (UseSerialGC &&
  1769         !(UseParNewGC || (UseConcMarkSweepGC || CMSIncrementalMode) || UseG1GC ||
  1770           UseParallelGC || UseParallelOldGC));
  1772 #endif // ASSERT
  1773 #endif // INCLUDE_ALL_GCS
  1775 // check if do gclog rotation
  1776 // +UseGCLogFileRotation is a must,
  1777 // no gc log rotation when log file not supplied or
  1778 // NumberOfGCLogFiles is 0, or GCLogFileSize is 0
  1779 void check_gclog_consistency() {
  1780   if (UseGCLogFileRotation) {
  1781     if ((Arguments::gc_log_filename() == NULL) ||
  1782         (NumberOfGCLogFiles == 0)  ||
  1783         (GCLogFileSize == 0)) {
  1784       jio_fprintf(defaultStream::output_stream(),
  1785                   "To enable GC log rotation, use -Xloggc:<filename> -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=<num_of_files> -XX:GCLogFileSize=<num_of_size>\n"
  1786                   "where num_of_file > 0 and num_of_size > 0\n"
  1787                   "GC log rotation is turned off\n");
  1788       UseGCLogFileRotation = false;
  1792   if (UseGCLogFileRotation && GCLogFileSize < 8*K) {
  1793         FLAG_SET_CMDLINE(uintx, GCLogFileSize, 8*K);
  1794         jio_fprintf(defaultStream::output_stream(),
  1795                     "GCLogFileSize changed to minimum 8K\n");
  1799 // Check consistency of GC selection
  1800 bool Arguments::check_gc_consistency() {
  1801   check_gclog_consistency();
  1802   bool status = true;
  1803   // Ensure that the user has not selected conflicting sets
  1804   // of collectors. [Note: this check is merely a user convenience;
  1805   // collectors over-ride each other so that only a non-conflicting
  1806   // set is selected; however what the user gets is not what they
  1807   // may have expected from the combination they asked for. It's
  1808   // better to reduce user confusion by not allowing them to
  1809   // select conflicting combinations.
  1810   uint i = 0;
  1811   if (UseSerialGC)                       i++;
  1812   if (UseConcMarkSweepGC || UseParNewGC) i++;
  1813   if (UseParallelGC || UseParallelOldGC) i++;
  1814   if (UseG1GC)                           i++;
  1815   if (i > 1) {
  1816     jio_fprintf(defaultStream::error_stream(),
  1817                 "Conflicting collector combinations in option list; "
  1818                 "please refer to the release notes for the combinations "
  1819                 "allowed\n");
  1820     status = false;
  1823   return status;
  1826 void Arguments::check_deprecated_gcs() {
  1827   if (UseConcMarkSweepGC && !UseParNewGC) {
  1828     warning("Using the DefNew young collector with the CMS collector is deprecated "
  1829         "and will likely be removed in a future release");
  1832   if (UseParNewGC && !UseConcMarkSweepGC) {
  1833     // !UseConcMarkSweepGC means that we are using serial old gc. Unfortunately we don't
  1834     // set up UseSerialGC properly, so that can't be used in the check here.
  1835     warning("Using the ParNew young collector with the Serial old collector is deprecated "
  1836         "and will likely be removed in a future release");
  1839   if (CMSIncrementalMode) {
  1840     warning("Using incremental CMS is deprecated and will likely be removed in a future release");
  1844 void Arguments::check_deprecated_gc_flags() {
  1845   if (FLAG_IS_CMDLINE(MaxGCMinorPauseMillis)) {
  1846     warning("Using MaxGCMinorPauseMillis as minor pause goal is deprecated"
  1847             "and will likely be removed in future release");
  1851 // Check stack pages settings
  1852 bool Arguments::check_stack_pages()
  1854   bool status = true;
  1855   status = status && verify_min_value(StackYellowPages, 1, "StackYellowPages");
  1856   status = status && verify_min_value(StackRedPages, 1, "StackRedPages");
  1857   // greater stack shadow pages can't generate instruction to bang stack
  1858   status = status && verify_interval(StackShadowPages, 1, 50, "StackShadowPages");
  1859   return status;
  1862 // Check the consistency of vm_init_args
  1863 bool Arguments::check_vm_args_consistency() {
  1864   // Method for adding checks for flag consistency.
  1865   // The intent is to warn the user of all possible conflicts,
  1866   // before returning an error.
  1867   // Note: Needs platform-dependent factoring.
  1868   bool status = true;
  1870 #if ( (defined(COMPILER2) && defined(SPARC)))
  1871   // NOTE: The call to VM_Version_init depends on the fact that VM_Version_init
  1872   // on sparc doesn't require generation of a stub as is the case on, e.g.,
  1873   // x86.  Normally, VM_Version_init must be called from init_globals in
  1874   // init.cpp, which is called by the initial java thread *after* arguments
  1875   // have been parsed.  VM_Version_init gets called twice on sparc.
  1876   extern void VM_Version_init();
  1877   VM_Version_init();
  1878   if (!VM_Version::has_v9()) {
  1879     jio_fprintf(defaultStream::error_stream(),
  1880                 "V8 Machine detected, Server requires V9\n");
  1881     status = false;
  1883 #endif /* COMPILER2 && SPARC */
  1885   // Allow both -XX:-UseStackBanging and -XX:-UseBoundThreads in non-product
  1886   // builds so the cost of stack banging can be measured.
  1887 #if (defined(PRODUCT) && defined(SOLARIS))
  1888   if (!UseBoundThreads && !UseStackBanging) {
  1889     jio_fprintf(defaultStream::error_stream(),
  1890                 "-UseStackBanging conflicts with -UseBoundThreads\n");
  1892      status = false;
  1894 #endif
  1896   if (TLABRefillWasteFraction == 0) {
  1897     jio_fprintf(defaultStream::error_stream(),
  1898                 "TLABRefillWasteFraction should be a denominator, "
  1899                 "not " SIZE_FORMAT "\n",
  1900                 TLABRefillWasteFraction);
  1901     status = false;
  1904   status = status && verify_percentage(AdaptiveSizePolicyWeight,
  1905                               "AdaptiveSizePolicyWeight");
  1906   status = status && verify_percentage(ThresholdTolerance, "ThresholdTolerance");
  1907   status = status && verify_percentage(MinHeapFreeRatio, "MinHeapFreeRatio");
  1908   status = status && verify_percentage(MaxHeapFreeRatio, "MaxHeapFreeRatio");
  1910   // Divide by bucket size to prevent a large size from causing rollover when
  1911   // calculating amount of memory needed to be allocated for the String table.
  1912   status = status && verify_interval(StringTableSize, minimumStringTableSize,
  1913     (max_uintx / StringTable::bucket_size()), "StringTable size");
  1915   if (MinHeapFreeRatio > MaxHeapFreeRatio) {
  1916     jio_fprintf(defaultStream::error_stream(),
  1917                 "MinHeapFreeRatio (" UINTX_FORMAT ") must be less than or "
  1918                 "equal to MaxHeapFreeRatio (" UINTX_FORMAT ")\n",
  1919                 MinHeapFreeRatio, MaxHeapFreeRatio);
  1920     status = false;
  1922   // Keeping the heap 100% free is hard ;-) so limit it to 99%.
  1923   MinHeapFreeRatio = MIN2(MinHeapFreeRatio, (uintx) 99);
  1925   // Min/MaxMetaspaceFreeRatio
  1926   status = status && verify_percentage(MinMetaspaceFreeRatio, "MinMetaspaceFreeRatio");
  1927   status = status && verify_percentage(MaxMetaspaceFreeRatio, "MaxMetaspaceFreeRatio");
  1929   if (MinMetaspaceFreeRatio > MaxMetaspaceFreeRatio) {
  1930     jio_fprintf(defaultStream::error_stream(),
  1931                 "MinMetaspaceFreeRatio (%s" UINTX_FORMAT ") must be less than or "
  1932                 "equal to MaxMetaspaceFreeRatio (%s" UINTX_FORMAT ")\n",
  1933                 FLAG_IS_DEFAULT(MinMetaspaceFreeRatio) ? "Default: " : "",
  1934                 MinMetaspaceFreeRatio,
  1935                 FLAG_IS_DEFAULT(MaxMetaspaceFreeRatio) ? "Default: " : "",
  1936                 MaxMetaspaceFreeRatio);
  1937     status = false;
  1940   // Trying to keep 100% free is not practical
  1941   MinMetaspaceFreeRatio = MIN2(MinMetaspaceFreeRatio, (uintx) 99);
  1943   if (FullGCALot && FLAG_IS_DEFAULT(MarkSweepAlwaysCompactCount)) {
  1944     MarkSweepAlwaysCompactCount = 1;  // Move objects every gc.
  1947   if (UseParallelOldGC && ParallelOldGCSplitALot) {
  1948     // Settings to encourage splitting.
  1949     if (!FLAG_IS_CMDLINE(NewRatio)) {
  1950       FLAG_SET_CMDLINE(uintx, NewRatio, 2);
  1952     if (!FLAG_IS_CMDLINE(ScavengeBeforeFullGC)) {
  1953       FLAG_SET_CMDLINE(bool, ScavengeBeforeFullGC, false);
  1957   status = status && verify_percentage(GCHeapFreeLimit, "GCHeapFreeLimit");
  1958   status = status && verify_percentage(GCTimeLimit, "GCTimeLimit");
  1959   if (GCTimeLimit == 100) {
  1960     // Turn off gc-overhead-limit-exceeded checks
  1961     FLAG_SET_DEFAULT(UseGCOverheadLimit, false);
  1964   status = status && verify_percentage(GCHeapFreeLimit, "GCHeapFreeLimit");
  1966   status = status && check_gc_consistency();
  1967   status = status && check_stack_pages();
  1969   if (_has_alloc_profile) {
  1970     if (UseParallelGC || UseParallelOldGC) {
  1971       jio_fprintf(defaultStream::error_stream(),
  1972                   "error:  invalid argument combination.\n"
  1973                   "Allocation profiling (-Xaprof) cannot be used together with "
  1974                   "Parallel GC (-XX:+UseParallelGC or -XX:+UseParallelOldGC).\n");
  1975       status = false;
  1977     if (UseConcMarkSweepGC) {
  1978       jio_fprintf(defaultStream::error_stream(),
  1979                   "error:  invalid argument combination.\n"
  1980                   "Allocation profiling (-Xaprof) cannot be used together with "
  1981                   "the CMS collector (-XX:+UseConcMarkSweepGC).\n");
  1982       status = false;
  1986   if (CMSIncrementalMode) {
  1987     if (!UseConcMarkSweepGC) {
  1988       jio_fprintf(defaultStream::error_stream(),
  1989                   "error:  invalid argument combination.\n"
  1990                   "The CMS collector (-XX:+UseConcMarkSweepGC) must be "
  1991                   "selected in order\nto use CMSIncrementalMode.\n");
  1992       status = false;
  1993     } else {
  1994       status = status && verify_percentage(CMSIncrementalDutyCycle,
  1995                                   "CMSIncrementalDutyCycle");
  1996       status = status && verify_percentage(CMSIncrementalDutyCycleMin,
  1997                                   "CMSIncrementalDutyCycleMin");
  1998       status = status && verify_percentage(CMSIncrementalSafetyFactor,
  1999                                   "CMSIncrementalSafetyFactor");
  2000       status = status && verify_percentage(CMSIncrementalOffset,
  2001                                   "CMSIncrementalOffset");
  2002       status = status && verify_percentage(CMSExpAvgFactor,
  2003                                   "CMSExpAvgFactor");
  2004       // If it was not set on the command line, set
  2005       // CMSInitiatingOccupancyFraction to 1 so icms can initiate cycles early.
  2006       if (CMSInitiatingOccupancyFraction < 0) {
  2007         FLAG_SET_DEFAULT(CMSInitiatingOccupancyFraction, 1);
  2012   // CMS space iteration, which FLSVerifyAllHeapreferences entails,
  2013   // insists that we hold the requisite locks so that the iteration is
  2014   // MT-safe. For the verification at start-up and shut-down, we don't
  2015   // yet have a good way of acquiring and releasing these locks,
  2016   // which are not visible at the CollectedHeap level. We want to
  2017   // be able to acquire these locks and then do the iteration rather
  2018   // than just disable the lock verification. This will be fixed under
  2019   // bug 4788986.
  2020   if (UseConcMarkSweepGC && FLSVerifyAllHeapReferences) {
  2021     if (VerifyDuringStartup) {
  2022       warning("Heap verification at start-up disabled "
  2023               "(due to current incompatibility with FLSVerifyAllHeapReferences)");
  2024       VerifyDuringStartup = false; // Disable verification at start-up
  2027     if (VerifyBeforeExit) {
  2028       warning("Heap verification at shutdown disabled "
  2029               "(due to current incompatibility with FLSVerifyAllHeapReferences)");
  2030       VerifyBeforeExit = false; // Disable verification at shutdown
  2034   // Note: only executed in non-PRODUCT mode
  2035   if (!UseAsyncConcMarkSweepGC &&
  2036       (ExplicitGCInvokesConcurrent ||
  2037        ExplicitGCInvokesConcurrentAndUnloadsClasses)) {
  2038     jio_fprintf(defaultStream::error_stream(),
  2039                 "error: +ExplicitGCInvokesConcurrent[AndUnloadsClasses] conflicts"
  2040                 " with -UseAsyncConcMarkSweepGC");
  2041     status = false;
  2044   status = status && verify_min_value(ParGCArrayScanChunk, 1, "ParGCArrayScanChunk");
  2046 #if INCLUDE_ALL_GCS
  2047   if (UseG1GC) {
  2048     status = status && verify_percentage(InitiatingHeapOccupancyPercent,
  2049                                          "InitiatingHeapOccupancyPercent");
  2050     status = status && verify_min_value(G1RefProcDrainInterval, 1,
  2051                                         "G1RefProcDrainInterval");
  2052     status = status && verify_min_value((intx)G1ConcMarkStepDurationMillis, 1,
  2053                                         "G1ConcMarkStepDurationMillis");
  2054     status = status && verify_interval(G1ConcRSHotCardLimit, 0, max_jubyte,
  2055                                        "G1ConcRSHotCardLimit");
  2056     status = status && verify_interval(G1ConcRSLogCacheSize, 0, 31,
  2057                                        "G1ConcRSLogCacheSize");
  2059 #endif // INCLUDE_ALL_GCS
  2061   status = status && verify_interval(RefDiscoveryPolicy,
  2062                                      ReferenceProcessor::DiscoveryPolicyMin,
  2063                                      ReferenceProcessor::DiscoveryPolicyMax,
  2064                                      "RefDiscoveryPolicy");
  2066   // Limit the lower bound of this flag to 1 as it is used in a division
  2067   // expression.
  2068   status = status && verify_interval(TLABWasteTargetPercent,
  2069                                      1, 100, "TLABWasteTargetPercent");
  2071   status = status && verify_object_alignment();
  2073   status = status && verify_min_value(ClassMetaspaceSize, 1*M,
  2074                                       "ClassMetaspaceSize");
  2076   status = status && verify_interval(MarkStackSizeMax,
  2077                                   1, (max_jint - 1), "MarkStackSizeMax");
  2079 #ifdef SPARC
  2080   if (UseConcMarkSweepGC || UseG1GC) {
  2081     // Issue a stern warning if the user has explicitly set
  2082     // UseMemSetInBOT (it is known to cause issues), but allow
  2083     // use for experimentation and debugging.
  2084     if (VM_Version::is_sun4v() && UseMemSetInBOT) {
  2085       assert(!FLAG_IS_DEFAULT(UseMemSetInBOT), "Error");
  2086       warning("Experimental flag -XX:+UseMemSetInBOT is known to cause instability"
  2087           " on sun4v; please understand that you are using at your own risk!");
  2090 #endif // SPARC
  2092   if (PrintNMTStatistics) {
  2093 #if INCLUDE_NMT
  2094     if (MemTracker::tracking_level() == MemTracker::NMT_off) {
  2095 #endif // INCLUDE_NMT
  2096       warning("PrintNMTStatistics is disabled, because native memory tracking is not enabled");
  2097       PrintNMTStatistics = false;
  2098 #if INCLUDE_NMT
  2100 #endif
  2103   // Need to limit the extent of the padding to reasonable size.
  2104   // 8K is well beyond the reasonable HW cache line size, even with the
  2105   // aggressive prefetching, while still leaving the room for segregating
  2106   // among the distinct pages.
  2107   if (ContendedPaddingWidth < 0 || ContendedPaddingWidth > 8192) {
  2108     jio_fprintf(defaultStream::error_stream(),
  2109                 "ContendedPaddingWidth=" INTX_FORMAT " must be the between %d and %d\n",
  2110                 ContendedPaddingWidth, 0, 8192);
  2111     status = false;
  2114   // Need to enforce the padding not to break the existing field alignments.
  2115   // It is sufficient to check against the largest type size.
  2116   if ((ContendedPaddingWidth % BytesPerLong) != 0) {
  2117     jio_fprintf(defaultStream::error_stream(),
  2118                 "ContendedPaddingWidth=" INTX_FORMAT " must be the multiple of %d\n",
  2119                 ContendedPaddingWidth, BytesPerLong);
  2120     status = false;
  2123   return status;
  2126 bool Arguments::is_bad_option(const JavaVMOption* option, jboolean ignore,
  2127   const char* option_type) {
  2128   if (ignore) return false;
  2130   const char* spacer = " ";
  2131   if (option_type == NULL) {
  2132     option_type = ++spacer; // Set both to the empty string.
  2135   if (os::obsolete_option(option)) {
  2136     jio_fprintf(defaultStream::error_stream(),
  2137                 "Obsolete %s%soption: %s\n", option_type, spacer,
  2138       option->optionString);
  2139     return false;
  2140   } else {
  2141     jio_fprintf(defaultStream::error_stream(),
  2142                 "Unrecognized %s%soption: %s\n", option_type, spacer,
  2143       option->optionString);
  2144     return true;
  2148 static const char* user_assertion_options[] = {
  2149   "-da", "-ea", "-disableassertions", "-enableassertions", 0
  2150 };
  2152 static const char* system_assertion_options[] = {
  2153   "-dsa", "-esa", "-disablesystemassertions", "-enablesystemassertions", 0
  2154 };
  2156 // Return true if any of the strings in null-terminated array 'names' matches.
  2157 // If tail_allowed is true, then the tail must begin with a colon; otherwise,
  2158 // the option must match exactly.
  2159 static bool match_option(const JavaVMOption* option, const char** names, const char** tail,
  2160   bool tail_allowed) {
  2161   for (/* empty */; *names != NULL; ++names) {
  2162     if (match_option(option, *names, tail)) {
  2163       if (**tail == '\0' || tail_allowed && **tail == ':') {
  2164         return true;
  2168   return false;
  2171 bool Arguments::parse_uintx(const char* value,
  2172                             uintx* uintx_arg,
  2173                             uintx min_size) {
  2175   // Check the sign first since atomull() parses only unsigned values.
  2176   bool value_is_positive = !(*value == '-');
  2178   if (value_is_positive) {
  2179     julong n;
  2180     bool good_return = atomull(value, &n);
  2181     if (good_return) {
  2182       bool above_minimum = n >= min_size;
  2183       bool value_is_too_large = n > max_uintx;
  2185       if (above_minimum && !value_is_too_large) {
  2186         *uintx_arg = n;
  2187         return true;
  2191   return false;
  2194 Arguments::ArgsRange Arguments::parse_memory_size(const char* s,
  2195                                                   julong* long_arg,
  2196                                                   julong min_size) {
  2197   if (!atomull(s, long_arg)) return arg_unreadable;
  2198   return check_memory_size(*long_arg, min_size);
  2201 // Parse JavaVMInitArgs structure
  2203 jint Arguments::parse_vm_init_args(const JavaVMInitArgs* args) {
  2204   // For components of the system classpath.
  2205   SysClassPath scp(Arguments::get_sysclasspath());
  2206   bool scp_assembly_required = false;
  2208   // Save default settings for some mode flags
  2209   Arguments::_AlwaysCompileLoopMethods = AlwaysCompileLoopMethods;
  2210   Arguments::_UseOnStackReplacement    = UseOnStackReplacement;
  2211   Arguments::_ClipInlining             = ClipInlining;
  2212   Arguments::_BackgroundCompilation    = BackgroundCompilation;
  2214   // Setup flags for mixed which is the default
  2215   set_mode_flags(_mixed);
  2217   // Parse JAVA_TOOL_OPTIONS environment variable (if present)
  2218   jint result = parse_java_tool_options_environment_variable(&scp, &scp_assembly_required);
  2219   if (result != JNI_OK) {
  2220     return result;
  2223   // Parse JavaVMInitArgs structure passed in
  2224   result = parse_each_vm_init_arg(args, &scp, &scp_assembly_required, COMMAND_LINE);
  2225   if (result != JNI_OK) {
  2226     return result;
  2229   if (AggressiveOpts) {
  2230     // Insert alt-rt.jar between user-specified bootclasspath
  2231     // prefix and the default bootclasspath.  os::set_boot_path()
  2232     // uses meta_index_dir as the default bootclasspath directory.
  2233     const char* altclasses_jar = "alt-rt.jar";
  2234     size_t altclasses_path_len = strlen(get_meta_index_dir()) + 1 +
  2235                                  strlen(altclasses_jar);
  2236     char* altclasses_path = NEW_C_HEAP_ARRAY(char, altclasses_path_len, mtInternal);
  2237     strcpy(altclasses_path, get_meta_index_dir());
  2238     strcat(altclasses_path, altclasses_jar);
  2239     scp.add_suffix_to_prefix(altclasses_path);
  2240     scp_assembly_required = true;
  2241     FREE_C_HEAP_ARRAY(char, altclasses_path, mtInternal);
  2244   // Parse _JAVA_OPTIONS environment variable (if present) (mimics classic VM)
  2245   result = parse_java_options_environment_variable(&scp, &scp_assembly_required);
  2246   if (result != JNI_OK) {
  2247     return result;
  2250   // Do final processing now that all arguments have been parsed
  2251   result = finalize_vm_init_args(&scp, scp_assembly_required);
  2252   if (result != JNI_OK) {
  2253     return result;
  2256   return JNI_OK;
  2259 // Checks if name in command-line argument -agent{lib,path}:name[=options]
  2260 // represents a valid HPROF of JDWP agent.  is_path==true denotes that we
  2261 // are dealing with -agentpath (case where name is a path), otherwise with
  2262 // -agentlib
  2263 bool valid_hprof_or_jdwp_agent(char *name, bool is_path) {
  2264   char *_name;
  2265   const char *_hprof = "hprof", *_jdwp = "jdwp";
  2266   size_t _len_hprof, _len_jdwp, _len_prefix;
  2268   if (is_path) {
  2269     if ((_name = strrchr(name, (int) *os::file_separator())) == NULL) {
  2270       return false;
  2273     _name++;  // skip past last path separator
  2274     _len_prefix = strlen(JNI_LIB_PREFIX);
  2276     if (strncmp(_name, JNI_LIB_PREFIX, _len_prefix) != 0) {
  2277       return false;
  2280     _name += _len_prefix;
  2281     _len_hprof = strlen(_hprof);
  2282     _len_jdwp = strlen(_jdwp);
  2284     if (strncmp(_name, _hprof, _len_hprof) == 0) {
  2285       _name += _len_hprof;
  2287     else if (strncmp(_name, _jdwp, _len_jdwp) == 0) {
  2288       _name += _len_jdwp;
  2290     else {
  2291       return false;
  2294     if (strcmp(_name, JNI_LIB_SUFFIX) != 0) {
  2295       return false;
  2298     return true;
  2301   if (strcmp(name, _hprof) == 0 || strcmp(name, _jdwp) == 0) {
  2302     return true;
  2305   return false;
  2308 jint Arguments::parse_each_vm_init_arg(const JavaVMInitArgs* args,
  2309                                        SysClassPath* scp_p,
  2310                                        bool* scp_assembly_required_p,
  2311                                        FlagValueOrigin origin) {
  2312   // Remaining part of option string
  2313   const char* tail;
  2315   // iterate over arguments
  2316   for (int index = 0; index < args->nOptions; index++) {
  2317     bool is_absolute_path = false;  // for -agentpath vs -agentlib
  2319     const JavaVMOption* option = args->options + index;
  2321     if (!match_option(option, "-Djava.class.path", &tail) &&
  2322         !match_option(option, "-Dsun.java.command", &tail) &&
  2323         !match_option(option, "-Dsun.java.launcher", &tail)) {
  2325         // add all jvm options to the jvm_args string. This string
  2326         // is used later to set the java.vm.args PerfData string constant.
  2327         // the -Djava.class.path and the -Dsun.java.command options are
  2328         // omitted from jvm_args string as each have their own PerfData
  2329         // string constant object.
  2330         build_jvm_args(option->optionString);
  2333     // -verbose:[class/gc/jni]
  2334     if (match_option(option, "-verbose", &tail)) {
  2335       if (!strcmp(tail, ":class") || !strcmp(tail, "")) {
  2336         FLAG_SET_CMDLINE(bool, TraceClassLoading, true);
  2337         FLAG_SET_CMDLINE(bool, TraceClassUnloading, true);
  2338       } else if (!strcmp(tail, ":gc")) {
  2339         FLAG_SET_CMDLINE(bool, PrintGC, true);
  2340       } else if (!strcmp(tail, ":jni")) {
  2341         FLAG_SET_CMDLINE(bool, PrintJNIResolving, true);
  2343     // -da / -ea / -disableassertions / -enableassertions
  2344     // These accept an optional class/package name separated by a colon, e.g.,
  2345     // -da:java.lang.Thread.
  2346     } else if (match_option(option, user_assertion_options, &tail, true)) {
  2347       bool enable = option->optionString[1] == 'e';     // char after '-' is 'e'
  2348       if (*tail == '\0') {
  2349         JavaAssertions::setUserClassDefault(enable);
  2350       } else {
  2351         assert(*tail == ':', "bogus match by match_option()");
  2352         JavaAssertions::addOption(tail + 1, enable);
  2354     // -dsa / -esa / -disablesystemassertions / -enablesystemassertions
  2355     } else if (match_option(option, system_assertion_options, &tail, false)) {
  2356       bool enable = option->optionString[1] == 'e';     // char after '-' is 'e'
  2357       JavaAssertions::setSystemClassDefault(enable);
  2358     // -bootclasspath:
  2359     } else if (match_option(option, "-Xbootclasspath:", &tail)) {
  2360       scp_p->reset_path(tail);
  2361       *scp_assembly_required_p = true;
  2362     // -bootclasspath/a:
  2363     } else if (match_option(option, "-Xbootclasspath/a:", &tail)) {
  2364       scp_p->add_suffix(tail);
  2365       *scp_assembly_required_p = true;
  2366     // -bootclasspath/p:
  2367     } else if (match_option(option, "-Xbootclasspath/p:", &tail)) {
  2368       scp_p->add_prefix(tail);
  2369       *scp_assembly_required_p = true;
  2370     // -Xrun
  2371     } else if (match_option(option, "-Xrun", &tail)) {
  2372       if (tail != NULL) {
  2373         const char* pos = strchr(tail, ':');
  2374         size_t len = (pos == NULL) ? strlen(tail) : pos - tail;
  2375         char* name = (char*)memcpy(NEW_C_HEAP_ARRAY(char, len + 1, mtInternal), tail, len);
  2376         name[len] = '\0';
  2378         char *options = NULL;
  2379         if(pos != NULL) {
  2380           size_t len2 = strlen(pos+1) + 1; // options start after ':'.  Final zero must be copied.
  2381           options = (char*)memcpy(NEW_C_HEAP_ARRAY(char, len2, mtInternal), pos+1, len2);
  2383 #if !INCLUDE_JVMTI
  2384         if ((strcmp(name, "hprof") == 0) || (strcmp(name, "jdwp") == 0)) {
  2385           jio_fprintf(defaultStream::error_stream(),
  2386             "Profiling and debugging agents are not supported in this VM\n");
  2387           return JNI_ERR;
  2389 #endif // !INCLUDE_JVMTI
  2390         add_init_library(name, options);
  2392     // -agentlib and -agentpath
  2393     } else if (match_option(option, "-agentlib:", &tail) ||
  2394           (is_absolute_path = match_option(option, "-agentpath:", &tail))) {
  2395       if(tail != NULL) {
  2396         const char* pos = strchr(tail, '=');
  2397         size_t len = (pos == NULL) ? strlen(tail) : pos - tail;
  2398         char* name = strncpy(NEW_C_HEAP_ARRAY(char, len + 1, mtInternal), tail, len);
  2399         name[len] = '\0';
  2401         char *options = NULL;
  2402         if(pos != NULL) {
  2403           options = strcpy(NEW_C_HEAP_ARRAY(char, strlen(pos + 1) + 1, mtInternal), pos + 1);
  2405 #if !INCLUDE_JVMTI
  2406         if (valid_hprof_or_jdwp_agent(name, is_absolute_path)) {
  2407           jio_fprintf(defaultStream::error_stream(),
  2408             "Profiling and debugging agents are not supported in this VM\n");
  2409           return JNI_ERR;
  2411 #endif // !INCLUDE_JVMTI
  2412         add_init_agent(name, options, is_absolute_path);
  2414     // -javaagent
  2415     } else if (match_option(option, "-javaagent:", &tail)) {
  2416 #if !INCLUDE_JVMTI
  2417       jio_fprintf(defaultStream::error_stream(),
  2418         "Instrumentation agents are not supported in this VM\n");
  2419       return JNI_ERR;
  2420 #else
  2421       if(tail != NULL) {
  2422         char *options = strcpy(NEW_C_HEAP_ARRAY(char, strlen(tail) + 1, mtInternal), tail);
  2423         add_init_agent("instrument", options, false);
  2425 #endif // !INCLUDE_JVMTI
  2426     // -Xnoclassgc
  2427     } else if (match_option(option, "-Xnoclassgc", &tail)) {
  2428       FLAG_SET_CMDLINE(bool, ClassUnloading, false);
  2429     // -Xincgc: i-CMS
  2430     } else if (match_option(option, "-Xincgc", &tail)) {
  2431       FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, true);
  2432       FLAG_SET_CMDLINE(bool, CMSIncrementalMode, true);
  2433     // -Xnoincgc: no i-CMS
  2434     } else if (match_option(option, "-Xnoincgc", &tail)) {
  2435       FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, false);
  2436       FLAG_SET_CMDLINE(bool, CMSIncrementalMode, false);
  2437     // -Xconcgc
  2438     } else if (match_option(option, "-Xconcgc", &tail)) {
  2439       FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, true);
  2440     // -Xnoconcgc
  2441     } else if (match_option(option, "-Xnoconcgc", &tail)) {
  2442       FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, false);
  2443     // -Xbatch
  2444     } else if (match_option(option, "-Xbatch", &tail)) {
  2445       FLAG_SET_CMDLINE(bool, BackgroundCompilation, false);
  2446     // -Xmn for compatibility with other JVM vendors
  2447     } else if (match_option(option, "-Xmn", &tail)) {
  2448       julong long_initial_eden_size = 0;
  2449       ArgsRange errcode = parse_memory_size(tail, &long_initial_eden_size, 1);
  2450       if (errcode != arg_in_range) {
  2451         jio_fprintf(defaultStream::error_stream(),
  2452                     "Invalid initial eden size: %s\n", option->optionString);
  2453         describe_range_error(errcode);
  2454         return JNI_EINVAL;
  2456       FLAG_SET_CMDLINE(uintx, MaxNewSize, (uintx)long_initial_eden_size);
  2457       FLAG_SET_CMDLINE(uintx, NewSize, (uintx)long_initial_eden_size);
  2458     // -Xms
  2459     } else if (match_option(option, "-Xms", &tail)) {
  2460       julong long_initial_heap_size = 0;
  2461       // an initial heap size of 0 means automatically determine
  2462       ArgsRange errcode = parse_memory_size(tail, &long_initial_heap_size, 0);
  2463       if (errcode != arg_in_range) {
  2464         jio_fprintf(defaultStream::error_stream(),
  2465                     "Invalid initial heap size: %s\n", option->optionString);
  2466         describe_range_error(errcode);
  2467         return JNI_EINVAL;
  2469       FLAG_SET_CMDLINE(uintx, InitialHeapSize, (uintx)long_initial_heap_size);
  2470       // Currently the minimum size and the initial heap sizes are the same.
  2471       set_min_heap_size(InitialHeapSize);
  2472     // -Xmx
  2473     } else if (match_option(option, "-Xmx", &tail) || match_option(option, "-XX:MaxHeapSize=", &tail)) {
  2474       julong long_max_heap_size = 0;
  2475       ArgsRange errcode = parse_memory_size(tail, &long_max_heap_size, 1);
  2476       if (errcode != arg_in_range) {
  2477         jio_fprintf(defaultStream::error_stream(),
  2478                     "Invalid maximum heap size: %s\n", option->optionString);
  2479         describe_range_error(errcode);
  2480         return JNI_EINVAL;
  2482       FLAG_SET_CMDLINE(uintx, MaxHeapSize, (uintx)long_max_heap_size);
  2483     // Xmaxf
  2484     } else if (match_option(option, "-Xmaxf", &tail)) {
  2485       int maxf = (int)(atof(tail) * 100);
  2486       if (maxf < 0 || maxf > 100) {
  2487         jio_fprintf(defaultStream::error_stream(),
  2488                     "Bad max heap free percentage size: %s\n",
  2489                     option->optionString);
  2490         return JNI_EINVAL;
  2491       } else {
  2492         FLAG_SET_CMDLINE(uintx, MaxHeapFreeRatio, maxf);
  2494     // Xminf
  2495     } else if (match_option(option, "-Xminf", &tail)) {
  2496       int minf = (int)(atof(tail) * 100);
  2497       if (minf < 0 || minf > 100) {
  2498         jio_fprintf(defaultStream::error_stream(),
  2499                     "Bad min heap free percentage size: %s\n",
  2500                     option->optionString);
  2501         return JNI_EINVAL;
  2502       } else {
  2503         FLAG_SET_CMDLINE(uintx, MinHeapFreeRatio, minf);
  2505     // -Xss
  2506     } else if (match_option(option, "-Xss", &tail)) {
  2507       julong long_ThreadStackSize = 0;
  2508       ArgsRange errcode = parse_memory_size(tail, &long_ThreadStackSize, 1000);
  2509       if (errcode != arg_in_range) {
  2510         jio_fprintf(defaultStream::error_stream(),
  2511                     "Invalid thread stack size: %s\n", option->optionString);
  2512         describe_range_error(errcode);
  2513         return JNI_EINVAL;
  2515       // Internally track ThreadStackSize in units of 1024 bytes.
  2516       FLAG_SET_CMDLINE(intx, ThreadStackSize,
  2517                               round_to((int)long_ThreadStackSize, K) / K);
  2518     // -Xoss
  2519     } else if (match_option(option, "-Xoss", &tail)) {
  2520           // HotSpot does not have separate native and Java stacks, ignore silently for compatibility
  2521     // -Xmaxjitcodesize
  2522     } else if (match_option(option, "-Xmaxjitcodesize", &tail) ||
  2523                match_option(option, "-XX:ReservedCodeCacheSize=", &tail)) {
  2524       julong long_ReservedCodeCacheSize = 0;
  2525       ArgsRange errcode = parse_memory_size(tail, &long_ReservedCodeCacheSize,
  2526                                             (size_t)InitialCodeCacheSize);
  2527       if (errcode != arg_in_range) {
  2528         jio_fprintf(defaultStream::error_stream(),
  2529                     "Invalid maximum code cache size: %s. Should be greater than InitialCodeCacheSize=%dK\n",
  2530                     option->optionString, InitialCodeCacheSize/K);
  2531         describe_range_error(errcode);
  2532         return JNI_EINVAL;
  2534       FLAG_SET_CMDLINE(uintx, ReservedCodeCacheSize, (uintx)long_ReservedCodeCacheSize);
  2535     // -green
  2536     } else if (match_option(option, "-green", &tail)) {
  2537       jio_fprintf(defaultStream::error_stream(),
  2538                   "Green threads support not available\n");
  2539           return JNI_EINVAL;
  2540     // -native
  2541     } else if (match_option(option, "-native", &tail)) {
  2542           // HotSpot always uses native threads, ignore silently for compatibility
  2543     // -Xsqnopause
  2544     } else if (match_option(option, "-Xsqnopause", &tail)) {
  2545           // EVM option, ignore silently for compatibility
  2546     // -Xrs
  2547     } else if (match_option(option, "-Xrs", &tail)) {
  2548           // Classic/EVM option, new functionality
  2549       FLAG_SET_CMDLINE(bool, ReduceSignalUsage, true);
  2550     } else if (match_option(option, "-Xusealtsigs", &tail)) {
  2551           // change default internal VM signals used - lower case for back compat
  2552       FLAG_SET_CMDLINE(bool, UseAltSigs, true);
  2553     // -Xoptimize
  2554     } else if (match_option(option, "-Xoptimize", &tail)) {
  2555           // EVM option, ignore silently for compatibility
  2556     // -Xprof
  2557     } else if (match_option(option, "-Xprof", &tail)) {
  2558 #if INCLUDE_FPROF
  2559       _has_profile = true;
  2560 #else // INCLUDE_FPROF
  2561       jio_fprintf(defaultStream::error_stream(),
  2562         "Flat profiling is not supported in this VM.\n");
  2563       return JNI_ERR;
  2564 #endif // INCLUDE_FPROF
  2565     // -Xaprof
  2566     } else if (match_option(option, "-Xaprof", &tail)) {
  2567       _has_alloc_profile = true;
  2568     // -Xconcurrentio
  2569     } else if (match_option(option, "-Xconcurrentio", &tail)) {
  2570       FLAG_SET_CMDLINE(bool, UseLWPSynchronization, true);
  2571       FLAG_SET_CMDLINE(bool, BackgroundCompilation, false);
  2572       FLAG_SET_CMDLINE(intx, DeferThrSuspendLoopCount, 1);
  2573       FLAG_SET_CMDLINE(bool, UseTLAB, false);
  2574       FLAG_SET_CMDLINE(uintx, NewSizeThreadIncrease, 16 * K);  // 20Kb per thread added to new generation
  2576       // -Xinternalversion
  2577     } else if (match_option(option, "-Xinternalversion", &tail)) {
  2578       jio_fprintf(defaultStream::output_stream(), "%s\n",
  2579                   VM_Version::internal_vm_info_string());
  2580       vm_exit(0);
  2581 #ifndef PRODUCT
  2582     // -Xprintflags
  2583     } else if (match_option(option, "-Xprintflags", &tail)) {
  2584       CommandLineFlags::printFlags(tty, false);
  2585       vm_exit(0);
  2586 #endif
  2587     // -D
  2588     } else if (match_option(option, "-D", &tail)) {
  2589       if (!add_property(tail)) {
  2590         return JNI_ENOMEM;
  2592       // Out of the box management support
  2593       if (match_option(option, "-Dcom.sun.management", &tail)) {
  2594 #if INCLUDE_MANAGEMENT
  2595         FLAG_SET_CMDLINE(bool, ManagementServer, true);
  2596 #else
  2597         jio_fprintf(defaultStream::output_stream(),
  2598           "-Dcom.sun.management is not supported in this VM.\n");
  2599         return JNI_ERR;
  2600 #endif
  2602     // -Xint
  2603     } else if (match_option(option, "-Xint", &tail)) {
  2604           set_mode_flags(_int);
  2605     // -Xmixed
  2606     } else if (match_option(option, "-Xmixed", &tail)) {
  2607           set_mode_flags(_mixed);
  2608     // -Xcomp
  2609     } else if (match_option(option, "-Xcomp", &tail)) {
  2610       // for testing the compiler; turn off all flags that inhibit compilation
  2611           set_mode_flags(_comp);
  2612     // -Xshare:dump
  2613     } else if (match_option(option, "-Xshare:dump", &tail)) {
  2614       FLAG_SET_CMDLINE(bool, DumpSharedSpaces, true);
  2615       set_mode_flags(_int);     // Prevent compilation, which creates objects
  2616     // -Xshare:on
  2617     } else if (match_option(option, "-Xshare:on", &tail)) {
  2618       FLAG_SET_CMDLINE(bool, UseSharedSpaces, true);
  2619       FLAG_SET_CMDLINE(bool, RequireSharedSpaces, true);
  2620     // -Xshare:auto
  2621     } else if (match_option(option, "-Xshare:auto", &tail)) {
  2622       FLAG_SET_CMDLINE(bool, UseSharedSpaces, true);
  2623       FLAG_SET_CMDLINE(bool, RequireSharedSpaces, false);
  2624     // -Xshare:off
  2625     } else if (match_option(option, "-Xshare:off", &tail)) {
  2626       FLAG_SET_CMDLINE(bool, UseSharedSpaces, false);
  2627       FLAG_SET_CMDLINE(bool, RequireSharedSpaces, false);
  2628     // -Xverify
  2629     } else if (match_option(option, "-Xverify", &tail)) {
  2630       if (strcmp(tail, ":all") == 0 || strcmp(tail, "") == 0) {
  2631         FLAG_SET_CMDLINE(bool, BytecodeVerificationLocal, true);
  2632         FLAG_SET_CMDLINE(bool, BytecodeVerificationRemote, true);
  2633       } else if (strcmp(tail, ":remote") == 0) {
  2634         FLAG_SET_CMDLINE(bool, BytecodeVerificationLocal, false);
  2635         FLAG_SET_CMDLINE(bool, BytecodeVerificationRemote, true);
  2636       } else if (strcmp(tail, ":none") == 0) {
  2637         FLAG_SET_CMDLINE(bool, BytecodeVerificationLocal, false);
  2638         FLAG_SET_CMDLINE(bool, BytecodeVerificationRemote, false);
  2639       } else if (is_bad_option(option, args->ignoreUnrecognized, "verification")) {
  2640         return JNI_EINVAL;
  2642     // -Xdebug
  2643     } else if (match_option(option, "-Xdebug", &tail)) {
  2644       // note this flag has been used, then ignore
  2645       set_xdebug_mode(true);
  2646     // -Xnoagent
  2647     } else if (match_option(option, "-Xnoagent", &tail)) {
  2648       // For compatibility with classic. HotSpot refuses to load the old style agent.dll.
  2649     } else if (match_option(option, "-Xboundthreads", &tail)) {
  2650       // Bind user level threads to kernel threads (Solaris only)
  2651       FLAG_SET_CMDLINE(bool, UseBoundThreads, true);
  2652     } else if (match_option(option, "-Xloggc:", &tail)) {
  2653       // Redirect GC output to the file. -Xloggc:<filename>
  2654       // ostream_init_log(), when called will use this filename
  2655       // to initialize a fileStream.
  2656       _gc_log_filename = strdup(tail);
  2657       FLAG_SET_CMDLINE(bool, PrintGC, true);
  2658       FLAG_SET_CMDLINE(bool, PrintGCTimeStamps, true);
  2660     // JNI hooks
  2661     } else if (match_option(option, "-Xcheck", &tail)) {
  2662       if (!strcmp(tail, ":jni")) {
  2663 #if !INCLUDE_JNI_CHECK
  2664         warning("JNI CHECKING is not supported in this VM");
  2665 #else
  2666         CheckJNICalls = true;
  2667 #endif // INCLUDE_JNI_CHECK
  2668       } else if (is_bad_option(option, args->ignoreUnrecognized,
  2669                                      "check")) {
  2670         return JNI_EINVAL;
  2672     } else if (match_option(option, "vfprintf", &tail)) {
  2673       _vfprintf_hook = CAST_TO_FN_PTR(vfprintf_hook_t, option->extraInfo);
  2674     } else if (match_option(option, "exit", &tail)) {
  2675       _exit_hook = CAST_TO_FN_PTR(exit_hook_t, option->extraInfo);
  2676     } else if (match_option(option, "abort", &tail)) {
  2677       _abort_hook = CAST_TO_FN_PTR(abort_hook_t, option->extraInfo);
  2678     // -XX:+AggressiveHeap
  2679     } else if (match_option(option, "-XX:+AggressiveHeap", &tail)) {
  2681       // This option inspects the machine and attempts to set various
  2682       // parameters to be optimal for long-running, memory allocation
  2683       // intensive jobs.  It is intended for machines with large
  2684       // amounts of cpu and memory.
  2686       // initHeapSize is needed since _initial_heap_size is 4 bytes on a 32 bit
  2687       // VM, but we may not be able to represent the total physical memory
  2688       // available (like having 8gb of memory on a box but using a 32bit VM).
  2689       // Thus, we need to make sure we're using a julong for intermediate
  2690       // calculations.
  2691       julong initHeapSize;
  2692       julong total_memory = os::physical_memory();
  2694       if (total_memory < (julong)256*M) {
  2695         jio_fprintf(defaultStream::error_stream(),
  2696                     "You need at least 256mb of memory to use -XX:+AggressiveHeap\n");
  2697         vm_exit(1);
  2700       // The heap size is half of available memory, or (at most)
  2701       // all of possible memory less 160mb (leaving room for the OS
  2702       // when using ISM).  This is the maximum; because adaptive sizing
  2703       // is turned on below, the actual space used may be smaller.
  2705       initHeapSize = MIN2(total_memory / (julong)2,
  2706                           total_memory - (julong)160*M);
  2708       initHeapSize = limit_by_allocatable_memory(initHeapSize);
  2710       if (FLAG_IS_DEFAULT(MaxHeapSize)) {
  2711          FLAG_SET_CMDLINE(uintx, MaxHeapSize, initHeapSize);
  2712          FLAG_SET_CMDLINE(uintx, InitialHeapSize, initHeapSize);
  2713          // Currently the minimum size and the initial heap sizes are the same.
  2714          set_min_heap_size(initHeapSize);
  2716       if (FLAG_IS_DEFAULT(NewSize)) {
  2717          // Make the young generation 3/8ths of the total heap.
  2718          FLAG_SET_CMDLINE(uintx, NewSize,
  2719                                 ((julong)MaxHeapSize / (julong)8) * (julong)3);
  2720          FLAG_SET_CMDLINE(uintx, MaxNewSize, NewSize);
  2723 #ifndef _ALLBSD_SOURCE  // UseLargePages is not yet supported on BSD.
  2724       FLAG_SET_DEFAULT(UseLargePages, true);
  2725 #endif
  2727       // Increase some data structure sizes for efficiency
  2728       FLAG_SET_CMDLINE(uintx, BaseFootPrintEstimate, MaxHeapSize);
  2729       FLAG_SET_CMDLINE(bool, ResizeTLAB, false);
  2730       FLAG_SET_CMDLINE(uintx, TLABSize, 256*K);
  2732       // See the OldPLABSize comment below, but replace 'after promotion'
  2733       // with 'after copying'.  YoungPLABSize is the size of the survivor
  2734       // space per-gc-thread buffers.  The default is 4kw.
  2735       FLAG_SET_CMDLINE(uintx, YoungPLABSize, 256*K);      // Note: this is in words
  2737       // OldPLABSize is the size of the buffers in the old gen that
  2738       // UseParallelGC uses to promote live data that doesn't fit in the
  2739       // survivor spaces.  At any given time, there's one for each gc thread.
  2740       // The default size is 1kw. These buffers are rarely used, since the
  2741       // survivor spaces are usually big enough.  For specjbb, however, there
  2742       // are occasions when there's lots of live data in the young gen
  2743       // and we end up promoting some of it.  We don't have a definite
  2744       // explanation for why bumping OldPLABSize helps, but the theory
  2745       // is that a bigger PLAB results in retaining something like the
  2746       // original allocation order after promotion, which improves mutator
  2747       // locality.  A minor effect may be that larger PLABs reduce the
  2748       // number of PLAB allocation events during gc.  The value of 8kw
  2749       // was arrived at by experimenting with specjbb.
  2750       FLAG_SET_CMDLINE(uintx, OldPLABSize, 8*K);  // Note: this is in words
  2752       // Enable parallel GC and adaptive generation sizing
  2753       FLAG_SET_CMDLINE(bool, UseParallelGC, true);
  2754       FLAG_SET_DEFAULT(ParallelGCThreads,
  2755                        Abstract_VM_Version::parallel_worker_threads());
  2757       // Encourage steady state memory management
  2758       FLAG_SET_CMDLINE(uintx, ThresholdTolerance, 100);
  2760       // This appears to improve mutator locality
  2761       FLAG_SET_CMDLINE(bool, ScavengeBeforeFullGC, false);
  2763       // Get around early Solaris scheduling bug
  2764       // (affinity vs other jobs on system)
  2765       // but disallow DR and offlining (5008695).
  2766       FLAG_SET_CMDLINE(bool, BindGCTaskThreadsToCPUs, true);
  2768     } else if (match_option(option, "-XX:+NeverTenure", &tail)) {
  2769       // The last option must always win.
  2770       FLAG_SET_CMDLINE(bool, AlwaysTenure, false);
  2771       FLAG_SET_CMDLINE(bool, NeverTenure, true);
  2772     } else if (match_option(option, "-XX:+AlwaysTenure", &tail)) {
  2773       // The last option must always win.
  2774       FLAG_SET_CMDLINE(bool, NeverTenure, false);
  2775       FLAG_SET_CMDLINE(bool, AlwaysTenure, true);
  2776     } else if (match_option(option, "-XX:+CMSPermGenSweepingEnabled", &tail) ||
  2777                match_option(option, "-XX:-CMSPermGenSweepingEnabled", &tail)) {
  2778       jio_fprintf(defaultStream::error_stream(),
  2779         "Please use CMSClassUnloadingEnabled in place of "
  2780         "CMSPermGenSweepingEnabled in the future\n");
  2781     } else if (match_option(option, "-XX:+UseGCTimeLimit", &tail)) {
  2782       FLAG_SET_CMDLINE(bool, UseGCOverheadLimit, true);
  2783       jio_fprintf(defaultStream::error_stream(),
  2784         "Please use -XX:+UseGCOverheadLimit in place of "
  2785         "-XX:+UseGCTimeLimit in the future\n");
  2786     } else if (match_option(option, "-XX:-UseGCTimeLimit", &tail)) {
  2787       FLAG_SET_CMDLINE(bool, UseGCOverheadLimit, false);
  2788       jio_fprintf(defaultStream::error_stream(),
  2789         "Please use -XX:-UseGCOverheadLimit in place of "
  2790         "-XX:-UseGCTimeLimit in the future\n");
  2791     // The TLE options are for compatibility with 1.3 and will be
  2792     // removed without notice in a future release.  These options
  2793     // are not to be documented.
  2794     } else if (match_option(option, "-XX:MaxTLERatio=", &tail)) {
  2795       // No longer used.
  2796     } else if (match_option(option, "-XX:+ResizeTLE", &tail)) {
  2797       FLAG_SET_CMDLINE(bool, ResizeTLAB, true);
  2798     } else if (match_option(option, "-XX:-ResizeTLE", &tail)) {
  2799       FLAG_SET_CMDLINE(bool, ResizeTLAB, false);
  2800     } else if (match_option(option, "-XX:+PrintTLE", &tail)) {
  2801       FLAG_SET_CMDLINE(bool, PrintTLAB, true);
  2802     } else if (match_option(option, "-XX:-PrintTLE", &tail)) {
  2803       FLAG_SET_CMDLINE(bool, PrintTLAB, false);
  2804     } else if (match_option(option, "-XX:TLEFragmentationRatio=", &tail)) {
  2805       // No longer used.
  2806     } else if (match_option(option, "-XX:TLESize=", &tail)) {
  2807       julong long_tlab_size = 0;
  2808       ArgsRange errcode = parse_memory_size(tail, &long_tlab_size, 1);
  2809       if (errcode != arg_in_range) {
  2810         jio_fprintf(defaultStream::error_stream(),
  2811                     "Invalid TLAB size: %s\n", option->optionString);
  2812         describe_range_error(errcode);
  2813         return JNI_EINVAL;
  2815       FLAG_SET_CMDLINE(uintx, TLABSize, long_tlab_size);
  2816     } else if (match_option(option, "-XX:TLEThreadRatio=", &tail)) {
  2817       // No longer used.
  2818     } else if (match_option(option, "-XX:+UseTLE", &tail)) {
  2819       FLAG_SET_CMDLINE(bool, UseTLAB, true);
  2820     } else if (match_option(option, "-XX:-UseTLE", &tail)) {
  2821       FLAG_SET_CMDLINE(bool, UseTLAB, false);
  2822 SOLARIS_ONLY(
  2823     } else if (match_option(option, "-XX:+UsePermISM", &tail)) {
  2824       warning("-XX:+UsePermISM is obsolete.");
  2825       FLAG_SET_CMDLINE(bool, UseISM, true);
  2826     } else if (match_option(option, "-XX:-UsePermISM", &tail)) {
  2827       FLAG_SET_CMDLINE(bool, UseISM, false);
  2829     } else if (match_option(option, "-XX:+DisplayVMOutputToStderr", &tail)) {
  2830       FLAG_SET_CMDLINE(bool, DisplayVMOutputToStdout, false);
  2831       FLAG_SET_CMDLINE(bool, DisplayVMOutputToStderr, true);
  2832     } else if (match_option(option, "-XX:+DisplayVMOutputToStdout", &tail)) {
  2833       FLAG_SET_CMDLINE(bool, DisplayVMOutputToStderr, false);
  2834       FLAG_SET_CMDLINE(bool, DisplayVMOutputToStdout, true);
  2835     } else if (match_option(option, "-XX:+ExtendedDTraceProbes", &tail)) {
  2836 #if defined(DTRACE_ENABLED)
  2837       FLAG_SET_CMDLINE(bool, ExtendedDTraceProbes, true);
  2838       FLAG_SET_CMDLINE(bool, DTraceMethodProbes, true);
  2839       FLAG_SET_CMDLINE(bool, DTraceAllocProbes, true);
  2840       FLAG_SET_CMDLINE(bool, DTraceMonitorProbes, true);
  2841 #else // defined(DTRACE_ENABLED)
  2842       jio_fprintf(defaultStream::error_stream(),
  2843                   "ExtendedDTraceProbes flag is not applicable for this configuration\n");
  2844       return JNI_EINVAL;
  2845 #endif // defined(DTRACE_ENABLED)
  2846 #ifdef ASSERT
  2847     } else if (match_option(option, "-XX:+FullGCALot", &tail)) {
  2848       FLAG_SET_CMDLINE(bool, FullGCALot, true);
  2849       // disable scavenge before parallel mark-compact
  2850       FLAG_SET_CMDLINE(bool, ScavengeBeforeFullGC, false);
  2851 #endif
  2852     } else if (match_option(option, "-XX:CMSParPromoteBlocksToClaim=", &tail)) {
  2853       julong cms_blocks_to_claim = (julong)atol(tail);
  2854       FLAG_SET_CMDLINE(uintx, CMSParPromoteBlocksToClaim, cms_blocks_to_claim);
  2855       jio_fprintf(defaultStream::error_stream(),
  2856         "Please use -XX:OldPLABSize in place of "
  2857         "-XX:CMSParPromoteBlocksToClaim in the future\n");
  2858     } else if (match_option(option, "-XX:ParCMSPromoteBlocksToClaim=", &tail)) {
  2859       julong cms_blocks_to_claim = (julong)atol(tail);
  2860       FLAG_SET_CMDLINE(uintx, CMSParPromoteBlocksToClaim, cms_blocks_to_claim);
  2861       jio_fprintf(defaultStream::error_stream(),
  2862         "Please use -XX:OldPLABSize in place of "
  2863         "-XX:ParCMSPromoteBlocksToClaim in the future\n");
  2864     } else if (match_option(option, "-XX:ParallelGCOldGenAllocBufferSize=", &tail)) {
  2865       julong old_plab_size = 0;
  2866       ArgsRange errcode = parse_memory_size(tail, &old_plab_size, 1);
  2867       if (errcode != arg_in_range) {
  2868         jio_fprintf(defaultStream::error_stream(),
  2869                     "Invalid old PLAB size: %s\n", option->optionString);
  2870         describe_range_error(errcode);
  2871         return JNI_EINVAL;
  2873       FLAG_SET_CMDLINE(uintx, OldPLABSize, old_plab_size);
  2874       jio_fprintf(defaultStream::error_stream(),
  2875                   "Please use -XX:OldPLABSize in place of "
  2876                   "-XX:ParallelGCOldGenAllocBufferSize in the future\n");
  2877     } else if (match_option(option, "-XX:ParallelGCToSpaceAllocBufferSize=", &tail)) {
  2878       julong young_plab_size = 0;
  2879       ArgsRange errcode = parse_memory_size(tail, &young_plab_size, 1);
  2880       if (errcode != arg_in_range) {
  2881         jio_fprintf(defaultStream::error_stream(),
  2882                     "Invalid young PLAB size: %s\n", option->optionString);
  2883         describe_range_error(errcode);
  2884         return JNI_EINVAL;
  2886       FLAG_SET_CMDLINE(uintx, YoungPLABSize, young_plab_size);
  2887       jio_fprintf(defaultStream::error_stream(),
  2888                   "Please use -XX:YoungPLABSize in place of "
  2889                   "-XX:ParallelGCToSpaceAllocBufferSize in the future\n");
  2890     } else if (match_option(option, "-XX:CMSMarkStackSize=", &tail) ||
  2891                match_option(option, "-XX:G1MarkStackSize=", &tail)) {
  2892       julong stack_size = 0;
  2893       ArgsRange errcode = parse_memory_size(tail, &stack_size, 1);
  2894       if (errcode != arg_in_range) {
  2895         jio_fprintf(defaultStream::error_stream(),
  2896                     "Invalid mark stack size: %s\n", option->optionString);
  2897         describe_range_error(errcode);
  2898         return JNI_EINVAL;
  2900       FLAG_SET_CMDLINE(uintx, MarkStackSize, stack_size);
  2901     } else if (match_option(option, "-XX:CMSMarkStackSizeMax=", &tail)) {
  2902       julong max_stack_size = 0;
  2903       ArgsRange errcode = parse_memory_size(tail, &max_stack_size, 1);
  2904       if (errcode != arg_in_range) {
  2905         jio_fprintf(defaultStream::error_stream(),
  2906                     "Invalid maximum mark stack size: %s\n",
  2907                     option->optionString);
  2908         describe_range_error(errcode);
  2909         return JNI_EINVAL;
  2911       FLAG_SET_CMDLINE(uintx, MarkStackSizeMax, max_stack_size);
  2912     } else if (match_option(option, "-XX:ParallelMarkingThreads=", &tail) ||
  2913                match_option(option, "-XX:ParallelCMSThreads=", &tail)) {
  2914       uintx conc_threads = 0;
  2915       if (!parse_uintx(tail, &conc_threads, 1)) {
  2916         jio_fprintf(defaultStream::error_stream(),
  2917                     "Invalid concurrent threads: %s\n", option->optionString);
  2918         return JNI_EINVAL;
  2920       FLAG_SET_CMDLINE(uintx, ConcGCThreads, conc_threads);
  2921     } else if (match_option(option, "-XX:MaxDirectMemorySize=", &tail)) {
  2922       julong max_direct_memory_size = 0;
  2923       ArgsRange errcode = parse_memory_size(tail, &max_direct_memory_size, 0);
  2924       if (errcode != arg_in_range) {
  2925         jio_fprintf(defaultStream::error_stream(),
  2926                     "Invalid maximum direct memory size: %s\n",
  2927                     option->optionString);
  2928         describe_range_error(errcode);
  2929         return JNI_EINVAL;
  2931       FLAG_SET_CMDLINE(uintx, MaxDirectMemorySize, max_direct_memory_size);
  2932     } else if (match_option(option, "-XX:+UseVMInterruptibleIO", &tail)) {
  2933       // NOTE! In JDK 9, the UseVMInterruptibleIO flag will completely go
  2934       //       away and will cause VM initialization failures!
  2935       warning("-XX:+UseVMInterruptibleIO is obsolete and will be removed in a future release.");
  2936       FLAG_SET_CMDLINE(bool, UseVMInterruptibleIO, true);
  2937 #if !INCLUDE_MANAGEMENT
  2938     } else if (match_option(option, "-XX:+ManagementServer", &tail)) {
  2939         jio_fprintf(defaultStream::error_stream(),
  2940           "ManagementServer is not supported in this VM.\n");
  2941         return JNI_ERR;
  2942 #endif // INCLUDE_MANAGEMENT
  2943     } else if (match_option(option, "-XX:", &tail)) { // -XX:xxxx
  2944       // Skip -XX:Flags= since that case has already been handled
  2945       if (strncmp(tail, "Flags=", strlen("Flags=")) != 0) {
  2946         if (!process_argument(tail, args->ignoreUnrecognized, origin)) {
  2947           return JNI_EINVAL;
  2950     // Unknown option
  2951     } else if (is_bad_option(option, args->ignoreUnrecognized)) {
  2952       return JNI_ERR;
  2956   // Change the default value for flags  which have different default values
  2957   // when working with older JDKs.
  2958 #ifdef LINUX
  2959  if (JDK_Version::current().compare_major(6) <= 0 &&
  2960       FLAG_IS_DEFAULT(UseLinuxPosixThreadCPUClocks)) {
  2961     FLAG_SET_DEFAULT(UseLinuxPosixThreadCPUClocks, false);
  2963 #endif // LINUX
  2964   return JNI_OK;
  2967 jint Arguments::finalize_vm_init_args(SysClassPath* scp_p, bool scp_assembly_required) {
  2968   // This must be done after all -D arguments have been processed.
  2969   scp_p->expand_endorsed();
  2971   if (scp_assembly_required || scp_p->get_endorsed() != NULL) {
  2972     // Assemble the bootclasspath elements into the final path.
  2973     Arguments::set_sysclasspath(scp_p->combined_path());
  2976   // This must be done after all arguments have been processed.
  2977   // java_compiler() true means set to "NONE" or empty.
  2978   if (java_compiler() && !xdebug_mode()) {
  2979     // For backwards compatibility, we switch to interpreted mode if
  2980     // -Djava.compiler="NONE" or "" is specified AND "-Xdebug" was
  2981     // not specified.
  2982     set_mode_flags(_int);
  2984   if (CompileThreshold == 0) {
  2985     set_mode_flags(_int);
  2988 #ifndef COMPILER2
  2989   // Don't degrade server performance for footprint
  2990   if (FLAG_IS_DEFAULT(UseLargePages) &&
  2991       MaxHeapSize < LargePageHeapSizeThreshold) {
  2992     // No need for large granularity pages w/small heaps.
  2993     // Note that large pages are enabled/disabled for both the
  2994     // Java heap and the code cache.
  2995     FLAG_SET_DEFAULT(UseLargePages, false);
  2996     SOLARIS_ONLY(FLAG_SET_DEFAULT(UseMPSS, false));
  2997     SOLARIS_ONLY(FLAG_SET_DEFAULT(UseISM, false));
  3000   // Tiered compilation is undefined with C1.
  3001   TieredCompilation = false;
  3002 #else
  3003   if (!FLAG_IS_DEFAULT(OptoLoopAlignment) && FLAG_IS_DEFAULT(MaxLoopPad)) {
  3004     FLAG_SET_DEFAULT(MaxLoopPad, OptoLoopAlignment-1);
  3006 #endif
  3008   // If we are running in a headless jre, force java.awt.headless property
  3009   // to be true unless the property has already been set.
  3010   // Also allow the OS environment variable JAVA_AWT_HEADLESS to set headless state.
  3011   if (os::is_headless_jre()) {
  3012     const char* headless = Arguments::get_property("java.awt.headless");
  3013     if (headless == NULL) {
  3014       char envbuffer[128];
  3015       if (!os::getenv("JAVA_AWT_HEADLESS", envbuffer, sizeof(envbuffer))) {
  3016         if (!add_property("java.awt.headless=true")) {
  3017           return JNI_ENOMEM;
  3019       } else {
  3020         char buffer[256];
  3021         strcpy(buffer, "java.awt.headless=");
  3022         strcat(buffer, envbuffer);
  3023         if (!add_property(buffer)) {
  3024           return JNI_ENOMEM;
  3030   if (!check_vm_args_consistency()) {
  3031     return JNI_ERR;
  3034   return JNI_OK;
  3037 jint Arguments::parse_java_options_environment_variable(SysClassPath* scp_p, bool* scp_assembly_required_p) {
  3038   return parse_options_environment_variable("_JAVA_OPTIONS", scp_p,
  3039                                             scp_assembly_required_p);
  3042 jint Arguments::parse_java_tool_options_environment_variable(SysClassPath* scp_p, bool* scp_assembly_required_p) {
  3043   return parse_options_environment_variable("JAVA_TOOL_OPTIONS", scp_p,
  3044                                             scp_assembly_required_p);
  3047 jint Arguments::parse_options_environment_variable(const char* name, SysClassPath* scp_p, bool* scp_assembly_required_p) {
  3048   const int N_MAX_OPTIONS = 64;
  3049   const int OPTION_BUFFER_SIZE = 1024;
  3050   char buffer[OPTION_BUFFER_SIZE];
  3052   // The variable will be ignored if it exceeds the length of the buffer.
  3053   // Don't check this variable if user has special privileges
  3054   // (e.g. unix su command).
  3055   if (os::getenv(name, buffer, sizeof(buffer)) &&
  3056       !os::have_special_privileges()) {
  3057     JavaVMOption options[N_MAX_OPTIONS];      // Construct option array
  3058     jio_fprintf(defaultStream::error_stream(),
  3059                 "Picked up %s: %s\n", name, buffer);
  3060     char* rd = buffer;                        // pointer to the input string (rd)
  3061     int i;
  3062     for (i = 0; i < N_MAX_OPTIONS;) {         // repeat for all options in the input string
  3063       while (isspace(*rd)) rd++;              // skip whitespace
  3064       if (*rd == 0) break;                    // we re done when the input string is read completely
  3066       // The output, option string, overwrites the input string.
  3067       // Because of quoting, the pointer to the option string (wrt) may lag the pointer to
  3068       // input string (rd).
  3069       char* wrt = rd;
  3071       options[i++].optionString = wrt;        // Fill in option
  3072       while (*rd != 0 && !isspace(*rd)) {     // unquoted strings terminate with a space or NULL
  3073         if (*rd == '\'' || *rd == '"') {      // handle a quoted string
  3074           int quote = *rd;                    // matching quote to look for
  3075           rd++;                               // don't copy open quote
  3076           while (*rd != quote) {              // include everything (even spaces) up until quote
  3077             if (*rd == 0) {                   // string termination means unmatched string
  3078               jio_fprintf(defaultStream::error_stream(),
  3079                           "Unmatched quote in %s\n", name);
  3080               return JNI_ERR;
  3082             *wrt++ = *rd++;                   // copy to option string
  3084           rd++;                               // don't copy close quote
  3085         } else {
  3086           *wrt++ = *rd++;                     // copy to option string
  3089       // Need to check if we're done before writing a NULL,
  3090       // because the write could be to the byte that rd is pointing to.
  3091       if (*rd++ == 0) {
  3092         *wrt = 0;
  3093         break;
  3095       *wrt = 0;                               // Zero terminate option
  3097     // Construct JavaVMInitArgs structure and parse as if it was part of the command line
  3098     JavaVMInitArgs vm_args;
  3099     vm_args.version = JNI_VERSION_1_2;
  3100     vm_args.options = options;
  3101     vm_args.nOptions = i;
  3102     vm_args.ignoreUnrecognized = IgnoreUnrecognizedVMOptions;
  3104     if (PrintVMOptions) {
  3105       const char* tail;
  3106       for (int i = 0; i < vm_args.nOptions; i++) {
  3107         const JavaVMOption *option = vm_args.options + i;
  3108         if (match_option(option, "-XX:", &tail)) {
  3109           logOption(tail);
  3114     return(parse_each_vm_init_arg(&vm_args, scp_p, scp_assembly_required_p, ENVIRON_VAR));
  3116   return JNI_OK;
  3119 void Arguments::set_shared_spaces_flags() {
  3120 #ifdef _LP64
  3121     const bool must_share = DumpSharedSpaces || RequireSharedSpaces;
  3123     // CompressedOops cannot be used with CDS.  The offsets of oopmaps and
  3124     // static fields are incorrect in the archive.  With some more clever
  3125     // initialization, this restriction can probably be lifted.
  3126     if (UseCompressedOops) {
  3127       if (must_share) {
  3128           warning("disabling compressed oops because of %s",
  3129                   DumpSharedSpaces ? "-Xshare:dump" : "-Xshare:on");
  3130           FLAG_SET_CMDLINE(bool, UseCompressedOops, false);
  3131           FLAG_SET_CMDLINE(bool, UseCompressedKlassPointers, false);
  3132       } else {
  3133         // Prefer compressed oops to class data sharing
  3134         if (UseSharedSpaces && Verbose) {
  3135           warning("turning off use of shared archive because of compressed oops");
  3137         no_shared_spaces();
  3140 #endif
  3142   if (DumpSharedSpaces) {
  3143     if (RequireSharedSpaces) {
  3144       warning("cannot dump shared archive while using shared archive");
  3146     UseSharedSpaces = false;
  3150 // Disable options not supported in this release, with a warning if they
  3151 // were explicitly requested on the command-line
  3152 #define UNSUPPORTED_OPTION(opt, description)                    \
  3153 do {                                                            \
  3154   if (opt) {                                                    \
  3155     if (FLAG_IS_CMDLINE(opt)) {                                 \
  3156       warning(description " is disabled in this release.");     \
  3157     }                                                           \
  3158     FLAG_SET_DEFAULT(opt, false);                               \
  3159   }                                                             \
  3160 } while(0)
  3163 #define UNSUPPORTED_GC_OPTION(gc)                                     \
  3164 do {                                                                  \
  3165   if (gc) {                                                           \
  3166     if (FLAG_IS_CMDLINE(gc)) {                                        \
  3167       warning(#gc " is not supported in this VM.  Using Serial GC."); \
  3168     }                                                                 \
  3169     FLAG_SET_DEFAULT(gc, false);                                      \
  3170   }                                                                   \
  3171 } while(0)
  3173 #if !INCLUDE_ALL_GCS
  3174 static void force_serial_gc() {
  3175   FLAG_SET_DEFAULT(UseSerialGC, true);
  3176   FLAG_SET_DEFAULT(CMSIncrementalMode, false);  // special CMS suboption
  3177   UNSUPPORTED_GC_OPTION(UseG1GC);
  3178   UNSUPPORTED_GC_OPTION(UseParallelGC);
  3179   UNSUPPORTED_GC_OPTION(UseParallelOldGC);
  3180   UNSUPPORTED_GC_OPTION(UseConcMarkSweepGC);
  3181   UNSUPPORTED_GC_OPTION(UseParNewGC);
  3183 #endif // INCLUDE_ALL_GCS
  3185 // Parse entry point called from JNI_CreateJavaVM
  3187 jint Arguments::parse(const JavaVMInitArgs* args) {
  3189   // Sharing support
  3190   // Construct the path to the archive
  3191   char jvm_path[JVM_MAXPATHLEN];
  3192   os::jvm_path(jvm_path, sizeof(jvm_path));
  3193   char *end = strrchr(jvm_path, *os::file_separator());
  3194   if (end != NULL) *end = '\0';
  3195   char *shared_archive_path = NEW_C_HEAP_ARRAY(char, strlen(jvm_path) +
  3196       strlen(os::file_separator()) + 20, mtInternal);
  3197   if (shared_archive_path == NULL) return JNI_ENOMEM;
  3198   strcpy(shared_archive_path, jvm_path);
  3199   strcat(shared_archive_path, os::file_separator());
  3200   strcat(shared_archive_path, "classes");
  3201   strcat(shared_archive_path, ".jsa");
  3202   SharedArchivePath = shared_archive_path;
  3204   // Remaining part of option string
  3205   const char* tail;
  3207   // If flag "-XX:Flags=flags-file" is used it will be the first option to be processed.
  3208   const char* hotspotrc = ".hotspotrc";
  3209   bool settings_file_specified = false;
  3210   bool needs_hotspotrc_warning = false;
  3212   const char* flags_file;
  3213   int index;
  3214   for (index = 0; index < args->nOptions; index++) {
  3215     const JavaVMOption *option = args->options + index;
  3216     if (match_option(option, "-XX:Flags=", &tail)) {
  3217       flags_file = tail;
  3218       settings_file_specified = true;
  3220     if (match_option(option, "-XX:+PrintVMOptions", &tail)) {
  3221       PrintVMOptions = true;
  3223     if (match_option(option, "-XX:-PrintVMOptions", &tail)) {
  3224       PrintVMOptions = false;
  3226     if (match_option(option, "-XX:+IgnoreUnrecognizedVMOptions", &tail)) {
  3227       IgnoreUnrecognizedVMOptions = true;
  3229     if (match_option(option, "-XX:-IgnoreUnrecognizedVMOptions", &tail)) {
  3230       IgnoreUnrecognizedVMOptions = false;
  3232     if (match_option(option, "-XX:+PrintFlagsInitial", &tail)) {
  3233       CommandLineFlags::printFlags(tty, false);
  3234       vm_exit(0);
  3236     if (match_option(option, "-XX:NativeMemoryTracking", &tail)) {
  3237 #if INCLUDE_NMT
  3238       MemTracker::init_tracking_options(tail);
  3239 #else
  3240       jio_fprintf(defaultStream::error_stream(),
  3241         "Native Memory Tracking is not supported in this VM\n");
  3242       return JNI_ERR;
  3243 #endif
  3247 #ifndef PRODUCT
  3248     if (match_option(option, "-XX:+PrintFlagsWithComments", &tail)) {
  3249       CommandLineFlags::printFlags(tty, true);
  3250       vm_exit(0);
  3252 #endif
  3255   if (IgnoreUnrecognizedVMOptions) {
  3256     // uncast const to modify the flag args->ignoreUnrecognized
  3257     *(jboolean*)(&args->ignoreUnrecognized) = true;
  3260   // Parse specified settings file
  3261   if (settings_file_specified) {
  3262     if (!process_settings_file(flags_file, true, args->ignoreUnrecognized)) {
  3263       return JNI_EINVAL;
  3265   } else {
  3266 #ifdef ASSERT
  3267     // Parse default .hotspotrc settings file
  3268     if (!process_settings_file(".hotspotrc", false, args->ignoreUnrecognized)) {
  3269       return JNI_EINVAL;
  3271 #else
  3272     struct stat buf;
  3273     if (os::stat(hotspotrc, &buf) == 0) {
  3274       needs_hotspotrc_warning = true;
  3276 #endif
  3279   if (PrintVMOptions) {
  3280     for (index = 0; index < args->nOptions; index++) {
  3281       const JavaVMOption *option = args->options + index;
  3282       if (match_option(option, "-XX:", &tail)) {
  3283         logOption(tail);
  3288   // Parse JavaVMInitArgs structure passed in, as well as JAVA_TOOL_OPTIONS and _JAVA_OPTIONS
  3289   jint result = parse_vm_init_args(args);
  3290   if (result != JNI_OK) {
  3291     return result;
  3294   // Delay warning until here so that we've had a chance to process
  3295   // the -XX:-PrintWarnings flag
  3296   if (needs_hotspotrc_warning) {
  3297     warning("%s file is present but has been ignored.  "
  3298             "Run with -XX:Flags=%s to load the file.",
  3299             hotspotrc, hotspotrc);
  3302 #ifdef _ALLBSD_SOURCE  // UseLargePages is not yet supported on BSD.
  3303   UNSUPPORTED_OPTION(UseLargePages, "-XX:+UseLargePages");
  3304 #endif
  3306 #if INCLUDE_ALL_GCS
  3307   #if (defined JAVASE_EMBEDDED || defined ARM)
  3308     UNSUPPORTED_OPTION(UseG1GC, "G1 GC");
  3309   #endif
  3310 #endif
  3312 #ifndef PRODUCT
  3313   if (TraceBytecodesAt != 0) {
  3314     TraceBytecodes = true;
  3316   if (CountCompiledCalls) {
  3317     if (UseCounterDecay) {
  3318       warning("UseCounterDecay disabled because CountCalls is set");
  3319       UseCounterDecay = false;
  3322 #endif // PRODUCT
  3324   // JSR 292 is not supported before 1.7
  3325   if (!JDK_Version::is_gte_jdk17x_version()) {
  3326     if (EnableInvokeDynamic) {
  3327       if (!FLAG_IS_DEFAULT(EnableInvokeDynamic)) {
  3328         warning("JSR 292 is not supported before 1.7.  Disabling support.");
  3330       EnableInvokeDynamic = false;
  3334   if (EnableInvokeDynamic && ScavengeRootsInCode == 0) {
  3335     if (!FLAG_IS_DEFAULT(ScavengeRootsInCode)) {
  3336       warning("forcing ScavengeRootsInCode non-zero because EnableInvokeDynamic is true");
  3338     ScavengeRootsInCode = 1;
  3341   if (PrintGCDetails) {
  3342     // Turn on -verbose:gc options as well
  3343     PrintGC = true;
  3346   if (!JDK_Version::is_gte_jdk18x_version()) {
  3347     // To avoid changing the log format for 7 updates this flag is only
  3348     // true by default in JDK8 and above.
  3349     if (FLAG_IS_DEFAULT(PrintGCCause)) {
  3350       FLAG_SET_DEFAULT(PrintGCCause, false);
  3354   // Set object alignment values.
  3355   set_object_alignment();
  3357 #if !INCLUDE_ALL_GCS
  3358   force_serial_gc();
  3359 #endif // INCLUDE_ALL_GCS
  3360 #if !INCLUDE_CDS
  3361   if (DumpSharedSpaces || RequireSharedSpaces) {
  3362     jio_fprintf(defaultStream::error_stream(),
  3363       "Shared spaces are not supported in this VM\n");
  3364     return JNI_ERR;
  3366   if ((UseSharedSpaces && FLAG_IS_CMDLINE(UseSharedSpaces)) || PrintSharedSpaces) {
  3367     warning("Shared spaces are not supported in this VM");
  3368     FLAG_SET_DEFAULT(UseSharedSpaces, false);
  3369     FLAG_SET_DEFAULT(PrintSharedSpaces, false);
  3371   no_shared_spaces();
  3372 #endif // INCLUDE_CDS
  3374   // Set flags based on ergonomics.
  3375   set_ergonomics_flags();
  3377   set_shared_spaces_flags();
  3379   // Check the GC selections again.
  3380   if (!check_gc_consistency()) {
  3381     return JNI_EINVAL;
  3384   if (TieredCompilation) {
  3385     set_tiered_flags();
  3386   } else {
  3387     // Check if the policy is valid. Policies 0 and 1 are valid for non-tiered setup.
  3388     if (CompilationPolicyChoice >= 2) {
  3389       vm_exit_during_initialization(
  3390         "Incompatible compilation policy selected", NULL);
  3394   // Set heap size based on available physical memory
  3395   set_heap_size();
  3397 #if INCLUDE_ALL_GCS
  3398   // Set per-collector flags
  3399   if (UseParallelGC || UseParallelOldGC) {
  3400     set_parallel_gc_flags();
  3401   } else if (UseConcMarkSweepGC) { // should be done before ParNew check below
  3402     set_cms_and_parnew_gc_flags();
  3403   } else if (UseParNewGC) {  // skipped if CMS is set above
  3404     set_parnew_gc_flags();
  3405   } else if (UseG1GC) {
  3406     set_g1_gc_flags();
  3408   check_deprecated_gcs();
  3409   check_deprecated_gc_flags();
  3410   if (AssumeMP && !UseSerialGC) {
  3411     if (FLAG_IS_DEFAULT(ParallelGCThreads) && ParallelGCThreads == 1) {
  3412       warning("If the number of processors is expected to increase from one, then"
  3413               " you should configure the number of parallel GC threads appropriately"
  3414               " using -XX:ParallelGCThreads=N");
  3417 #else // INCLUDE_ALL_GCS
  3418   assert(verify_serial_gc_flags(), "SerialGC unset");
  3419 #endif // INCLUDE_ALL_GCS
  3421   // Set bytecode rewriting flags
  3422   set_bytecode_flags();
  3424   // Set flags if Aggressive optimization flags (-XX:+AggressiveOpts) enabled.
  3425   set_aggressive_opts_flags();
  3427   // Turn off biased locking for locking debug mode flags,
  3428   // which are subtlely different from each other but neither works with
  3429   // biased locking.
  3430   if (UseHeavyMonitors
  3431 #ifdef COMPILER1
  3432       || !UseFastLocking
  3433 #endif // COMPILER1
  3434     ) {
  3435     if (!FLAG_IS_DEFAULT(UseBiasedLocking) && UseBiasedLocking) {
  3436       // flag set to true on command line; warn the user that they
  3437       // can't enable biased locking here
  3438       warning("Biased Locking is not supported with locking debug flags"
  3439               "; ignoring UseBiasedLocking flag." );
  3441     UseBiasedLocking = false;
  3444 #ifdef CC_INTERP
  3445   // Clear flags not supported by the C++ interpreter
  3446   FLAG_SET_DEFAULT(ProfileInterpreter, false);
  3447   FLAG_SET_DEFAULT(UseBiasedLocking, false);
  3448   LP64_ONLY(FLAG_SET_DEFAULT(UseCompressedOops, false));
  3449   LP64_ONLY(FLAG_SET_DEFAULT(UseCompressedKlassPointers, false));
  3450 #endif // CC_INTERP
  3452 #ifdef COMPILER2
  3453   if (!UseBiasedLocking || EmitSync != 0) {
  3454     UseOptoBiasInlining = false;
  3456   if (!EliminateLocks) {
  3457     EliminateNestedLocks = false;
  3459   if (!Inline) {
  3460     IncrementalInline = false;
  3462 #ifndef PRODUCT
  3463   if (!IncrementalInline) {
  3464     AlwaysIncrementalInline = false;
  3466 #endif
  3467   if (IncrementalInline && FLAG_IS_DEFAULT(MaxNodeLimit)) {
  3468     // incremental inlining: bump MaxNodeLimit
  3469     FLAG_SET_DEFAULT(MaxNodeLimit, (intx)75000);
  3471 #endif
  3473   if (PrintAssembly && FLAG_IS_DEFAULT(DebugNonSafepoints)) {
  3474     warning("PrintAssembly is enabled; turning on DebugNonSafepoints to gain additional output");
  3475     DebugNonSafepoints = true;
  3478 #ifndef PRODUCT
  3479   if (CompileTheWorld) {
  3480     // Force NmethodSweeper to sweep whole CodeCache each time.
  3481     if (FLAG_IS_DEFAULT(NmethodSweepFraction)) {
  3482       NmethodSweepFraction = 1;
  3485 #endif
  3487   if (PrintCommandLineFlags) {
  3488     CommandLineFlags::printSetFlags(tty);
  3491   // Apply CPU specific policy for the BiasedLocking
  3492   if (UseBiasedLocking) {
  3493     if (!VM_Version::use_biased_locking() &&
  3494         !(FLAG_IS_CMDLINE(UseBiasedLocking))) {
  3495       UseBiasedLocking = false;
  3499   // set PauseAtExit if the gamma launcher was used and a debugger is attached
  3500   // but only if not already set on the commandline
  3501   if (Arguments::created_by_gamma_launcher() && os::is_debugger_attached()) {
  3502     bool set = false;
  3503     CommandLineFlags::wasSetOnCmdline("PauseAtExit", &set);
  3504     if (!set) {
  3505       FLAG_SET_DEFAULT(PauseAtExit, true);
  3509   return JNI_OK;
  3512 jint Arguments::adjust_after_os() {
  3513 #if INCLUDE_ALL_GCS
  3514   if (UseParallelGC || UseParallelOldGC) {
  3515     if (UseNUMA) {
  3516       if (FLAG_IS_DEFAULT(MinHeapDeltaBytes)) {
  3517         FLAG_SET_DEFAULT(MinHeapDeltaBytes, 64*M);
  3519       // For those collectors or operating systems (eg, Windows) that do
  3520       // not support full UseNUMA, we will map to UseNUMAInterleaving for now
  3521       UseNUMAInterleaving = true;
  3524 #endif // INCLUDE_ALL_GCS
  3525   return JNI_OK;
  3528 int Arguments::PropertyList_count(SystemProperty* pl) {
  3529   int count = 0;
  3530   while(pl != NULL) {
  3531     count++;
  3532     pl = pl->next();
  3534   return count;
  3537 const char* Arguments::PropertyList_get_value(SystemProperty *pl, const char* key) {
  3538   assert(key != NULL, "just checking");
  3539   SystemProperty* prop;
  3540   for (prop = pl; prop != NULL; prop = prop->next()) {
  3541     if (strcmp(key, prop->key()) == 0) return prop->value();
  3543   return NULL;
  3546 const char* Arguments::PropertyList_get_key_at(SystemProperty *pl, int index) {
  3547   int count = 0;
  3548   const char* ret_val = NULL;
  3550   while(pl != NULL) {
  3551     if(count >= index) {
  3552       ret_val = pl->key();
  3553       break;
  3555     count++;
  3556     pl = pl->next();
  3559   return ret_val;
  3562 char* Arguments::PropertyList_get_value_at(SystemProperty* pl, int index) {
  3563   int count = 0;
  3564   char* ret_val = NULL;
  3566   while(pl != NULL) {
  3567     if(count >= index) {
  3568       ret_val = pl->value();
  3569       break;
  3571     count++;
  3572     pl = pl->next();
  3575   return ret_val;
  3578 void Arguments::PropertyList_add(SystemProperty** plist, SystemProperty *new_p) {
  3579   SystemProperty* p = *plist;
  3580   if (p == NULL) {
  3581     *plist = new_p;
  3582   } else {
  3583     while (p->next() != NULL) {
  3584       p = p->next();
  3586     p->set_next(new_p);
  3590 void Arguments::PropertyList_add(SystemProperty** plist, const char* k, char* v) {
  3591   if (plist == NULL)
  3592     return;
  3594   SystemProperty* new_p = new SystemProperty(k, v, true);
  3595   PropertyList_add(plist, new_p);
  3598 // This add maintains unique property key in the list.
  3599 void Arguments::PropertyList_unique_add(SystemProperty** plist, const char* k, char* v, jboolean append) {
  3600   if (plist == NULL)
  3601     return;
  3603   // If property key exist then update with new value.
  3604   SystemProperty* prop;
  3605   for (prop = *plist; prop != NULL; prop = prop->next()) {
  3606     if (strcmp(k, prop->key()) == 0) {
  3607       if (append) {
  3608         prop->append_value(v);
  3609       } else {
  3610         prop->set_value(v);
  3612       return;
  3616   PropertyList_add(plist, k, v);
  3619 // Copies src into buf, replacing "%%" with "%" and "%p" with pid
  3620 // Returns true if all of the source pointed by src has been copied over to
  3621 // the destination buffer pointed by buf. Otherwise, returns false.
  3622 // Notes:
  3623 // 1. If the length (buflen) of the destination buffer excluding the
  3624 // NULL terminator character is not long enough for holding the expanded
  3625 // pid characters, it also returns false instead of returning the partially
  3626 // expanded one.
  3627 // 2. The passed in "buflen" should be large enough to hold the null terminator.
  3628 bool Arguments::copy_expand_pid(const char* src, size_t srclen,
  3629                                 char* buf, size_t buflen) {
  3630   const char* p = src;
  3631   char* b = buf;
  3632   const char* src_end = &src[srclen];
  3633   char* buf_end = &buf[buflen - 1];
  3635   while (p < src_end && b < buf_end) {
  3636     if (*p == '%') {
  3637       switch (*(++p)) {
  3638       case '%':         // "%%" ==> "%"
  3639         *b++ = *p++;
  3640         break;
  3641       case 'p':  {       //  "%p" ==> current process id
  3642         // buf_end points to the character before the last character so
  3643         // that we could write '\0' to the end of the buffer.
  3644         size_t buf_sz = buf_end - b + 1;
  3645         int ret = jio_snprintf(b, buf_sz, "%d", os::current_process_id());
  3647         // if jio_snprintf fails or the buffer is not long enough to hold
  3648         // the expanded pid, returns false.
  3649         if (ret < 0 || ret >= (int)buf_sz) {
  3650           return false;
  3651         } else {
  3652           b += ret;
  3653           assert(*b == '\0', "fail in copy_expand_pid");
  3654           if (p == src_end && b == buf_end + 1) {
  3655             // reach the end of the buffer.
  3656             return true;
  3659         p++;
  3660         break;
  3662       default :
  3663         *b++ = '%';
  3665     } else {
  3666       *b++ = *p++;
  3669   *b = '\0';
  3670   return (p == src_end); // return false if not all of the source was copied

mercurial