src/share/vm/runtime/arguments.cpp

Wed, 08 Oct 2014 14:13:23 -0700

author
asaha
date
Wed, 08 Oct 2014 14:13:23 -0700
changeset 7250
73d61cd3f8e9
parent 7241
8cb56c8cb30d
parent 7219
8ba0078861d4
child 7262
f10fe402dfb1
permissions
-rw-r--r--

Merge

     1 /*
     2  * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     8  *
     9  * This code is distributed in the hope that it will be useful, but WITHOUT
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    12  * version 2 for more details (a copy is included in the LICENSE file that
    13  * accompanied this code).
    14  *
    15  * You should have received a copy of the GNU General Public License version
    16  * 2 along with this work; if not, write to the Free Software Foundation,
    17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    18  *
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    22  *
    23  */
    25 #include "precompiled.hpp"
    26 #include "classfile/classLoader.hpp"
    27 #include "classfile/javaAssertions.hpp"
    28 #include "classfile/symbolTable.hpp"
    29 #include "compiler/compilerOracle.hpp"
    30 #include "memory/allocation.inline.hpp"
    31 #include "memory/cardTableRS.hpp"
    32 #include "memory/genCollectedHeap.hpp"
    33 #include "memory/referenceProcessor.hpp"
    34 #include "memory/universe.inline.hpp"
    35 #include "oops/oop.inline.hpp"
    36 #include "prims/jvmtiExport.hpp"
    37 #include "runtime/arguments.hpp"
    38 #include "runtime/arguments_ext.hpp"
    39 #include "runtime/globals_extension.hpp"
    40 #include "runtime/java.hpp"
    41 #include "services/management.hpp"
    42 #include "services/memTracker.hpp"
    43 #include "utilities/defaultStream.hpp"
    44 #include "utilities/macros.hpp"
    45 #include "utilities/stringUtils.hpp"
    46 #include "utilities/taskqueue.hpp"
    47 #ifdef TARGET_OS_FAMILY_linux
    48 # include "os_linux.inline.hpp"
    49 #endif
    50 #ifdef TARGET_OS_FAMILY_solaris
    51 # include "os_solaris.inline.hpp"
    52 #endif
    53 #ifdef TARGET_OS_FAMILY_windows
    54 # include "os_windows.inline.hpp"
    55 #endif
    56 #ifdef TARGET_OS_FAMILY_aix
    57 # include "os_aix.inline.hpp"
    58 #endif
    59 #ifdef TARGET_OS_FAMILY_bsd
    60 # include "os_bsd.inline.hpp"
    61 #endif
    62 #if INCLUDE_ALL_GCS
    63 #include "gc_implementation/concurrentMarkSweep/compactibleFreeListSpace.hpp"
    64 #include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
    65 #include "gc_implementation/parallelScavenge/parallelScavengeHeap.hpp"
    66 #endif // INCLUDE_ALL_GCS
    68 // Note: This is a special bug reporting site for the JVM
    69 #define DEFAULT_VENDOR_URL_BUG "http://bugreport.sun.com/bugreport/crash.jsp"
    70 #define DEFAULT_JAVA_LAUNCHER  "generic"
    72 // Disable options not supported in this release, with a warning if they
    73 // were explicitly requested on the command-line
    74 #define UNSUPPORTED_OPTION(opt, description)                    \
    75 do {                                                            \
    76   if (opt) {                                                    \
    77     if (FLAG_IS_CMDLINE(opt)) {                                 \
    78       warning(description " is disabled in this release.");     \
    79     }                                                           \
    80     FLAG_SET_DEFAULT(opt, false);                               \
    81   }                                                             \
    82 } while(0)
    84 #define UNSUPPORTED_GC_OPTION(gc)                                     \
    85 do {                                                                  \
    86   if (gc) {                                                           \
    87     if (FLAG_IS_CMDLINE(gc)) {                                        \
    88       warning(#gc " is not supported in this VM.  Using Serial GC."); \
    89     }                                                                 \
    90     FLAG_SET_DEFAULT(gc, false);                                      \
    91   }                                                                   \
    92 } while(0)
    94 char**  Arguments::_jvm_flags_array             = NULL;
    95 int     Arguments::_num_jvm_flags               = 0;
    96 char**  Arguments::_jvm_args_array              = NULL;
    97 int     Arguments::_num_jvm_args                = 0;
    98 char*  Arguments::_java_command                 = NULL;
    99 SystemProperty* Arguments::_system_properties   = NULL;
   100 const char*  Arguments::_gc_log_filename        = NULL;
   101 bool   Arguments::_has_profile                  = false;
   102 size_t Arguments::_conservative_max_heap_alignment = 0;
   103 uintx  Arguments::_min_heap_size                = 0;
   104 uintx  Arguments::_min_heap_free_ratio          = 0;
   105 uintx  Arguments::_max_heap_free_ratio          = 0;
   106 Arguments::Mode Arguments::_mode                = _mixed;
   107 bool   Arguments::_java_compiler                = false;
   108 bool   Arguments::_xdebug_mode                  = false;
   109 const char*  Arguments::_java_vendor_url_bug    = DEFAULT_VENDOR_URL_BUG;
   110 const char*  Arguments::_sun_java_launcher      = DEFAULT_JAVA_LAUNCHER;
   111 int    Arguments::_sun_java_launcher_pid        = -1;
   112 bool   Arguments::_created_by_gamma_launcher    = false;
   114 // These parameters are reset in method parse_vm_init_args(JavaVMInitArgs*)
   115 bool   Arguments::_AlwaysCompileLoopMethods     = AlwaysCompileLoopMethods;
   116 bool   Arguments::_UseOnStackReplacement        = UseOnStackReplacement;
   117 bool   Arguments::_BackgroundCompilation        = BackgroundCompilation;
   118 bool   Arguments::_ClipInlining                 = ClipInlining;
   120 char*  Arguments::SharedArchivePath             = NULL;
   122 AgentLibraryList Arguments::_libraryList;
   123 AgentLibraryList Arguments::_agentList;
   125 abort_hook_t     Arguments::_abort_hook         = NULL;
   126 exit_hook_t      Arguments::_exit_hook          = NULL;
   127 vfprintf_hook_t  Arguments::_vfprintf_hook      = NULL;
   130 SystemProperty *Arguments::_java_ext_dirs = NULL;
   131 SystemProperty *Arguments::_java_endorsed_dirs = NULL;
   132 SystemProperty *Arguments::_sun_boot_library_path = NULL;
   133 SystemProperty *Arguments::_java_library_path = NULL;
   134 SystemProperty *Arguments::_java_home = NULL;
   135 SystemProperty *Arguments::_java_class_path = NULL;
   136 SystemProperty *Arguments::_sun_boot_class_path = NULL;
   138 char* Arguments::_meta_index_path = NULL;
   139 char* Arguments::_meta_index_dir = NULL;
   141 // Check if head of 'option' matches 'name', and sets 'tail' remaining part of option string
   143 static bool match_option(const JavaVMOption *option, const char* name,
   144                          const char** tail) {
   145   int len = (int)strlen(name);
   146   if (strncmp(option->optionString, name, len) == 0) {
   147     *tail = option->optionString + len;
   148     return true;
   149   } else {
   150     return false;
   151   }
   152 }
   154 static void logOption(const char* opt) {
   155   if (PrintVMOptions) {
   156     jio_fprintf(defaultStream::output_stream(), "VM option '%s'\n", opt);
   157   }
   158 }
   160 // Process java launcher properties.
   161 void Arguments::process_sun_java_launcher_properties(JavaVMInitArgs* args) {
   162   // See if sun.java.launcher or sun.java.launcher.pid is defined.
   163   // Must do this before setting up other system properties,
   164   // as some of them may depend on launcher type.
   165   for (int index = 0; index < args->nOptions; index++) {
   166     const JavaVMOption* option = args->options + index;
   167     const char* tail;
   169     if (match_option(option, "-Dsun.java.launcher=", &tail)) {
   170       process_java_launcher_argument(tail, option->extraInfo);
   171       continue;
   172     }
   173     if (match_option(option, "-Dsun.java.launcher.pid=", &tail)) {
   174       _sun_java_launcher_pid = atoi(tail);
   175       continue;
   176     }
   177   }
   178 }
   180 // Initialize system properties key and value.
   181 void Arguments::init_system_properties() {
   183   PropertyList_add(&_system_properties, new SystemProperty("java.vm.specification.name",
   184                                                                  "Java Virtual Machine Specification",  false));
   185   PropertyList_add(&_system_properties, new SystemProperty("java.vm.version", VM_Version::vm_release(),  false));
   186   PropertyList_add(&_system_properties, new SystemProperty("java.vm.name", VM_Version::vm_name(),  false));
   187   PropertyList_add(&_system_properties, new SystemProperty("java.vm.info", VM_Version::vm_info_string(),  true));
   189   // following are JVMTI agent writeable properties.
   190   // Properties values are set to NULL and they are
   191   // os specific they are initialized in os::init_system_properties_values().
   192   _java_ext_dirs = new SystemProperty("java.ext.dirs", NULL,  true);
   193   _java_endorsed_dirs = new SystemProperty("java.endorsed.dirs", NULL,  true);
   194   _sun_boot_library_path = new SystemProperty("sun.boot.library.path", NULL,  true);
   195   _java_library_path = new SystemProperty("java.library.path", NULL,  true);
   196   _java_home =  new SystemProperty("java.home", NULL,  true);
   197   _sun_boot_class_path = new SystemProperty("sun.boot.class.path", NULL,  true);
   199   _java_class_path = new SystemProperty("java.class.path", "",  true);
   201   // Add to System Property list.
   202   PropertyList_add(&_system_properties, _java_ext_dirs);
   203   PropertyList_add(&_system_properties, _java_endorsed_dirs);
   204   PropertyList_add(&_system_properties, _sun_boot_library_path);
   205   PropertyList_add(&_system_properties, _java_library_path);
   206   PropertyList_add(&_system_properties, _java_home);
   207   PropertyList_add(&_system_properties, _java_class_path);
   208   PropertyList_add(&_system_properties, _sun_boot_class_path);
   210   // Set OS specific system properties values
   211   os::init_system_properties_values();
   212 }
   215   // Update/Initialize System properties after JDK version number is known
   216 void Arguments::init_version_specific_system_properties() {
   217   enum { bufsz = 16 };
   218   char buffer[bufsz];
   219   const char* spec_vendor = "Sun Microsystems Inc.";
   220   uint32_t spec_version = 0;
   222   if (JDK_Version::is_gte_jdk17x_version()) {
   223     spec_vendor = "Oracle Corporation";
   224     spec_version = JDK_Version::current().major_version();
   225   }
   226   jio_snprintf(buffer, bufsz, "1." UINT32_FORMAT, spec_version);
   228   PropertyList_add(&_system_properties,
   229       new SystemProperty("java.vm.specification.vendor",  spec_vendor, false));
   230   PropertyList_add(&_system_properties,
   231       new SystemProperty("java.vm.specification.version", buffer, false));
   232   PropertyList_add(&_system_properties,
   233       new SystemProperty("java.vm.vendor", VM_Version::vm_vendor(),  false));
   234 }
   236 /**
   237  * Provide a slightly more user-friendly way of eliminating -XX flags.
   238  * When a flag is eliminated, it can be added to this list in order to
   239  * continue accepting this flag on the command-line, while issuing a warning
   240  * and ignoring the value.  Once the JDK version reaches the 'accept_until'
   241  * limit, we flatly refuse to admit the existence of the flag.  This allows
   242  * a flag to die correctly over JDK releases using HSX.
   243  */
   244 typedef struct {
   245   const char* name;
   246   JDK_Version obsoleted_in; // when the flag went away
   247   JDK_Version accept_until; // which version to start denying the existence
   248 } ObsoleteFlag;
   250 static ObsoleteFlag obsolete_jvm_flags[] = {
   251   { "UseTrainGC",                    JDK_Version::jdk(5), JDK_Version::jdk(7) },
   252   { "UseSpecialLargeObjectHandling", JDK_Version::jdk(5), JDK_Version::jdk(7) },
   253   { "UseOversizedCarHandling",       JDK_Version::jdk(5), JDK_Version::jdk(7) },
   254   { "TraceCarAllocation",            JDK_Version::jdk(5), JDK_Version::jdk(7) },
   255   { "PrintTrainGCProcessingStats",   JDK_Version::jdk(5), JDK_Version::jdk(7) },
   256   { "LogOfCarSpaceSize",             JDK_Version::jdk(5), JDK_Version::jdk(7) },
   257   { "OversizedCarThreshold",         JDK_Version::jdk(5), JDK_Version::jdk(7) },
   258   { "MinTickInterval",               JDK_Version::jdk(5), JDK_Version::jdk(7) },
   259   { "DefaultTickInterval",           JDK_Version::jdk(5), JDK_Version::jdk(7) },
   260   { "MaxTickInterval",               JDK_Version::jdk(5), JDK_Version::jdk(7) },
   261   { "DelayTickAdjustment",           JDK_Version::jdk(5), JDK_Version::jdk(7) },
   262   { "ProcessingToTenuringRatio",     JDK_Version::jdk(5), JDK_Version::jdk(7) },
   263   { "MinTrainLength",                JDK_Version::jdk(5), JDK_Version::jdk(7) },
   264   { "AppendRatio",         JDK_Version::jdk_update(6,10), JDK_Version::jdk(7) },
   265   { "DefaultMaxRAM",       JDK_Version::jdk_update(6,18), JDK_Version::jdk(7) },
   266   { "DefaultInitialRAMFraction",
   267                            JDK_Version::jdk_update(6,18), JDK_Version::jdk(7) },
   268   { "UseDepthFirstScavengeOrder",
   269                            JDK_Version::jdk_update(6,22), JDK_Version::jdk(7) },
   270   { "HandlePromotionFailure",
   271                            JDK_Version::jdk_update(6,24), JDK_Version::jdk(8) },
   272   { "MaxLiveObjectEvacuationRatio",
   273                            JDK_Version::jdk_update(6,24), JDK_Version::jdk(8) },
   274   { "ForceSharedSpaces",   JDK_Version::jdk_update(6,25), JDK_Version::jdk(8) },
   275   { "UseParallelOldGCCompacting",
   276                            JDK_Version::jdk_update(6,27), JDK_Version::jdk(8) },
   277   { "UseParallelDensePrefixUpdate",
   278                            JDK_Version::jdk_update(6,27), JDK_Version::jdk(8) },
   279   { "UseParallelOldGCDensePrefix",
   280                            JDK_Version::jdk_update(6,27), JDK_Version::jdk(8) },
   281   { "AllowTransitionalJSR292",       JDK_Version::jdk(7), JDK_Version::jdk(8) },
   282   { "UseCompressedStrings",          JDK_Version::jdk(7), JDK_Version::jdk(8) },
   283   { "CMSPermGenPrecleaningEnabled", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
   284   { "CMSTriggerPermRatio", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
   285   { "CMSInitiatingPermOccupancyFraction", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
   286   { "AdaptivePermSizeWeight", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
   287   { "PermGenPadding", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
   288   { "PermMarkSweepDeadRatio", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
   289   { "PermSize", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
   290   { "MaxPermSize", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
   291   { "MinPermHeapExpansion", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
   292   { "MaxPermHeapExpansion", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
   293   { "CMSRevisitStackSize",           JDK_Version::jdk(8), JDK_Version::jdk(9) },
   294   { "PrintRevisitStats",             JDK_Version::jdk(8), JDK_Version::jdk(9) },
   295   { "UseVectoredExceptions",         JDK_Version::jdk(8), JDK_Version::jdk(9) },
   296   { "UseSplitVerifier",              JDK_Version::jdk(8), JDK_Version::jdk(9) },
   297   { "UseISM",                        JDK_Version::jdk(8), JDK_Version::jdk(9) },
   298   { "UsePermISM",                    JDK_Version::jdk(8), JDK_Version::jdk(9) },
   299   { "UseMPSS",                       JDK_Version::jdk(8), JDK_Version::jdk(9) },
   300   { "UseStringCache",                JDK_Version::jdk(8), JDK_Version::jdk(9) },
   301   { "UseOldInlining",                JDK_Version::jdk(9), JDK_Version::jdk(10) },
   302   { "AutoShutdownNMT",               JDK_Version::jdk(9), JDK_Version::jdk(10) },
   303 #ifdef PRODUCT
   304   { "DesiredMethodLimit",
   305                            JDK_Version::jdk_update(7, 2), JDK_Version::jdk(8) },
   306 #endif // PRODUCT
   307   { NULL, JDK_Version(0), JDK_Version(0) }
   308 };
   310 // Returns true if the flag is obsolete and fits into the range specified
   311 // for being ignored.  In the case that the flag is ignored, the 'version'
   312 // value is filled in with the version number when the flag became
   313 // obsolete so that that value can be displayed to the user.
   314 bool Arguments::is_newly_obsolete(const char *s, JDK_Version* version) {
   315   int i = 0;
   316   assert(version != NULL, "Must provide a version buffer");
   317   while (obsolete_jvm_flags[i].name != NULL) {
   318     const ObsoleteFlag& flag_status = obsolete_jvm_flags[i];
   319     // <flag>=xxx form
   320     // [-|+]<flag> form
   321     if ((strncmp(flag_status.name, s, strlen(flag_status.name)) == 0) ||
   322         ((s[0] == '+' || s[0] == '-') &&
   323         (strncmp(flag_status.name, &s[1], strlen(flag_status.name)) == 0))) {
   324       if (JDK_Version::current().compare(flag_status.accept_until) == -1) {
   325           *version = flag_status.obsoleted_in;
   326           return true;
   327       }
   328     }
   329     i++;
   330   }
   331   return false;
   332 }
   334 // Constructs the system class path (aka boot class path) from the following
   335 // components, in order:
   336 //
   337 //     prefix           // from -Xbootclasspath/p:...
   338 //     endorsed         // the expansion of -Djava.endorsed.dirs=...
   339 //     base             // from os::get_system_properties() or -Xbootclasspath=
   340 //     suffix           // from -Xbootclasspath/a:...
   341 //
   342 // java.endorsed.dirs is a list of directories; any jar or zip files in the
   343 // directories are added to the sysclasspath just before the base.
   344 //
   345 // This could be AllStatic, but it isn't needed after argument processing is
   346 // complete.
   347 class SysClassPath: public StackObj {
   348 public:
   349   SysClassPath(const char* base);
   350   ~SysClassPath();
   352   inline void set_base(const char* base);
   353   inline void add_prefix(const char* prefix);
   354   inline void add_suffix_to_prefix(const char* suffix);
   355   inline void add_suffix(const char* suffix);
   356   inline void reset_path(const char* base);
   358   // Expand the jar/zip files in each directory listed by the java.endorsed.dirs
   359   // property.  Must be called after all command-line arguments have been
   360   // processed (in particular, -Djava.endorsed.dirs=...) and before calling
   361   // combined_path().
   362   void expand_endorsed();
   364   inline const char* get_base()     const { return _items[_scp_base]; }
   365   inline const char* get_prefix()   const { return _items[_scp_prefix]; }
   366   inline const char* get_suffix()   const { return _items[_scp_suffix]; }
   367   inline const char* get_endorsed() const { return _items[_scp_endorsed]; }
   369   // Combine all the components into a single c-heap-allocated string; caller
   370   // must free the string if/when no longer needed.
   371   char* combined_path();
   373 private:
   374   // Utility routines.
   375   static char* add_to_path(const char* path, const char* str, bool prepend);
   376   static char* add_jars_to_path(char* path, const char* directory);
   378   inline void reset_item_at(int index);
   380   // Array indices for the items that make up the sysclasspath.  All except the
   381   // base are allocated in the C heap and freed by this class.
   382   enum {
   383     _scp_prefix,        // from -Xbootclasspath/p:...
   384     _scp_endorsed,      // the expansion of -Djava.endorsed.dirs=...
   385     _scp_base,          // the default sysclasspath
   386     _scp_suffix,        // from -Xbootclasspath/a:...
   387     _scp_nitems         // the number of items, must be last.
   388   };
   390   const char* _items[_scp_nitems];
   391   DEBUG_ONLY(bool _expansion_done;)
   392 };
   394 SysClassPath::SysClassPath(const char* base) {
   395   memset(_items, 0, sizeof(_items));
   396   _items[_scp_base] = base;
   397   DEBUG_ONLY(_expansion_done = false;)
   398 }
   400 SysClassPath::~SysClassPath() {
   401   // Free everything except the base.
   402   for (int i = 0; i < _scp_nitems; ++i) {
   403     if (i != _scp_base) reset_item_at(i);
   404   }
   405   DEBUG_ONLY(_expansion_done = false;)
   406 }
   408 inline void SysClassPath::set_base(const char* base) {
   409   _items[_scp_base] = base;
   410 }
   412 inline void SysClassPath::add_prefix(const char* prefix) {
   413   _items[_scp_prefix] = add_to_path(_items[_scp_prefix], prefix, true);
   414 }
   416 inline void SysClassPath::add_suffix_to_prefix(const char* suffix) {
   417   _items[_scp_prefix] = add_to_path(_items[_scp_prefix], suffix, false);
   418 }
   420 inline void SysClassPath::add_suffix(const char* suffix) {
   421   _items[_scp_suffix] = add_to_path(_items[_scp_suffix], suffix, false);
   422 }
   424 inline void SysClassPath::reset_item_at(int index) {
   425   assert(index < _scp_nitems && index != _scp_base, "just checking");
   426   if (_items[index] != NULL) {
   427     FREE_C_HEAP_ARRAY(char, _items[index], mtInternal);
   428     _items[index] = NULL;
   429   }
   430 }
   432 inline void SysClassPath::reset_path(const char* base) {
   433   // Clear the prefix and suffix.
   434   reset_item_at(_scp_prefix);
   435   reset_item_at(_scp_suffix);
   436   set_base(base);
   437 }
   439 //------------------------------------------------------------------------------
   441 void SysClassPath::expand_endorsed() {
   442   assert(_items[_scp_endorsed] == NULL, "can only be called once.");
   444   const char* path = Arguments::get_property("java.endorsed.dirs");
   445   if (path == NULL) {
   446     path = Arguments::get_endorsed_dir();
   447     assert(path != NULL, "no default for java.endorsed.dirs");
   448   }
   450   char* expanded_path = NULL;
   451   const char separator = *os::path_separator();
   452   const char* const end = path + strlen(path);
   453   while (path < end) {
   454     const char* tmp_end = strchr(path, separator);
   455     if (tmp_end == NULL) {
   456       expanded_path = add_jars_to_path(expanded_path, path);
   457       path = end;
   458     } else {
   459       char* dirpath = NEW_C_HEAP_ARRAY(char, tmp_end - path + 1, mtInternal);
   460       memcpy(dirpath, path, tmp_end - path);
   461       dirpath[tmp_end - path] = '\0';
   462       expanded_path = add_jars_to_path(expanded_path, dirpath);
   463       FREE_C_HEAP_ARRAY(char, dirpath, mtInternal);
   464       path = tmp_end + 1;
   465     }
   466   }
   467   _items[_scp_endorsed] = expanded_path;
   468   DEBUG_ONLY(_expansion_done = true;)
   469 }
   471 // Combine the bootclasspath elements, some of which may be null, into a single
   472 // c-heap-allocated string.
   473 char* SysClassPath::combined_path() {
   474   assert(_items[_scp_base] != NULL, "empty default sysclasspath");
   475   assert(_expansion_done, "must call expand_endorsed() first.");
   477   size_t lengths[_scp_nitems];
   478   size_t total_len = 0;
   480   const char separator = *os::path_separator();
   482   // Get the lengths.
   483   int i;
   484   for (i = 0; i < _scp_nitems; ++i) {
   485     if (_items[i] != NULL) {
   486       lengths[i] = strlen(_items[i]);
   487       // Include space for the separator char (or a NULL for the last item).
   488       total_len += lengths[i] + 1;
   489     }
   490   }
   491   assert(total_len > 0, "empty sysclasspath not allowed");
   493   // Copy the _items to a single string.
   494   char* cp = NEW_C_HEAP_ARRAY(char, total_len, mtInternal);
   495   char* cp_tmp = cp;
   496   for (i = 0; i < _scp_nitems; ++i) {
   497     if (_items[i] != NULL) {
   498       memcpy(cp_tmp, _items[i], lengths[i]);
   499       cp_tmp += lengths[i];
   500       *cp_tmp++ = separator;
   501     }
   502   }
   503   *--cp_tmp = '\0';     // Replace the extra separator.
   504   return cp;
   505 }
   507 // Note:  path must be c-heap-allocated (or NULL); it is freed if non-null.
   508 char*
   509 SysClassPath::add_to_path(const char* path, const char* str, bool prepend) {
   510   char *cp;
   512   assert(str != NULL, "just checking");
   513   if (path == NULL) {
   514     size_t len = strlen(str) + 1;
   515     cp = NEW_C_HEAP_ARRAY(char, len, mtInternal);
   516     memcpy(cp, str, len);                       // copy the trailing null
   517   } else {
   518     const char separator = *os::path_separator();
   519     size_t old_len = strlen(path);
   520     size_t str_len = strlen(str);
   521     size_t len = old_len + str_len + 2;
   523     if (prepend) {
   524       cp = NEW_C_HEAP_ARRAY(char, len, mtInternal);
   525       char* cp_tmp = cp;
   526       memcpy(cp_tmp, str, str_len);
   527       cp_tmp += str_len;
   528       *cp_tmp = separator;
   529       memcpy(++cp_tmp, path, old_len + 1);      // copy the trailing null
   530       FREE_C_HEAP_ARRAY(char, path, mtInternal);
   531     } else {
   532       cp = REALLOC_C_HEAP_ARRAY(char, path, len, mtInternal);
   533       char* cp_tmp = cp + old_len;
   534       *cp_tmp = separator;
   535       memcpy(++cp_tmp, str, str_len + 1);       // copy the trailing null
   536     }
   537   }
   538   return cp;
   539 }
   541 // Scan the directory and append any jar or zip files found to path.
   542 // Note:  path must be c-heap-allocated (or NULL); it is freed if non-null.
   543 char* SysClassPath::add_jars_to_path(char* path, const char* directory) {
   544   DIR* dir = os::opendir(directory);
   545   if (dir == NULL) return path;
   547   char dir_sep[2] = { '\0', '\0' };
   548   size_t directory_len = strlen(directory);
   549   const char fileSep = *os::file_separator();
   550   if (directory[directory_len - 1] != fileSep) dir_sep[0] = fileSep;
   552   /* Scan the directory for jars/zips, appending them to path. */
   553   struct dirent *entry;
   554   char *dbuf = NEW_C_HEAP_ARRAY(char, os::readdir_buf_size(directory), mtInternal);
   555   while ((entry = os::readdir(dir, (dirent *) dbuf)) != NULL) {
   556     const char* name = entry->d_name;
   557     const char* ext = name + strlen(name) - 4;
   558     bool isJarOrZip = ext > name &&
   559       (os::file_name_strcmp(ext, ".jar") == 0 ||
   560        os::file_name_strcmp(ext, ".zip") == 0);
   561     if (isJarOrZip) {
   562       char* jarpath = NEW_C_HEAP_ARRAY(char, directory_len + 2 + strlen(name), mtInternal);
   563       sprintf(jarpath, "%s%s%s", directory, dir_sep, name);
   564       path = add_to_path(path, jarpath, false);
   565       FREE_C_HEAP_ARRAY(char, jarpath, mtInternal);
   566     }
   567   }
   568   FREE_C_HEAP_ARRAY(char, dbuf, mtInternal);
   569   os::closedir(dir);
   570   return path;
   571 }
   573 // Parses a memory size specification string.
   574 static bool atomull(const char *s, julong* result) {
   575   julong n = 0;
   576   int args_read = sscanf(s, JULONG_FORMAT, &n);
   577   if (args_read != 1) {
   578     return false;
   579   }
   580   while (*s != '\0' && isdigit(*s)) {
   581     s++;
   582   }
   583   // 4705540: illegal if more characters are found after the first non-digit
   584   if (strlen(s) > 1) {
   585     return false;
   586   }
   587   switch (*s) {
   588     case 'T': case 't':
   589       *result = n * G * K;
   590       // Check for overflow.
   591       if (*result/((julong)G * K) != n) return false;
   592       return true;
   593     case 'G': case 'g':
   594       *result = n * G;
   595       if (*result/G != n) return false;
   596       return true;
   597     case 'M': case 'm':
   598       *result = n * M;
   599       if (*result/M != n) return false;
   600       return true;
   601     case 'K': case 'k':
   602       *result = n * K;
   603       if (*result/K != n) return false;
   604       return true;
   605     case '\0':
   606       *result = n;
   607       return true;
   608     default:
   609       return false;
   610   }
   611 }
   613 Arguments::ArgsRange Arguments::check_memory_size(julong size, julong min_size) {
   614   if (size < min_size) return arg_too_small;
   615   // Check that size will fit in a size_t (only relevant on 32-bit)
   616   if (size > max_uintx) return arg_too_big;
   617   return arg_in_range;
   618 }
   620 // Describe an argument out of range error
   621 void Arguments::describe_range_error(ArgsRange errcode) {
   622   switch(errcode) {
   623   case arg_too_big:
   624     jio_fprintf(defaultStream::error_stream(),
   625                 "The specified size exceeds the maximum "
   626                 "representable size.\n");
   627     break;
   628   case arg_too_small:
   629   case arg_unreadable:
   630   case arg_in_range:
   631     // do nothing for now
   632     break;
   633   default:
   634     ShouldNotReachHere();
   635   }
   636 }
   638 static bool set_bool_flag(char* name, bool value, Flag::Flags origin) {
   639   return CommandLineFlags::boolAtPut(name, &value, origin);
   640 }
   642 static bool set_fp_numeric_flag(char* name, char* value, Flag::Flags origin) {
   643   double v;
   644   if (sscanf(value, "%lf", &v) != 1) {
   645     return false;
   646   }
   648   if (CommandLineFlags::doubleAtPut(name, &v, origin)) {
   649     return true;
   650   }
   651   return false;
   652 }
   654 static bool set_numeric_flag(char* name, char* value, Flag::Flags origin) {
   655   julong v;
   656   intx intx_v;
   657   bool is_neg = false;
   658   // Check the sign first since atomull() parses only unsigned values.
   659   if (*value == '-') {
   660     if (!CommandLineFlags::intxAt(name, &intx_v)) {
   661       return false;
   662     }
   663     value++;
   664     is_neg = true;
   665   }
   666   if (!atomull(value, &v)) {
   667     return false;
   668   }
   669   intx_v = (intx) v;
   670   if (is_neg) {
   671     intx_v = -intx_v;
   672   }
   673   if (CommandLineFlags::intxAtPut(name, &intx_v, origin)) {
   674     return true;
   675   }
   676   uintx uintx_v = (uintx) v;
   677   if (!is_neg && CommandLineFlags::uintxAtPut(name, &uintx_v, origin)) {
   678     return true;
   679   }
   680   uint64_t uint64_t_v = (uint64_t) v;
   681   if (!is_neg && CommandLineFlags::uint64_tAtPut(name, &uint64_t_v, origin)) {
   682     return true;
   683   }
   684   return false;
   685 }
   687 static bool set_string_flag(char* name, const char* value, Flag::Flags origin) {
   688   if (!CommandLineFlags::ccstrAtPut(name, &value, origin))  return false;
   689   // Contract:  CommandLineFlags always returns a pointer that needs freeing.
   690   FREE_C_HEAP_ARRAY(char, value, mtInternal);
   691   return true;
   692 }
   694 static bool append_to_string_flag(char* name, const char* new_value, Flag::Flags origin) {
   695   const char* old_value = "";
   696   if (!CommandLineFlags::ccstrAt(name, &old_value))  return false;
   697   size_t old_len = old_value != NULL ? strlen(old_value) : 0;
   698   size_t new_len = strlen(new_value);
   699   const char* value;
   700   char* free_this_too = NULL;
   701   if (old_len == 0) {
   702     value = new_value;
   703   } else if (new_len == 0) {
   704     value = old_value;
   705   } else {
   706     char* buf = NEW_C_HEAP_ARRAY(char, old_len + 1 + new_len + 1, mtInternal);
   707     // each new setting adds another LINE to the switch:
   708     sprintf(buf, "%s\n%s", old_value, new_value);
   709     value = buf;
   710     free_this_too = buf;
   711   }
   712   (void) CommandLineFlags::ccstrAtPut(name, &value, origin);
   713   // CommandLineFlags always returns a pointer that needs freeing.
   714   FREE_C_HEAP_ARRAY(char, value, mtInternal);
   715   if (free_this_too != NULL) {
   716     // CommandLineFlags made its own copy, so I must delete my own temp. buffer.
   717     FREE_C_HEAP_ARRAY(char, free_this_too, mtInternal);
   718   }
   719   return true;
   720 }
   722 bool Arguments::parse_argument(const char* arg, Flag::Flags origin) {
   724   // range of acceptable characters spelled out for portability reasons
   725 #define NAME_RANGE  "[abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_]"
   726 #define BUFLEN 255
   727   char name[BUFLEN+1];
   728   char dummy;
   730   if (sscanf(arg, "-%" XSTR(BUFLEN) NAME_RANGE "%c", name, &dummy) == 1) {
   731     return set_bool_flag(name, false, origin);
   732   }
   733   if (sscanf(arg, "+%" XSTR(BUFLEN) NAME_RANGE "%c", name, &dummy) == 1) {
   734     return set_bool_flag(name, true, origin);
   735   }
   737   char punct;
   738   if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "%c", name, &punct) == 2 && punct == '=') {
   739     const char* value = strchr(arg, '=') + 1;
   740     Flag* flag = Flag::find_flag(name, strlen(name));
   741     if (flag != NULL && flag->is_ccstr()) {
   742       if (flag->ccstr_accumulates()) {
   743         return append_to_string_flag(name, value, origin);
   744       } else {
   745         if (value[0] == '\0') {
   746           value = NULL;
   747         }
   748         return set_string_flag(name, value, origin);
   749       }
   750     }
   751   }
   753   if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE ":%c", name, &punct) == 2 && punct == '=') {
   754     const char* value = strchr(arg, '=') + 1;
   755     // -XX:Foo:=xxx will reset the string flag to the given value.
   756     if (value[0] == '\0') {
   757       value = NULL;
   758     }
   759     return set_string_flag(name, value, origin);
   760   }
   762 #define SIGNED_FP_NUMBER_RANGE "[-0123456789.]"
   763 #define SIGNED_NUMBER_RANGE    "[-0123456789]"
   764 #define        NUMBER_RANGE    "[0123456789]"
   765   char value[BUFLEN + 1];
   766   char value2[BUFLEN + 1];
   767   if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "=" "%" XSTR(BUFLEN) SIGNED_NUMBER_RANGE "." "%" XSTR(BUFLEN) NUMBER_RANGE "%c", name, value, value2, &dummy) == 3) {
   768     // Looks like a floating-point number -- try again with more lenient format string
   769     if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "=" "%" XSTR(BUFLEN) SIGNED_FP_NUMBER_RANGE "%c", name, value, &dummy) == 2) {
   770       return set_fp_numeric_flag(name, value, origin);
   771     }
   772   }
   774 #define VALUE_RANGE "[-kmgtKMGT0123456789]"
   775   if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "=" "%" XSTR(BUFLEN) VALUE_RANGE "%c", name, value, &dummy) == 2) {
   776     return set_numeric_flag(name, value, origin);
   777   }
   779   return false;
   780 }
   782 void Arguments::add_string(char*** bldarray, int* count, const char* arg) {
   783   assert(bldarray != NULL, "illegal argument");
   785   if (arg == NULL) {
   786     return;
   787   }
   789   int new_count = *count + 1;
   791   // expand the array and add arg to the last element
   792   if (*bldarray == NULL) {
   793     *bldarray = NEW_C_HEAP_ARRAY(char*, new_count, mtInternal);
   794   } else {
   795     *bldarray = REALLOC_C_HEAP_ARRAY(char*, *bldarray, new_count, mtInternal);
   796   }
   797   (*bldarray)[*count] = strdup(arg);
   798   *count = new_count;
   799 }
   801 void Arguments::build_jvm_args(const char* arg) {
   802   add_string(&_jvm_args_array, &_num_jvm_args, arg);
   803 }
   805 void Arguments::build_jvm_flags(const char* arg) {
   806   add_string(&_jvm_flags_array, &_num_jvm_flags, arg);
   807 }
   809 // utility function to return a string that concatenates all
   810 // strings in a given char** array
   811 const char* Arguments::build_resource_string(char** args, int count) {
   812   if (args == NULL || count == 0) {
   813     return NULL;
   814   }
   815   size_t length = strlen(args[0]) + 1; // add 1 for the null terminator
   816   for (int i = 1; i < count; i++) {
   817     length += strlen(args[i]) + 1; // add 1 for a space
   818   }
   819   char* s = NEW_RESOURCE_ARRAY(char, length);
   820   strcpy(s, args[0]);
   821   for (int j = 1; j < count; j++) {
   822     strcat(s, " ");
   823     strcat(s, args[j]);
   824   }
   825   return (const char*) s;
   826 }
   828 void Arguments::print_on(outputStream* st) {
   829   st->print_cr("VM Arguments:");
   830   if (num_jvm_flags() > 0) {
   831     st->print("jvm_flags: "); print_jvm_flags_on(st);
   832   }
   833   if (num_jvm_args() > 0) {
   834     st->print("jvm_args: "); print_jvm_args_on(st);
   835   }
   836   st->print_cr("java_command: %s", java_command() ? java_command() : "<unknown>");
   837   if (_java_class_path != NULL) {
   838     char* path = _java_class_path->value();
   839     st->print_cr("java_class_path (initial): %s", strlen(path) == 0 ? "<not set>" : path );
   840   }
   841   st->print_cr("Launcher Type: %s", _sun_java_launcher);
   842 }
   844 void Arguments::print_jvm_flags_on(outputStream* st) {
   845   if (_num_jvm_flags > 0) {
   846     for (int i=0; i < _num_jvm_flags; i++) {
   847       st->print("%s ", _jvm_flags_array[i]);
   848     }
   849     st->cr();
   850   }
   851 }
   853 void Arguments::print_jvm_args_on(outputStream* st) {
   854   if (_num_jvm_args > 0) {
   855     for (int i=0; i < _num_jvm_args; i++) {
   856       st->print("%s ", _jvm_args_array[i]);
   857     }
   858     st->cr();
   859   }
   860 }
   862 bool Arguments::process_argument(const char* arg,
   863     jboolean ignore_unrecognized, Flag::Flags origin) {
   865   JDK_Version since = JDK_Version();
   867   if (parse_argument(arg, origin) || ignore_unrecognized) {
   868     return true;
   869   }
   871   bool has_plus_minus = (*arg == '+' || *arg == '-');
   872   const char* const argname = has_plus_minus ? arg + 1 : arg;
   873   if (is_newly_obsolete(arg, &since)) {
   874     char version[256];
   875     since.to_string(version, sizeof(version));
   876     warning("ignoring option %s; support was removed in %s", argname, version);
   877     return true;
   878   }
   880   // For locked flags, report a custom error message if available.
   881   // Otherwise, report the standard unrecognized VM option.
   883   size_t arg_len;
   884   const char* equal_sign = strchr(argname, '=');
   885   if (equal_sign == NULL) {
   886     arg_len = strlen(argname);
   887   } else {
   888     arg_len = equal_sign - argname;
   889   }
   891   Flag* found_flag = Flag::find_flag((const char*)argname, arg_len, true, true);
   892   if (found_flag != NULL) {
   893     char locked_message_buf[BUFLEN];
   894     found_flag->get_locked_message(locked_message_buf, BUFLEN);
   895     if (strlen(locked_message_buf) == 0) {
   896       if (found_flag->is_bool() && !has_plus_minus) {
   897         jio_fprintf(defaultStream::error_stream(),
   898           "Missing +/- setting for VM option '%s'\n", argname);
   899       } else if (!found_flag->is_bool() && has_plus_minus) {
   900         jio_fprintf(defaultStream::error_stream(),
   901           "Unexpected +/- setting in VM option '%s'\n", argname);
   902       } else {
   903         jio_fprintf(defaultStream::error_stream(),
   904           "Improperly specified VM option '%s'\n", argname);
   905       }
   906     } else {
   907       jio_fprintf(defaultStream::error_stream(), "%s", locked_message_buf);
   908     }
   909   } else {
   910     jio_fprintf(defaultStream::error_stream(),
   911                 "Unrecognized VM option '%s'\n", argname);
   912     Flag* fuzzy_matched = Flag::fuzzy_match((const char*)argname, arg_len, true);
   913     if (fuzzy_matched != NULL) {
   914       jio_fprintf(defaultStream::error_stream(),
   915                   "Did you mean '%s%s%s'?\n",
   916                   (fuzzy_matched->is_bool()) ? "(+/-)" : "",
   917                   fuzzy_matched->_name,
   918                   (fuzzy_matched->is_bool()) ? "" : "=<value>");
   919     }
   920   }
   922   // allow for commandline "commenting out" options like -XX:#+Verbose
   923   return arg[0] == '#';
   924 }
   926 bool Arguments::process_settings_file(const char* file_name, bool should_exist, jboolean ignore_unrecognized) {
   927   FILE* stream = fopen(file_name, "rb");
   928   if (stream == NULL) {
   929     if (should_exist) {
   930       jio_fprintf(defaultStream::error_stream(),
   931                   "Could not open settings file %s\n", file_name);
   932       return false;
   933     } else {
   934       return true;
   935     }
   936   }
   938   char token[1024];
   939   int  pos = 0;
   941   bool in_white_space = true;
   942   bool in_comment     = false;
   943   bool in_quote       = false;
   944   char quote_c        = 0;
   945   bool result         = true;
   947   int c = getc(stream);
   948   while(c != EOF && pos < (int)(sizeof(token)-1)) {
   949     if (in_white_space) {
   950       if (in_comment) {
   951         if (c == '\n') in_comment = false;
   952       } else {
   953         if (c == '#') in_comment = true;
   954         else if (!isspace(c)) {
   955           in_white_space = false;
   956           token[pos++] = c;
   957         }
   958       }
   959     } else {
   960       if (c == '\n' || (!in_quote && isspace(c))) {
   961         // token ends at newline, or at unquoted whitespace
   962         // this allows a way to include spaces in string-valued options
   963         token[pos] = '\0';
   964         logOption(token);
   965         result &= process_argument(token, ignore_unrecognized, Flag::CONFIG_FILE);
   966         build_jvm_flags(token);
   967         pos = 0;
   968         in_white_space = true;
   969         in_quote = false;
   970       } else if (!in_quote && (c == '\'' || c == '"')) {
   971         in_quote = true;
   972         quote_c = c;
   973       } else if (in_quote && (c == quote_c)) {
   974         in_quote = false;
   975       } else {
   976         token[pos++] = c;
   977       }
   978     }
   979     c = getc(stream);
   980   }
   981   if (pos > 0) {
   982     token[pos] = '\0';
   983     result &= process_argument(token, ignore_unrecognized, Flag::CONFIG_FILE);
   984     build_jvm_flags(token);
   985   }
   986   fclose(stream);
   987   return result;
   988 }
   990 //=============================================================================================================
   991 // Parsing of properties (-D)
   993 const char* Arguments::get_property(const char* key) {
   994   return PropertyList_get_value(system_properties(), key);
   995 }
   997 bool Arguments::add_property(const char* prop) {
   998   const char* eq = strchr(prop, '=');
   999   char* key;
  1000   // ns must be static--its address may be stored in a SystemProperty object.
  1001   const static char ns[1] = {0};
  1002   char* value = (char *)ns;
  1004   size_t key_len = (eq == NULL) ? strlen(prop) : (eq - prop);
  1005   key = AllocateHeap(key_len + 1, mtInternal);
  1006   strncpy(key, prop, key_len);
  1007   key[key_len] = '\0';
  1009   if (eq != NULL) {
  1010     size_t value_len = strlen(prop) - key_len - 1;
  1011     value = AllocateHeap(value_len + 1, mtInternal);
  1012     strncpy(value, &prop[key_len + 1], value_len + 1);
  1015   if (strcmp(key, "java.compiler") == 0) {
  1016     process_java_compiler_argument(value);
  1017     FreeHeap(key);
  1018     if (eq != NULL) {
  1019       FreeHeap(value);
  1021     return true;
  1022   } else if (strcmp(key, "sun.java.command") == 0) {
  1023     _java_command = value;
  1025     // Record value in Arguments, but let it get passed to Java.
  1026   } else if (strcmp(key, "sun.java.launcher.pid") == 0) {
  1027     // launcher.pid property is private and is processed
  1028     // in process_sun_java_launcher_properties();
  1029     // the sun.java.launcher property is passed on to the java application
  1030     FreeHeap(key);
  1031     if (eq != NULL) {
  1032       FreeHeap(value);
  1034     return true;
  1035   } else if (strcmp(key, "java.vendor.url.bug") == 0) {
  1036     // save it in _java_vendor_url_bug, so JVM fatal error handler can access
  1037     // its value without going through the property list or making a Java call.
  1038     _java_vendor_url_bug = value;
  1039   } else if (strcmp(key, "sun.boot.library.path") == 0) {
  1040     PropertyList_unique_add(&_system_properties, key, value, true);
  1041     return true;
  1043   // Create new property and add at the end of the list
  1044   PropertyList_unique_add(&_system_properties, key, value);
  1045   return true;
  1048 //===========================================================================================================
  1049 // Setting int/mixed/comp mode flags
  1051 void Arguments::set_mode_flags(Mode mode) {
  1052   // Set up default values for all flags.
  1053   // If you add a flag to any of the branches below,
  1054   // add a default value for it here.
  1055   set_java_compiler(false);
  1056   _mode                      = mode;
  1058   // Ensure Agent_OnLoad has the correct initial values.
  1059   // This may not be the final mode; mode may change later in onload phase.
  1060   PropertyList_unique_add(&_system_properties, "java.vm.info",
  1061                           (char*)VM_Version::vm_info_string(), false);
  1063   UseInterpreter             = true;
  1064   UseCompiler                = true;
  1065   UseLoopCounter             = true;
  1067 #ifndef ZERO
  1068   // Turn these off for mixed and comp.  Leave them on for Zero.
  1069   if (FLAG_IS_DEFAULT(UseFastAccessorMethods)) {
  1070     UseFastAccessorMethods = (mode == _int);
  1072   if (FLAG_IS_DEFAULT(UseFastEmptyMethods)) {
  1073     UseFastEmptyMethods = (mode == _int);
  1075 #endif
  1077   // Default values may be platform/compiler dependent -
  1078   // use the saved values
  1079   ClipInlining               = Arguments::_ClipInlining;
  1080   AlwaysCompileLoopMethods   = Arguments::_AlwaysCompileLoopMethods;
  1081   UseOnStackReplacement      = Arguments::_UseOnStackReplacement;
  1082   BackgroundCompilation      = Arguments::_BackgroundCompilation;
  1084   // Change from defaults based on mode
  1085   switch (mode) {
  1086   default:
  1087     ShouldNotReachHere();
  1088     break;
  1089   case _int:
  1090     UseCompiler              = false;
  1091     UseLoopCounter           = false;
  1092     AlwaysCompileLoopMethods = false;
  1093     UseOnStackReplacement    = false;
  1094     break;
  1095   case _mixed:
  1096     // same as default
  1097     break;
  1098   case _comp:
  1099     UseInterpreter           = false;
  1100     BackgroundCompilation    = false;
  1101     ClipInlining             = false;
  1102     // Be much more aggressive in tiered mode with -Xcomp and exercise C2 more.
  1103     // We will first compile a level 3 version (C1 with full profiling), then do one invocation of it and
  1104     // compile a level 4 (C2) and then continue executing it.
  1105     if (TieredCompilation) {
  1106       Tier3InvokeNotifyFreqLog = 0;
  1107       Tier4InvocationThreshold = 0;
  1109     break;
  1113 #if defined(COMPILER2) || defined(_LP64) || !INCLUDE_CDS
  1114 // Conflict: required to use shared spaces (-Xshare:on), but
  1115 // incompatible command line options were chosen.
  1117 static void no_shared_spaces(const char* message) {
  1118   if (RequireSharedSpaces) {
  1119     jio_fprintf(defaultStream::error_stream(),
  1120       "Class data sharing is inconsistent with other specified options.\n");
  1121     vm_exit_during_initialization("Unable to use shared archive.", message);
  1122   } else {
  1123     FLAG_SET_DEFAULT(UseSharedSpaces, false);
  1126 #endif
  1128 void Arguments::set_tiered_flags() {
  1129   // With tiered, set default policy to AdvancedThresholdPolicy, which is 3.
  1130   if (FLAG_IS_DEFAULT(CompilationPolicyChoice)) {
  1131     FLAG_SET_DEFAULT(CompilationPolicyChoice, 3);
  1133   if (CompilationPolicyChoice < 2) {
  1134     vm_exit_during_initialization(
  1135       "Incompatible compilation policy selected", NULL);
  1137   // Increase the code cache size - tiered compiles a lot more.
  1138   if (FLAG_IS_DEFAULT(ReservedCodeCacheSize)) {
  1139     FLAG_SET_DEFAULT(ReservedCodeCacheSize, ReservedCodeCacheSize * 5);
  1141   if (!UseInterpreter) { // -Xcomp
  1142     Tier3InvokeNotifyFreqLog = 0;
  1143     Tier4InvocationThreshold = 0;
  1147 #if INCLUDE_ALL_GCS
  1148 static void disable_adaptive_size_policy(const char* collector_name) {
  1149   if (UseAdaptiveSizePolicy) {
  1150     if (FLAG_IS_CMDLINE(UseAdaptiveSizePolicy)) {
  1151       warning("disabling UseAdaptiveSizePolicy; it is incompatible with %s.",
  1152               collector_name);
  1154     FLAG_SET_DEFAULT(UseAdaptiveSizePolicy, false);
  1158 void Arguments::set_parnew_gc_flags() {
  1159   assert(!UseSerialGC && !UseParallelOldGC && !UseParallelGC && !UseG1GC,
  1160          "control point invariant");
  1161   assert(UseParNewGC, "Error");
  1163   // Turn off AdaptiveSizePolicy for parnew until it is complete.
  1164   disable_adaptive_size_policy("UseParNewGC");
  1166   if (FLAG_IS_DEFAULT(ParallelGCThreads)) {
  1167     FLAG_SET_DEFAULT(ParallelGCThreads, Abstract_VM_Version::parallel_worker_threads());
  1168     assert(ParallelGCThreads > 0, "We should always have at least one thread by default");
  1169   } else if (ParallelGCThreads == 0) {
  1170     jio_fprintf(defaultStream::error_stream(),
  1171         "The ParNew GC can not be combined with -XX:ParallelGCThreads=0\n");
  1172     vm_exit(1);
  1175   // By default YoungPLABSize and OldPLABSize are set to 4096 and 1024 respectively,
  1176   // these settings are default for Parallel Scavenger. For ParNew+Tenured configuration
  1177   // we set them to 1024 and 1024.
  1178   // See CR 6362902.
  1179   if (FLAG_IS_DEFAULT(YoungPLABSize)) {
  1180     FLAG_SET_DEFAULT(YoungPLABSize, (intx)1024);
  1182   if (FLAG_IS_DEFAULT(OldPLABSize)) {
  1183     FLAG_SET_DEFAULT(OldPLABSize, (intx)1024);
  1186   // AlwaysTenure flag should make ParNew promote all at first collection.
  1187   // See CR 6362902.
  1188   if (AlwaysTenure) {
  1189     FLAG_SET_CMDLINE(uintx, MaxTenuringThreshold, 0);
  1191   // When using compressed oops, we use local overflow stacks,
  1192   // rather than using a global overflow list chained through
  1193   // the klass word of the object's pre-image.
  1194   if (UseCompressedOops && !ParGCUseLocalOverflow) {
  1195     if (!FLAG_IS_DEFAULT(ParGCUseLocalOverflow)) {
  1196       warning("Forcing +ParGCUseLocalOverflow: needed if using compressed references");
  1198     FLAG_SET_DEFAULT(ParGCUseLocalOverflow, true);
  1200   assert(ParGCUseLocalOverflow || !UseCompressedOops, "Error");
  1203 // Adjust some sizes to suit CMS and/or ParNew needs; these work well on
  1204 // sparc/solaris for certain applications, but would gain from
  1205 // further optimization and tuning efforts, and would almost
  1206 // certainly gain from analysis of platform and environment.
  1207 void Arguments::set_cms_and_parnew_gc_flags() {
  1208   assert(!UseSerialGC && !UseParallelOldGC && !UseParallelGC, "Error");
  1209   assert(UseConcMarkSweepGC, "CMS is expected to be on here");
  1211   // If we are using CMS, we prefer to UseParNewGC,
  1212   // unless explicitly forbidden.
  1213   if (FLAG_IS_DEFAULT(UseParNewGC)) {
  1214     FLAG_SET_ERGO(bool, UseParNewGC, true);
  1217   // Turn off AdaptiveSizePolicy by default for cms until it is complete.
  1218   disable_adaptive_size_policy("UseConcMarkSweepGC");
  1220   // In either case, adjust ParallelGCThreads and/or UseParNewGC
  1221   // as needed.
  1222   if (UseParNewGC) {
  1223     set_parnew_gc_flags();
  1226   size_t max_heap = align_size_down(MaxHeapSize,
  1227                                     CardTableRS::ct_max_alignment_constraint());
  1229   // Now make adjustments for CMS
  1230   intx   tenuring_default = (intx)6;
  1231   size_t young_gen_per_worker = CMSYoungGenPerWorker;
  1233   // Preferred young gen size for "short" pauses:
  1234   // upper bound depends on # of threads and NewRatio.
  1235   const uintx parallel_gc_threads =
  1236     (ParallelGCThreads == 0 ? 1 : ParallelGCThreads);
  1237   const size_t preferred_max_new_size_unaligned =
  1238     MIN2(max_heap/(NewRatio+1), ScaleForWordSize(young_gen_per_worker * parallel_gc_threads));
  1239   size_t preferred_max_new_size =
  1240     align_size_up(preferred_max_new_size_unaligned, os::vm_page_size());
  1242   // Unless explicitly requested otherwise, size young gen
  1243   // for "short" pauses ~ CMSYoungGenPerWorker*ParallelGCThreads
  1245   // If either MaxNewSize or NewRatio is set on the command line,
  1246   // assume the user is trying to set the size of the young gen.
  1247   if (FLAG_IS_DEFAULT(MaxNewSize) && FLAG_IS_DEFAULT(NewRatio)) {
  1249     // Set MaxNewSize to our calculated preferred_max_new_size unless
  1250     // NewSize was set on the command line and it is larger than
  1251     // preferred_max_new_size.
  1252     if (!FLAG_IS_DEFAULT(NewSize)) {   // NewSize explicitly set at command-line
  1253       FLAG_SET_ERGO(uintx, MaxNewSize, MAX2(NewSize, preferred_max_new_size));
  1254     } else {
  1255       FLAG_SET_ERGO(uintx, MaxNewSize, preferred_max_new_size);
  1257     if (PrintGCDetails && Verbose) {
  1258       // Too early to use gclog_or_tty
  1259       tty->print_cr("CMS ergo set MaxNewSize: " SIZE_FORMAT, MaxNewSize);
  1262     // Code along this path potentially sets NewSize and OldSize
  1263     if (PrintGCDetails && Verbose) {
  1264       // Too early to use gclog_or_tty
  1265       tty->print_cr("CMS set min_heap_size: " SIZE_FORMAT
  1266            " initial_heap_size:  " SIZE_FORMAT
  1267            " max_heap: " SIZE_FORMAT,
  1268            min_heap_size(), InitialHeapSize, max_heap);
  1270     size_t min_new = preferred_max_new_size;
  1271     if (FLAG_IS_CMDLINE(NewSize)) {
  1272       min_new = NewSize;
  1274     if (max_heap > min_new && min_heap_size() > min_new) {
  1275       // Unless explicitly requested otherwise, make young gen
  1276       // at least min_new, and at most preferred_max_new_size.
  1277       if (FLAG_IS_DEFAULT(NewSize)) {
  1278         FLAG_SET_ERGO(uintx, NewSize, MAX2(NewSize, min_new));
  1279         FLAG_SET_ERGO(uintx, NewSize, MIN2(preferred_max_new_size, NewSize));
  1280         if (PrintGCDetails && Verbose) {
  1281           // Too early to use gclog_or_tty
  1282           tty->print_cr("CMS ergo set NewSize: " SIZE_FORMAT, NewSize);
  1285       // Unless explicitly requested otherwise, size old gen
  1286       // so it's NewRatio x of NewSize.
  1287       if (FLAG_IS_DEFAULT(OldSize)) {
  1288         if (max_heap > NewSize) {
  1289           FLAG_SET_ERGO(uintx, OldSize, MIN2(NewRatio*NewSize, max_heap - NewSize));
  1290           if (PrintGCDetails && Verbose) {
  1291             // Too early to use gclog_or_tty
  1292             tty->print_cr("CMS ergo set OldSize: " SIZE_FORMAT, OldSize);
  1298   // Unless explicitly requested otherwise, definitely
  1299   // promote all objects surviving "tenuring_default" scavenges.
  1300   if (FLAG_IS_DEFAULT(MaxTenuringThreshold) &&
  1301       FLAG_IS_DEFAULT(SurvivorRatio)) {
  1302     FLAG_SET_ERGO(uintx, MaxTenuringThreshold, tenuring_default);
  1304   // If we decided above (or user explicitly requested)
  1305   // `promote all' (via MaxTenuringThreshold := 0),
  1306   // prefer minuscule survivor spaces so as not to waste
  1307   // space for (non-existent) survivors
  1308   if (FLAG_IS_DEFAULT(SurvivorRatio) && MaxTenuringThreshold == 0) {
  1309     FLAG_SET_ERGO(uintx, SurvivorRatio, MAX2((uintx)1024, SurvivorRatio));
  1311   // If OldPLABSize is set and CMSParPromoteBlocksToClaim is not,
  1312   // set CMSParPromoteBlocksToClaim equal to OldPLABSize.
  1313   // This is done in order to make ParNew+CMS configuration to work
  1314   // with YoungPLABSize and OldPLABSize options.
  1315   // See CR 6362902.
  1316   if (!FLAG_IS_DEFAULT(OldPLABSize)) {
  1317     if (FLAG_IS_DEFAULT(CMSParPromoteBlocksToClaim)) {
  1318       // OldPLABSize is not the default value but CMSParPromoteBlocksToClaim
  1319       // is.  In this situtation let CMSParPromoteBlocksToClaim follow
  1320       // the value (either from the command line or ergonomics) of
  1321       // OldPLABSize.  Following OldPLABSize is an ergonomics decision.
  1322       FLAG_SET_ERGO(uintx, CMSParPromoteBlocksToClaim, OldPLABSize);
  1323     } else {
  1324       // OldPLABSize and CMSParPromoteBlocksToClaim are both set.
  1325       // CMSParPromoteBlocksToClaim is a collector-specific flag, so
  1326       // we'll let it to take precedence.
  1327       jio_fprintf(defaultStream::error_stream(),
  1328                   "Both OldPLABSize and CMSParPromoteBlocksToClaim"
  1329                   " options are specified for the CMS collector."
  1330                   " CMSParPromoteBlocksToClaim will take precedence.\n");
  1333   if (!FLAG_IS_DEFAULT(ResizeOldPLAB) && !ResizeOldPLAB) {
  1334     // OldPLAB sizing manually turned off: Use a larger default setting,
  1335     // unless it was manually specified. This is because a too-low value
  1336     // will slow down scavenges.
  1337     if (FLAG_IS_DEFAULT(CMSParPromoteBlocksToClaim)) {
  1338       FLAG_SET_ERGO(uintx, CMSParPromoteBlocksToClaim, 50); // default value before 6631166
  1341   // Overwrite OldPLABSize which is the variable we will internally use everywhere.
  1342   FLAG_SET_ERGO(uintx, OldPLABSize, CMSParPromoteBlocksToClaim);
  1343   // If either of the static initialization defaults have changed, note this
  1344   // modification.
  1345   if (!FLAG_IS_DEFAULT(CMSParPromoteBlocksToClaim) || !FLAG_IS_DEFAULT(OldPLABWeight)) {
  1346     CFLS_LAB::modify_initialization(OldPLABSize, OldPLABWeight);
  1348   if (PrintGCDetails && Verbose) {
  1349     tty->print_cr("MarkStackSize: %uk  MarkStackSizeMax: %uk",
  1350       (unsigned int) (MarkStackSize / K), (uint) (MarkStackSizeMax / K));
  1351     tty->print_cr("ConcGCThreads: %u", (uint) ConcGCThreads);
  1354 #endif // INCLUDE_ALL_GCS
  1356 void set_object_alignment() {
  1357   // Object alignment.
  1358   assert(is_power_of_2(ObjectAlignmentInBytes), "ObjectAlignmentInBytes must be power of 2");
  1359   MinObjAlignmentInBytes     = ObjectAlignmentInBytes;
  1360   assert(MinObjAlignmentInBytes >= HeapWordsPerLong * HeapWordSize, "ObjectAlignmentInBytes value is too small");
  1361   MinObjAlignment            = MinObjAlignmentInBytes / HeapWordSize;
  1362   assert(MinObjAlignmentInBytes == MinObjAlignment * HeapWordSize, "ObjectAlignmentInBytes value is incorrect");
  1363   MinObjAlignmentInBytesMask = MinObjAlignmentInBytes - 1;
  1365   LogMinObjAlignmentInBytes  = exact_log2(ObjectAlignmentInBytes);
  1366   LogMinObjAlignment         = LogMinObjAlignmentInBytes - LogHeapWordSize;
  1368   // Oop encoding heap max
  1369   OopEncodingHeapMax = (uint64_t(max_juint) + 1) << LogMinObjAlignmentInBytes;
  1371 #if INCLUDE_ALL_GCS
  1372   // Set CMS global values
  1373   CompactibleFreeListSpace::set_cms_values();
  1374 #endif // INCLUDE_ALL_GCS
  1377 bool verify_object_alignment() {
  1378   // Object alignment.
  1379   if (!is_power_of_2(ObjectAlignmentInBytes)) {
  1380     jio_fprintf(defaultStream::error_stream(),
  1381                 "error: ObjectAlignmentInBytes=%d must be power of 2\n",
  1382                 (int)ObjectAlignmentInBytes);
  1383     return false;
  1385   if ((int)ObjectAlignmentInBytes < BytesPerLong) {
  1386     jio_fprintf(defaultStream::error_stream(),
  1387                 "error: ObjectAlignmentInBytes=%d must be greater or equal %d\n",
  1388                 (int)ObjectAlignmentInBytes, BytesPerLong);
  1389     return false;
  1391   // It does not make sense to have big object alignment
  1392   // since a space lost due to alignment will be greater
  1393   // then a saved space from compressed oops.
  1394   if ((int)ObjectAlignmentInBytes > 256) {
  1395     jio_fprintf(defaultStream::error_stream(),
  1396                 "error: ObjectAlignmentInBytes=%d must not be greater than 256\n",
  1397                 (int)ObjectAlignmentInBytes);
  1398     return false;
  1400   // In case page size is very small.
  1401   if ((int)ObjectAlignmentInBytes >= os::vm_page_size()) {
  1402     jio_fprintf(defaultStream::error_stream(),
  1403                 "error: ObjectAlignmentInBytes=%d must be less than page size %d\n",
  1404                 (int)ObjectAlignmentInBytes, os::vm_page_size());
  1405     return false;
  1407   if(SurvivorAlignmentInBytes == 0) {
  1408     SurvivorAlignmentInBytes = ObjectAlignmentInBytes;
  1409   } else {
  1410     if (!is_power_of_2(SurvivorAlignmentInBytes)) {
  1411       jio_fprintf(defaultStream::error_stream(),
  1412             "error: SurvivorAlignmentInBytes=%d must be power of 2\n",
  1413             (int)SurvivorAlignmentInBytes);
  1414       return false;
  1416     if (SurvivorAlignmentInBytes < ObjectAlignmentInBytes) {
  1417       jio_fprintf(defaultStream::error_stream(),
  1418           "error: SurvivorAlignmentInBytes=%d must be greater than ObjectAlignmentInBytes=%d \n",
  1419           (int)SurvivorAlignmentInBytes, (int)ObjectAlignmentInBytes);
  1420       return false;
  1423   return true;
  1426 size_t Arguments::max_heap_for_compressed_oops() {
  1427   // Avoid sign flip.
  1428   assert(OopEncodingHeapMax > (uint64_t)os::vm_page_size(), "Unusual page size");
  1429   // We need to fit both the NULL page and the heap into the memory budget, while
  1430   // keeping alignment constraints of the heap. To guarantee the latter, as the
  1431   // NULL page is located before the heap, we pad the NULL page to the conservative
  1432   // maximum alignment that the GC may ever impose upon the heap.
  1433   size_t displacement_due_to_null_page = align_size_up_(os::vm_page_size(),
  1434                                                         _conservative_max_heap_alignment);
  1436   LP64_ONLY(return OopEncodingHeapMax - displacement_due_to_null_page);
  1437   NOT_LP64(ShouldNotReachHere(); return 0);
  1440 bool Arguments::should_auto_select_low_pause_collector() {
  1441   if (UseAutoGCSelectPolicy &&
  1442       !FLAG_IS_DEFAULT(MaxGCPauseMillis) &&
  1443       (MaxGCPauseMillis <= AutoGCSelectPauseMillis)) {
  1444     if (PrintGCDetails) {
  1445       // Cannot use gclog_or_tty yet.
  1446       tty->print_cr("Automatic selection of the low pause collector"
  1447        " based on pause goal of %d (ms)", (int) MaxGCPauseMillis);
  1449     return true;
  1451   return false;
  1454 void Arguments::set_use_compressed_oops() {
  1455 #ifndef ZERO
  1456 #ifdef _LP64
  1457   // MaxHeapSize is not set up properly at this point, but
  1458   // the only value that can override MaxHeapSize if we are
  1459   // to use UseCompressedOops is InitialHeapSize.
  1460   size_t max_heap_size = MAX2(MaxHeapSize, InitialHeapSize);
  1462   if (max_heap_size <= max_heap_for_compressed_oops()) {
  1463 #if !defined(COMPILER1) || defined(TIERED)
  1464     if (FLAG_IS_DEFAULT(UseCompressedOops)) {
  1465       FLAG_SET_ERGO(bool, UseCompressedOops, true);
  1467 #endif
  1468 #ifdef _WIN64
  1469     if (UseLargePages && UseCompressedOops) {
  1470       // Cannot allocate guard pages for implicit checks in indexed addressing
  1471       // mode, when large pages are specified on windows.
  1472       // This flag could be switched ON if narrow oop base address is set to 0,
  1473       // see code in Universe::initialize_heap().
  1474       Universe::set_narrow_oop_use_implicit_null_checks(false);
  1476 #endif //  _WIN64
  1477   } else {
  1478     if (UseCompressedOops && !FLAG_IS_DEFAULT(UseCompressedOops)) {
  1479       warning("Max heap size too large for Compressed Oops");
  1480       FLAG_SET_DEFAULT(UseCompressedOops, false);
  1481       FLAG_SET_DEFAULT(UseCompressedClassPointers, false);
  1484 #endif // _LP64
  1485 #endif // ZERO
  1489 // NOTE: set_use_compressed_klass_ptrs() must be called after calling
  1490 // set_use_compressed_oops().
  1491 void Arguments::set_use_compressed_klass_ptrs() {
  1492 #ifndef ZERO
  1493 #ifdef _LP64
  1494   // UseCompressedOops must be on for UseCompressedClassPointers to be on.
  1495   if (!UseCompressedOops) {
  1496     if (UseCompressedClassPointers) {
  1497       warning("UseCompressedClassPointers requires UseCompressedOops");
  1499     FLAG_SET_DEFAULT(UseCompressedClassPointers, false);
  1500   } else {
  1501     // Turn on UseCompressedClassPointers too
  1502     if (FLAG_IS_DEFAULT(UseCompressedClassPointers)) {
  1503       FLAG_SET_ERGO(bool, UseCompressedClassPointers, true);
  1505     // Check the CompressedClassSpaceSize to make sure we use compressed klass ptrs.
  1506     if (UseCompressedClassPointers) {
  1507       if (CompressedClassSpaceSize > KlassEncodingMetaspaceMax) {
  1508         warning("CompressedClassSpaceSize is too large for UseCompressedClassPointers");
  1509         FLAG_SET_DEFAULT(UseCompressedClassPointers, false);
  1513 #endif // _LP64
  1514 #endif // !ZERO
  1517 void Arguments::set_conservative_max_heap_alignment() {
  1518   // The conservative maximum required alignment for the heap is the maximum of
  1519   // the alignments imposed by several sources: any requirements from the heap
  1520   // itself, the collector policy and the maximum page size we may run the VM
  1521   // with.
  1522   size_t heap_alignment = GenCollectedHeap::conservative_max_heap_alignment();
  1523 #if INCLUDE_ALL_GCS
  1524   if (UseParallelGC) {
  1525     heap_alignment = ParallelScavengeHeap::conservative_max_heap_alignment();
  1526   } else if (UseG1GC) {
  1527     heap_alignment = G1CollectedHeap::conservative_max_heap_alignment();
  1529 #endif // INCLUDE_ALL_GCS
  1530   _conservative_max_heap_alignment = MAX4(heap_alignment,
  1531                                           (size_t)os::vm_allocation_granularity(),
  1532                                           os::max_page_size(),
  1533                                           CollectorPolicy::compute_heap_alignment());
  1536 void Arguments::select_gc_ergonomically() {
  1537   if (os::is_server_class_machine()) {
  1538     if (should_auto_select_low_pause_collector()) {
  1539       FLAG_SET_ERGO(bool, UseConcMarkSweepGC, true);
  1540     } else {
  1541       FLAG_SET_ERGO(bool, UseParallelGC, true);
  1546 void Arguments::select_gc() {
  1547   if (!gc_selected()) {
  1548     ArgumentsExt::select_gc_ergonomically();
  1552 void Arguments::set_ergonomics_flags() {
  1553   select_gc();
  1555 #ifdef COMPILER2
  1556   // Shared spaces work fine with other GCs but causes bytecode rewriting
  1557   // to be disabled, which hurts interpreter performance and decreases
  1558   // server performance.  When -server is specified, keep the default off
  1559   // unless it is asked for.  Future work: either add bytecode rewriting
  1560   // at link time, or rewrite bytecodes in non-shared methods.
  1561   if (!DumpSharedSpaces && !RequireSharedSpaces &&
  1562       (FLAG_IS_DEFAULT(UseSharedSpaces) || !UseSharedSpaces)) {
  1563     no_shared_spaces("COMPILER2 default: -Xshare:auto | off, have to manually setup to on.");
  1565 #endif
  1567   set_conservative_max_heap_alignment();
  1569 #ifndef ZERO
  1570 #ifdef _LP64
  1571   set_use_compressed_oops();
  1573   // set_use_compressed_klass_ptrs() must be called after calling
  1574   // set_use_compressed_oops().
  1575   set_use_compressed_klass_ptrs();
  1577   // Also checks that certain machines are slower with compressed oops
  1578   // in vm_version initialization code.
  1579 #endif // _LP64
  1580 #endif // !ZERO
  1583 void Arguments::set_parallel_gc_flags() {
  1584   assert(UseParallelGC || UseParallelOldGC, "Error");
  1585   // Enable ParallelOld unless it was explicitly disabled (cmd line or rc file).
  1586   if (FLAG_IS_DEFAULT(UseParallelOldGC)) {
  1587     FLAG_SET_DEFAULT(UseParallelOldGC, true);
  1589   FLAG_SET_DEFAULT(UseParallelGC, true);
  1591   // If no heap maximum was requested explicitly, use some reasonable fraction
  1592   // of the physical memory, up to a maximum of 1GB.
  1593   FLAG_SET_DEFAULT(ParallelGCThreads,
  1594                    Abstract_VM_Version::parallel_worker_threads());
  1595   if (ParallelGCThreads == 0) {
  1596     jio_fprintf(defaultStream::error_stream(),
  1597         "The Parallel GC can not be combined with -XX:ParallelGCThreads=0\n");
  1598     vm_exit(1);
  1601   if (UseAdaptiveSizePolicy) {
  1602     // We don't want to limit adaptive heap sizing's freedom to adjust the heap
  1603     // unless the user actually sets these flags.
  1604     if (FLAG_IS_DEFAULT(MinHeapFreeRatio)) {
  1605       FLAG_SET_DEFAULT(MinHeapFreeRatio, 0);
  1606       _min_heap_free_ratio = MinHeapFreeRatio;
  1608     if (FLAG_IS_DEFAULT(MaxHeapFreeRatio)) {
  1609       FLAG_SET_DEFAULT(MaxHeapFreeRatio, 100);
  1610       _max_heap_free_ratio = MaxHeapFreeRatio;
  1614   // If InitialSurvivorRatio or MinSurvivorRatio were not specified, but the
  1615   // SurvivorRatio has been set, reset their default values to SurvivorRatio +
  1616   // 2.  By doing this we make SurvivorRatio also work for Parallel Scavenger.
  1617   // See CR 6362902 for details.
  1618   if (!FLAG_IS_DEFAULT(SurvivorRatio)) {
  1619     if (FLAG_IS_DEFAULT(InitialSurvivorRatio)) {
  1620        FLAG_SET_DEFAULT(InitialSurvivorRatio, SurvivorRatio + 2);
  1622     if (FLAG_IS_DEFAULT(MinSurvivorRatio)) {
  1623       FLAG_SET_DEFAULT(MinSurvivorRatio, SurvivorRatio + 2);
  1627   if (UseParallelOldGC) {
  1628     // Par compact uses lower default values since they are treated as
  1629     // minimums.  These are different defaults because of the different
  1630     // interpretation and are not ergonomically set.
  1631     if (FLAG_IS_DEFAULT(MarkSweepDeadRatio)) {
  1632       FLAG_SET_DEFAULT(MarkSweepDeadRatio, 1);
  1637 void Arguments::set_g1_gc_flags() {
  1638   assert(UseG1GC, "Error");
  1639 #ifdef COMPILER1
  1640   FastTLABRefill = false;
  1641 #endif
  1642   FLAG_SET_DEFAULT(ParallelGCThreads,
  1643                      Abstract_VM_Version::parallel_worker_threads());
  1644   if (ParallelGCThreads == 0) {
  1645     FLAG_SET_DEFAULT(ParallelGCThreads,
  1646                      Abstract_VM_Version::parallel_worker_threads());
  1649 #if INCLUDE_ALL_GCS
  1650   if (G1ConcRefinementThreads == 0) {
  1651     FLAG_SET_DEFAULT(G1ConcRefinementThreads, ParallelGCThreads);
  1653 #endif
  1655   // MarkStackSize will be set (if it hasn't been set by the user)
  1656   // when concurrent marking is initialized.
  1657   // Its value will be based upon the number of parallel marking threads.
  1658   // But we do set the maximum mark stack size here.
  1659   if (FLAG_IS_DEFAULT(MarkStackSizeMax)) {
  1660     FLAG_SET_DEFAULT(MarkStackSizeMax, 128 * TASKQUEUE_SIZE);
  1663   if (FLAG_IS_DEFAULT(GCTimeRatio) || GCTimeRatio == 0) {
  1664     // In G1, we want the default GC overhead goal to be higher than
  1665     // say in PS. So we set it here to 10%. Otherwise the heap might
  1666     // be expanded more aggressively than we would like it to. In
  1667     // fact, even 10% seems to not be high enough in some cases
  1668     // (especially small GC stress tests that the main thing they do
  1669     // is allocation). We might consider increase it further.
  1670     FLAG_SET_DEFAULT(GCTimeRatio, 9);
  1673   if (PrintGCDetails && Verbose) {
  1674     tty->print_cr("MarkStackSize: %uk  MarkStackSizeMax: %uk",
  1675       (unsigned int) (MarkStackSize / K), (uint) (MarkStackSizeMax / K));
  1676     tty->print_cr("ConcGCThreads: %u", (uint) ConcGCThreads);
  1680 #if !INCLUDE_ALL_GCS
  1681 #ifdef ASSERT
  1682 static bool verify_serial_gc_flags() {
  1683   return (UseSerialGC &&
  1684         !(UseParNewGC || (UseConcMarkSweepGC || CMSIncrementalMode) || UseG1GC ||
  1685           UseParallelGC || UseParallelOldGC));
  1687 #endif // ASSERT
  1688 #endif // INCLUDE_ALL_GCS
  1690 void Arguments::set_gc_specific_flags() {
  1691 #if INCLUDE_ALL_GCS
  1692   // Set per-collector flags
  1693   if (UseParallelGC || UseParallelOldGC) {
  1694     set_parallel_gc_flags();
  1695   } else if (UseConcMarkSweepGC) { // Should be done before ParNew check below
  1696     set_cms_and_parnew_gc_flags();
  1697   } else if (UseParNewGC) {  // Skipped if CMS is set above
  1698     set_parnew_gc_flags();
  1699   } else if (UseG1GC) {
  1700     set_g1_gc_flags();
  1702   check_deprecated_gcs();
  1703   check_deprecated_gc_flags();
  1704   if (AssumeMP && !UseSerialGC) {
  1705     if (FLAG_IS_DEFAULT(ParallelGCThreads) && ParallelGCThreads == 1) {
  1706       warning("If the number of processors is expected to increase from one, then"
  1707               " you should configure the number of parallel GC threads appropriately"
  1708               " using -XX:ParallelGCThreads=N");
  1711   if (MinHeapFreeRatio == 100) {
  1712     // Keeping the heap 100% free is hard ;-) so limit it to 99%.
  1713     FLAG_SET_ERGO(uintx, MinHeapFreeRatio, 99);
  1715 #else // INCLUDE_ALL_GCS
  1716   assert(verify_serial_gc_flags(), "SerialGC unset");
  1717 #endif // INCLUDE_ALL_GCS
  1720 julong Arguments::limit_by_allocatable_memory(julong limit) {
  1721   julong max_allocatable;
  1722   julong result = limit;
  1723   if (os::has_allocatable_memory_limit(&max_allocatable)) {
  1724     result = MIN2(result, max_allocatable / MaxVirtMemFraction);
  1726   return result;
  1729 void Arguments::set_heap_size() {
  1730   if (!FLAG_IS_DEFAULT(DefaultMaxRAMFraction)) {
  1731     // Deprecated flag
  1732     FLAG_SET_CMDLINE(uintx, MaxRAMFraction, DefaultMaxRAMFraction);
  1735   const julong phys_mem =
  1736     FLAG_IS_DEFAULT(MaxRAM) ? MIN2(os::physical_memory(), (julong)MaxRAM)
  1737                             : (julong)MaxRAM;
  1739   // If the maximum heap size has not been set with -Xmx,
  1740   // then set it as fraction of the size of physical memory,
  1741   // respecting the maximum and minimum sizes of the heap.
  1742   if (FLAG_IS_DEFAULT(MaxHeapSize)) {
  1743     julong reasonable_max = phys_mem / MaxRAMFraction;
  1745     if (phys_mem <= MaxHeapSize * MinRAMFraction) {
  1746       // Small physical memory, so use a minimum fraction of it for the heap
  1747       reasonable_max = phys_mem / MinRAMFraction;
  1748     } else {
  1749       // Not-small physical memory, so require a heap at least
  1750       // as large as MaxHeapSize
  1751       reasonable_max = MAX2(reasonable_max, (julong)MaxHeapSize);
  1753     if (!FLAG_IS_DEFAULT(ErgoHeapSizeLimit) && ErgoHeapSizeLimit != 0) {
  1754       // Limit the heap size to ErgoHeapSizeLimit
  1755       reasonable_max = MIN2(reasonable_max, (julong)ErgoHeapSizeLimit);
  1757     if (UseCompressedOops) {
  1758       // Limit the heap size to the maximum possible when using compressed oops
  1759       julong max_coop_heap = (julong)max_heap_for_compressed_oops();
  1760       if (HeapBaseMinAddress + MaxHeapSize < max_coop_heap) {
  1761         // Heap should be above HeapBaseMinAddress to get zero based compressed oops
  1762         // but it should be not less than default MaxHeapSize.
  1763         max_coop_heap -= HeapBaseMinAddress;
  1765       reasonable_max = MIN2(reasonable_max, max_coop_heap);
  1767     reasonable_max = limit_by_allocatable_memory(reasonable_max);
  1769     if (!FLAG_IS_DEFAULT(InitialHeapSize)) {
  1770       // An initial heap size was specified on the command line,
  1771       // so be sure that the maximum size is consistent.  Done
  1772       // after call to limit_by_allocatable_memory because that
  1773       // method might reduce the allocation size.
  1774       reasonable_max = MAX2(reasonable_max, (julong)InitialHeapSize);
  1777     if (PrintGCDetails && Verbose) {
  1778       // Cannot use gclog_or_tty yet.
  1779       tty->print_cr("  Maximum heap size " SIZE_FORMAT, (size_t) reasonable_max);
  1781     FLAG_SET_ERGO(uintx, MaxHeapSize, (uintx)reasonable_max);
  1784   // If the minimum or initial heap_size have not been set or requested to be set
  1785   // ergonomically, set them accordingly.
  1786   if (InitialHeapSize == 0 || min_heap_size() == 0) {
  1787     julong reasonable_minimum = (julong)(OldSize + NewSize);
  1789     reasonable_minimum = MIN2(reasonable_minimum, (julong)MaxHeapSize);
  1791     reasonable_minimum = limit_by_allocatable_memory(reasonable_minimum);
  1793     if (InitialHeapSize == 0) {
  1794       julong reasonable_initial = phys_mem / InitialRAMFraction;
  1796       reasonable_initial = MAX3(reasonable_initial, reasonable_minimum, (julong)min_heap_size());
  1797       reasonable_initial = MIN2(reasonable_initial, (julong)MaxHeapSize);
  1799       reasonable_initial = limit_by_allocatable_memory(reasonable_initial);
  1801       if (PrintGCDetails && Verbose) {
  1802         // Cannot use gclog_or_tty yet.
  1803         tty->print_cr("  Initial heap size " SIZE_FORMAT, (uintx)reasonable_initial);
  1805       FLAG_SET_ERGO(uintx, InitialHeapSize, (uintx)reasonable_initial);
  1807     // If the minimum heap size has not been set (via -Xms),
  1808     // synchronize with InitialHeapSize to avoid errors with the default value.
  1809     if (min_heap_size() == 0) {
  1810       set_min_heap_size(MIN2((uintx)reasonable_minimum, InitialHeapSize));
  1811       if (PrintGCDetails && Verbose) {
  1812         // Cannot use gclog_or_tty yet.
  1813         tty->print_cr("  Minimum heap size " SIZE_FORMAT, min_heap_size());
  1819 // This must be called after ergonomics because we want bytecode rewriting
  1820 // if the server compiler is used, or if UseSharedSpaces is disabled.
  1821 void Arguments::set_bytecode_flags() {
  1822   // Better not attempt to store into a read-only space.
  1823   if (UseSharedSpaces) {
  1824     FLAG_SET_DEFAULT(RewriteBytecodes, false);
  1825     FLAG_SET_DEFAULT(RewriteFrequentPairs, false);
  1828   if (!RewriteBytecodes) {
  1829     FLAG_SET_DEFAULT(RewriteFrequentPairs, false);
  1833 // Aggressive optimization flags  -XX:+AggressiveOpts
  1834 void Arguments::set_aggressive_opts_flags() {
  1835 #ifdef COMPILER2
  1836   if (AggressiveUnboxing) {
  1837     if (FLAG_IS_DEFAULT(EliminateAutoBox)) {
  1838       FLAG_SET_DEFAULT(EliminateAutoBox, true);
  1839     } else if (!EliminateAutoBox) {
  1840       // warning("AggressiveUnboxing is disabled because EliminateAutoBox is disabled");
  1841       AggressiveUnboxing = false;
  1843     if (FLAG_IS_DEFAULT(DoEscapeAnalysis)) {
  1844       FLAG_SET_DEFAULT(DoEscapeAnalysis, true);
  1845     } else if (!DoEscapeAnalysis) {
  1846       // warning("AggressiveUnboxing is disabled because DoEscapeAnalysis is disabled");
  1847       AggressiveUnboxing = false;
  1850   if (AggressiveOpts || !FLAG_IS_DEFAULT(AutoBoxCacheMax)) {
  1851     if (FLAG_IS_DEFAULT(EliminateAutoBox)) {
  1852       FLAG_SET_DEFAULT(EliminateAutoBox, true);
  1854     if (FLAG_IS_DEFAULT(AutoBoxCacheMax)) {
  1855       FLAG_SET_DEFAULT(AutoBoxCacheMax, 20000);
  1858     // Feed the cache size setting into the JDK
  1859     char buffer[1024];
  1860     sprintf(buffer, "java.lang.Integer.IntegerCache.high=" INTX_FORMAT, AutoBoxCacheMax);
  1861     add_property(buffer);
  1863   if (AggressiveOpts && FLAG_IS_DEFAULT(BiasedLockingStartupDelay)) {
  1864     FLAG_SET_DEFAULT(BiasedLockingStartupDelay, 500);
  1866 #endif
  1868   if (AggressiveOpts) {
  1869 // Sample flag setting code
  1870 //    if (FLAG_IS_DEFAULT(EliminateZeroing)) {
  1871 //      FLAG_SET_DEFAULT(EliminateZeroing, true);
  1872 //    }
  1876 //===========================================================================================================
  1877 // Parsing of java.compiler property
  1879 void Arguments::process_java_compiler_argument(char* arg) {
  1880   // For backwards compatibility, Djava.compiler=NONE or ""
  1881   // causes us to switch to -Xint mode UNLESS -Xdebug
  1882   // is also specified.
  1883   if (strlen(arg) == 0 || strcasecmp(arg, "NONE") == 0) {
  1884     set_java_compiler(true);    // "-Djava.compiler[=...]" most recently seen.
  1888 void Arguments::process_java_launcher_argument(const char* launcher, void* extra_info) {
  1889   _sun_java_launcher = strdup(launcher);
  1890   if (strcmp("gamma", _sun_java_launcher) == 0) {
  1891     _created_by_gamma_launcher = true;
  1895 bool Arguments::created_by_java_launcher() {
  1896   assert(_sun_java_launcher != NULL, "property must have value");
  1897   return strcmp(DEFAULT_JAVA_LAUNCHER, _sun_java_launcher) != 0;
  1900 bool Arguments::created_by_gamma_launcher() {
  1901   return _created_by_gamma_launcher;
  1904 //===========================================================================================================
  1905 // Parsing of main arguments
  1907 bool Arguments::verify_interval(uintx val, uintx min,
  1908                                 uintx max, const char* name) {
  1909   // Returns true iff value is in the inclusive interval [min..max]
  1910   // false, otherwise.
  1911   if (val >= min && val <= max) {
  1912     return true;
  1914   jio_fprintf(defaultStream::error_stream(),
  1915               "%s of " UINTX_FORMAT " is invalid; must be between " UINTX_FORMAT
  1916               " and " UINTX_FORMAT "\n",
  1917               name, val, min, max);
  1918   return false;
  1921 bool Arguments::verify_min_value(intx val, intx min, const char* name) {
  1922   // Returns true if given value is at least specified min threshold
  1923   // false, otherwise.
  1924   if (val >= min ) {
  1925       return true;
  1927   jio_fprintf(defaultStream::error_stream(),
  1928               "%s of " INTX_FORMAT " is invalid; must be at least " INTX_FORMAT "\n",
  1929               name, val, min);
  1930   return false;
  1933 bool Arguments::verify_percentage(uintx value, const char* name) {
  1934   if (is_percentage(value)) {
  1935     return true;
  1937   jio_fprintf(defaultStream::error_stream(),
  1938               "%s of " UINTX_FORMAT " is invalid; must be between 0 and 100\n",
  1939               name, value);
  1940   return false;
  1943 // check if do gclog rotation
  1944 // +UseGCLogFileRotation is a must,
  1945 // no gc log rotation when log file not supplied or
  1946 // NumberOfGCLogFiles is 0
  1947 void check_gclog_consistency() {
  1948   if (UseGCLogFileRotation) {
  1949     if ((Arguments::gc_log_filename() == NULL) || (NumberOfGCLogFiles == 0)) {
  1950       jio_fprintf(defaultStream::output_stream(),
  1951                   "To enable GC log rotation, use -Xloggc:<filename> -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=<num_of_files>\n"
  1952                   "where num_of_file > 0\n"
  1953                   "GC log rotation is turned off\n");
  1954       UseGCLogFileRotation = false;
  1958   if (UseGCLogFileRotation && (GCLogFileSize != 0) && (GCLogFileSize < 8*K)) {
  1959     FLAG_SET_CMDLINE(uintx, GCLogFileSize, 8*K);
  1960     jio_fprintf(defaultStream::output_stream(),
  1961                 "GCLogFileSize changed to minimum 8K\n");
  1965 // This function is called for -Xloggc:<filename>, it can be used
  1966 // to check if a given file name(or string) conforms to the following
  1967 // specification:
  1968 // A valid string only contains "[A-Z][a-z][0-9].-_%[p|t]"
  1969 // %p and %t only allowed once. We only limit usage of filename not path
  1970 bool is_filename_valid(const char *file_name) {
  1971   const char* p = file_name;
  1972   char file_sep = os::file_separator()[0];
  1973   const char* cp;
  1974   // skip prefix path
  1975   for (cp = file_name; *cp != '\0'; cp++) {
  1976     if (*cp == '/' || *cp == file_sep) {
  1977       p = cp + 1;
  1981   int count_p = 0;
  1982   int count_t = 0;
  1983   while (*p != '\0') {
  1984     if ((*p >= '0' && *p <= '9') ||
  1985         (*p >= 'A' && *p <= 'Z') ||
  1986         (*p >= 'a' && *p <= 'z') ||
  1987          *p == '-'               ||
  1988          *p == '_'               ||
  1989          *p == '.') {
  1990        p++;
  1991        continue;
  1993     if (*p == '%') {
  1994       if(*(p + 1) == 'p') {
  1995         p += 2;
  1996         count_p ++;
  1997         continue;
  1999       if (*(p + 1) == 't') {
  2000         p += 2;
  2001         count_t ++;
  2002         continue;
  2005     return false;
  2007   return count_p < 2 && count_t < 2;
  2010 bool Arguments::verify_MinHeapFreeRatio(FormatBuffer<80>& err_msg, uintx min_heap_free_ratio) {
  2011   if (!is_percentage(min_heap_free_ratio)) {
  2012     err_msg.print("MinHeapFreeRatio must have a value between 0 and 100");
  2013     return false;
  2015   if (min_heap_free_ratio > MaxHeapFreeRatio) {
  2016     err_msg.print("MinHeapFreeRatio (" UINTX_FORMAT ") must be less than or "
  2017                   "equal to MaxHeapFreeRatio (" UINTX_FORMAT ")", min_heap_free_ratio,
  2018                   MaxHeapFreeRatio);
  2019     return false;
  2021   // This does not set the flag itself, but stores the value in a safe place for later usage.
  2022   _min_heap_free_ratio = min_heap_free_ratio;
  2023   return true;
  2026 bool Arguments::verify_MaxHeapFreeRatio(FormatBuffer<80>& err_msg, uintx max_heap_free_ratio) {
  2027   if (!is_percentage(max_heap_free_ratio)) {
  2028     err_msg.print("MaxHeapFreeRatio must have a value between 0 and 100");
  2029     return false;
  2031   if (max_heap_free_ratio < MinHeapFreeRatio) {
  2032     err_msg.print("MaxHeapFreeRatio (" UINTX_FORMAT ") must be greater than or "
  2033                   "equal to MinHeapFreeRatio (" UINTX_FORMAT ")", max_heap_free_ratio,
  2034                   MinHeapFreeRatio);
  2035     return false;
  2037   // This does not set the flag itself, but stores the value in a safe place for later usage.
  2038   _max_heap_free_ratio = max_heap_free_ratio;
  2039   return true;
  2042 // Check consistency of GC selection
  2043 bool Arguments::check_gc_consistency_user() {
  2044   check_gclog_consistency();
  2045   bool status = true;
  2046   // Ensure that the user has not selected conflicting sets
  2047   // of collectors. [Note: this check is merely a user convenience;
  2048   // collectors over-ride each other so that only a non-conflicting
  2049   // set is selected; however what the user gets is not what they
  2050   // may have expected from the combination they asked for. It's
  2051   // better to reduce user confusion by not allowing them to
  2052   // select conflicting combinations.
  2053   uint i = 0;
  2054   if (UseSerialGC)                       i++;
  2055   if (UseConcMarkSweepGC || UseParNewGC) i++;
  2056   if (UseParallelGC || UseParallelOldGC) i++;
  2057   if (UseG1GC)                           i++;
  2058   if (i > 1) {
  2059     jio_fprintf(defaultStream::error_stream(),
  2060                 "Conflicting collector combinations in option list; "
  2061                 "please refer to the release notes for the combinations "
  2062                 "allowed\n");
  2063     status = false;
  2065   return status;
  2068 void Arguments::check_deprecated_gcs() {
  2069   if (UseConcMarkSweepGC && !UseParNewGC) {
  2070     warning("Using the DefNew young collector with the CMS collector is deprecated "
  2071         "and will likely be removed in a future release");
  2074   if (UseParNewGC && !UseConcMarkSweepGC) {
  2075     // !UseConcMarkSweepGC means that we are using serial old gc. Unfortunately we don't
  2076     // set up UseSerialGC properly, so that can't be used in the check here.
  2077     warning("Using the ParNew young collector with the Serial old collector is deprecated "
  2078         "and will likely be removed in a future release");
  2081   if (CMSIncrementalMode) {
  2082     warning("Using incremental CMS is deprecated and will likely be removed in a future release");
  2086 void Arguments::check_deprecated_gc_flags() {
  2087   if (FLAG_IS_CMDLINE(MaxGCMinorPauseMillis)) {
  2088     warning("Using MaxGCMinorPauseMillis as minor pause goal is deprecated"
  2089             "and will likely be removed in future release");
  2091   if (FLAG_IS_CMDLINE(DefaultMaxRAMFraction)) {
  2092     warning("DefaultMaxRAMFraction is deprecated and will likely be removed in a future release. "
  2093         "Use MaxRAMFraction instead.");
  2095   if (FLAG_IS_CMDLINE(UseCMSCompactAtFullCollection)) {
  2096     warning("UseCMSCompactAtFullCollection is deprecated and will likely be removed in a future release.");
  2098   if (FLAG_IS_CMDLINE(CMSFullGCsBeforeCompaction)) {
  2099     warning("CMSFullGCsBeforeCompaction is deprecated and will likely be removed in a future release.");
  2101   if (FLAG_IS_CMDLINE(UseCMSCollectionPassing)) {
  2102     warning("UseCMSCollectionPassing is deprecated and will likely be removed in a future release.");
  2106 // Check stack pages settings
  2107 bool Arguments::check_stack_pages()
  2109   bool status = true;
  2110   status = status && verify_min_value(StackYellowPages, 1, "StackYellowPages");
  2111   status = status && verify_min_value(StackRedPages, 1, "StackRedPages");
  2112   // greater stack shadow pages can't generate instruction to bang stack
  2113   status = status && verify_interval(StackShadowPages, 1, 50, "StackShadowPages");
  2114   return status;
  2117 // Check the consistency of vm_init_args
  2118 bool Arguments::check_vm_args_consistency() {
  2119   // Method for adding checks for flag consistency.
  2120   // The intent is to warn the user of all possible conflicts,
  2121   // before returning an error.
  2122   // Note: Needs platform-dependent factoring.
  2123   bool status = true;
  2125   // Allow both -XX:-UseStackBanging and -XX:-UseBoundThreads in non-product
  2126   // builds so the cost of stack banging can be measured.
  2127 #if (defined(PRODUCT) && defined(SOLARIS))
  2128   if (!UseBoundThreads && !UseStackBanging) {
  2129     jio_fprintf(defaultStream::error_stream(),
  2130                 "-UseStackBanging conflicts with -UseBoundThreads\n");
  2132      status = false;
  2134 #endif
  2136   if (TLABRefillWasteFraction == 0) {
  2137     jio_fprintf(defaultStream::error_stream(),
  2138                 "TLABRefillWasteFraction should be a denominator, "
  2139                 "not " SIZE_FORMAT "\n",
  2140                 TLABRefillWasteFraction);
  2141     status = false;
  2144   status = status && verify_interval(AdaptiveSizePolicyWeight, 0, 100,
  2145                               "AdaptiveSizePolicyWeight");
  2146   status = status && verify_percentage(ThresholdTolerance, "ThresholdTolerance");
  2148   // Divide by bucket size to prevent a large size from causing rollover when
  2149   // calculating amount of memory needed to be allocated for the String table.
  2150   status = status && verify_interval(StringTableSize, minimumStringTableSize,
  2151     (max_uintx / StringTable::bucket_size()), "StringTable size");
  2153   status = status && verify_interval(SymbolTableSize, minimumSymbolTableSize,
  2154     (max_uintx / SymbolTable::bucket_size()), "SymbolTable size");
  2157     // Using "else if" below to avoid printing two error messages if min > max.
  2158     // This will also prevent us from reporting both min>100 and max>100 at the
  2159     // same time, but that is less annoying than printing two identical errors IMHO.
  2160     FormatBuffer<80> err_msg("%s","");
  2161     if (!verify_MinHeapFreeRatio(err_msg, MinHeapFreeRatio)) {
  2162       jio_fprintf(defaultStream::error_stream(), "%s\n", err_msg.buffer());
  2163       status = false;
  2164     } else if (!verify_MaxHeapFreeRatio(err_msg, MaxHeapFreeRatio)) {
  2165       jio_fprintf(defaultStream::error_stream(), "%s\n", err_msg.buffer());
  2166       status = false;
  2170   // Min/MaxMetaspaceFreeRatio
  2171   status = status && verify_percentage(MinMetaspaceFreeRatio, "MinMetaspaceFreeRatio");
  2172   status = status && verify_percentage(MaxMetaspaceFreeRatio, "MaxMetaspaceFreeRatio");
  2174   if (MinMetaspaceFreeRatio > MaxMetaspaceFreeRatio) {
  2175     jio_fprintf(defaultStream::error_stream(),
  2176                 "MinMetaspaceFreeRatio (%s" UINTX_FORMAT ") must be less than or "
  2177                 "equal to MaxMetaspaceFreeRatio (%s" UINTX_FORMAT ")\n",
  2178                 FLAG_IS_DEFAULT(MinMetaspaceFreeRatio) ? "Default: " : "",
  2179                 MinMetaspaceFreeRatio,
  2180                 FLAG_IS_DEFAULT(MaxMetaspaceFreeRatio) ? "Default: " : "",
  2181                 MaxMetaspaceFreeRatio);
  2182     status = false;
  2185   // Trying to keep 100% free is not practical
  2186   MinMetaspaceFreeRatio = MIN2(MinMetaspaceFreeRatio, (uintx) 99);
  2188   if (FullGCALot && FLAG_IS_DEFAULT(MarkSweepAlwaysCompactCount)) {
  2189     MarkSweepAlwaysCompactCount = 1;  // Move objects every gc.
  2192   if (UseParallelOldGC && ParallelOldGCSplitALot) {
  2193     // Settings to encourage splitting.
  2194     if (!FLAG_IS_CMDLINE(NewRatio)) {
  2195       FLAG_SET_CMDLINE(uintx, NewRatio, 2);
  2197     if (!FLAG_IS_CMDLINE(ScavengeBeforeFullGC)) {
  2198       FLAG_SET_CMDLINE(bool, ScavengeBeforeFullGC, false);
  2202   status = status && verify_percentage(GCHeapFreeLimit, "GCHeapFreeLimit");
  2203   status = status && verify_percentage(GCTimeLimit, "GCTimeLimit");
  2204   if (GCTimeLimit == 100) {
  2205     // Turn off gc-overhead-limit-exceeded checks
  2206     FLAG_SET_DEFAULT(UseGCOverheadLimit, false);
  2209   status = status && ArgumentsExt::check_gc_consistency_user();
  2210   status = status && check_stack_pages();
  2212   if (CMSIncrementalMode) {
  2213     if (!UseConcMarkSweepGC) {
  2214       jio_fprintf(defaultStream::error_stream(),
  2215                   "error:  invalid argument combination.\n"
  2216                   "The CMS collector (-XX:+UseConcMarkSweepGC) must be "
  2217                   "selected in order\nto use CMSIncrementalMode.\n");
  2218       status = false;
  2219     } else {
  2220       status = status && verify_percentage(CMSIncrementalDutyCycle,
  2221                                   "CMSIncrementalDutyCycle");
  2222       status = status && verify_percentage(CMSIncrementalDutyCycleMin,
  2223                                   "CMSIncrementalDutyCycleMin");
  2224       status = status && verify_percentage(CMSIncrementalSafetyFactor,
  2225                                   "CMSIncrementalSafetyFactor");
  2226       status = status && verify_percentage(CMSIncrementalOffset,
  2227                                   "CMSIncrementalOffset");
  2228       status = status && verify_percentage(CMSExpAvgFactor,
  2229                                   "CMSExpAvgFactor");
  2230       // If it was not set on the command line, set
  2231       // CMSInitiatingOccupancyFraction to 1 so icms can initiate cycles early.
  2232       if (CMSInitiatingOccupancyFraction < 0) {
  2233         FLAG_SET_DEFAULT(CMSInitiatingOccupancyFraction, 1);
  2238   // CMS space iteration, which FLSVerifyAllHeapreferences entails,
  2239   // insists that we hold the requisite locks so that the iteration is
  2240   // MT-safe. For the verification at start-up and shut-down, we don't
  2241   // yet have a good way of acquiring and releasing these locks,
  2242   // which are not visible at the CollectedHeap level. We want to
  2243   // be able to acquire these locks and then do the iteration rather
  2244   // than just disable the lock verification. This will be fixed under
  2245   // bug 4788986.
  2246   if (UseConcMarkSweepGC && FLSVerifyAllHeapReferences) {
  2247     if (VerifyDuringStartup) {
  2248       warning("Heap verification at start-up disabled "
  2249               "(due to current incompatibility with FLSVerifyAllHeapReferences)");
  2250       VerifyDuringStartup = false; // Disable verification at start-up
  2253     if (VerifyBeforeExit) {
  2254       warning("Heap verification at shutdown disabled "
  2255               "(due to current incompatibility with FLSVerifyAllHeapReferences)");
  2256       VerifyBeforeExit = false; // Disable verification at shutdown
  2260   // Note: only executed in non-PRODUCT mode
  2261   if (!UseAsyncConcMarkSweepGC &&
  2262       (ExplicitGCInvokesConcurrent ||
  2263        ExplicitGCInvokesConcurrentAndUnloadsClasses)) {
  2264     jio_fprintf(defaultStream::error_stream(),
  2265                 "error: +ExplicitGCInvokesConcurrent[AndUnloadsClasses] conflicts"
  2266                 " with -UseAsyncConcMarkSweepGC");
  2267     status = false;
  2270   status = status && verify_min_value(ParGCArrayScanChunk, 1, "ParGCArrayScanChunk");
  2272 #if INCLUDE_ALL_GCS
  2273   if (UseG1GC) {
  2274     status = status && verify_percentage(G1NewSizePercent, "G1NewSizePercent");
  2275     status = status && verify_percentage(G1MaxNewSizePercent, "G1MaxNewSizePercent");
  2276     status = status && verify_interval(G1NewSizePercent, 0, G1MaxNewSizePercent, "G1NewSizePercent");
  2278     status = status && verify_percentage(InitiatingHeapOccupancyPercent,
  2279                                          "InitiatingHeapOccupancyPercent");
  2280     status = status && verify_min_value(G1RefProcDrainInterval, 1,
  2281                                         "G1RefProcDrainInterval");
  2282     status = status && verify_min_value((intx)G1ConcMarkStepDurationMillis, 1,
  2283                                         "G1ConcMarkStepDurationMillis");
  2284     status = status && verify_interval(G1ConcRSHotCardLimit, 0, max_jubyte,
  2285                                        "G1ConcRSHotCardLimit");
  2286     status = status && verify_interval(G1ConcRSLogCacheSize, 0, 31,
  2287                                        "G1ConcRSLogCacheSize");
  2288     status = status && verify_interval(StringDeduplicationAgeThreshold, 1, markOopDesc::max_age,
  2289                                        "StringDeduplicationAgeThreshold");
  2291   if (UseConcMarkSweepGC) {
  2292     status = status && verify_min_value(CMSOldPLABNumRefills, 1, "CMSOldPLABNumRefills");
  2293     status = status && verify_min_value(CMSOldPLABToleranceFactor, 1, "CMSOldPLABToleranceFactor");
  2294     status = status && verify_min_value(CMSOldPLABMax, 1, "CMSOldPLABMax");
  2295     status = status && verify_interval(CMSOldPLABMin, 1, CMSOldPLABMax, "CMSOldPLABMin");
  2297     status = status && verify_min_value(CMSYoungGenPerWorker, 1, "CMSYoungGenPerWorker");
  2299     status = status && verify_min_value(CMSSamplingGrain, 1, "CMSSamplingGrain");
  2300     status = status && verify_interval(CMS_SweepWeight, 0, 100, "CMS_SweepWeight");
  2301     status = status && verify_interval(CMS_FLSWeight, 0, 100, "CMS_FLSWeight");
  2303     status = status && verify_interval(FLSCoalescePolicy, 0, 4, "FLSCoalescePolicy");
  2305     status = status && verify_min_value(CMSRescanMultiple, 1, "CMSRescanMultiple");
  2306     status = status && verify_min_value(CMSConcMarkMultiple, 1, "CMSConcMarkMultiple");
  2308     status = status && verify_interval(CMSPrecleanIter, 0, 9, "CMSPrecleanIter");
  2309     status = status && verify_min_value(CMSPrecleanDenominator, 1, "CMSPrecleanDenominator");
  2310     status = status && verify_interval(CMSPrecleanNumerator, 0, CMSPrecleanDenominator - 1, "CMSPrecleanNumerator");
  2312     status = status && verify_percentage(CMSBootstrapOccupancy, "CMSBootstrapOccupancy");
  2314     status = status && verify_min_value(CMSPrecleanThreshold, 100, "CMSPrecleanThreshold");
  2316     status = status && verify_percentage(CMSScheduleRemarkEdenPenetration, "CMSScheduleRemarkEdenPenetration");
  2317     status = status && verify_min_value(CMSScheduleRemarkSamplingRatio, 1, "CMSScheduleRemarkSamplingRatio");
  2318     status = status && verify_min_value(CMSBitMapYieldQuantum, 1, "CMSBitMapYieldQuantum");
  2319     status = status && verify_percentage(CMSTriggerRatio, "CMSTriggerRatio");
  2320     status = status && verify_percentage(CMSIsTooFullPercentage, "CMSIsTooFullPercentage");
  2323   if (UseParallelGC || UseParallelOldGC) {
  2324     status = status && verify_interval(ParallelOldDeadWoodLimiterMean, 0, 100, "ParallelOldDeadWoodLimiterMean");
  2325     status = status && verify_interval(ParallelOldDeadWoodLimiterStdDev, 0, 100, "ParallelOldDeadWoodLimiterStdDev");
  2327     status = status && verify_percentage(YoungGenerationSizeIncrement, "YoungGenerationSizeIncrement");
  2328     status = status && verify_percentage(TenuredGenerationSizeIncrement, "TenuredGenerationSizeIncrement");
  2330     status = status && verify_min_value(YoungGenerationSizeSupplementDecay, 1, "YoungGenerationSizeSupplementDecay");
  2331     status = status && verify_min_value(TenuredGenerationSizeSupplementDecay, 1, "TenuredGenerationSizeSupplementDecay");
  2333     status = status && verify_min_value(ParGCCardsPerStrideChunk, 1, "ParGCCardsPerStrideChunk");
  2335     status = status && verify_min_value(ParallelOldGCSplitInterval, 0, "ParallelOldGCSplitInterval");
  2337 #endif // INCLUDE_ALL_GCS
  2339   status = status && verify_interval(RefDiscoveryPolicy,
  2340                                      ReferenceProcessor::DiscoveryPolicyMin,
  2341                                      ReferenceProcessor::DiscoveryPolicyMax,
  2342                                      "RefDiscoveryPolicy");
  2344   // Limit the lower bound of this flag to 1 as it is used in a division
  2345   // expression.
  2346   status = status && verify_interval(TLABWasteTargetPercent,
  2347                                      1, 100, "TLABWasteTargetPercent");
  2349   status = status && verify_object_alignment();
  2351   status = status && verify_interval(CompressedClassSpaceSize, 1*M, 3*G,
  2352                                       "CompressedClassSpaceSize");
  2354   status = status && verify_interval(MarkStackSizeMax,
  2355                                   1, (max_jint - 1), "MarkStackSizeMax");
  2356   status = status && verify_interval(NUMAChunkResizeWeight, 0, 100, "NUMAChunkResizeWeight");
  2358   status = status && verify_min_value(LogEventsBufferEntries, 1, "LogEventsBufferEntries");
  2360   status = status && verify_min_value(HeapSizePerGCThread, (uintx) os::vm_page_size(), "HeapSizePerGCThread");
  2362   status = status && verify_min_value(GCTaskTimeStampEntries, 1, "GCTaskTimeStampEntries");
  2364   status = status && verify_percentage(ParallelGCBufferWastePct, "ParallelGCBufferWastePct");
  2365   status = status && verify_interval(TargetPLABWastePct, 1, 100, "TargetPLABWastePct");
  2367   status = status && verify_min_value(ParGCStridesPerThread, 1, "ParGCStridesPerThread");
  2369   status = status && verify_min_value(MinRAMFraction, 1, "MinRAMFraction");
  2370   status = status && verify_min_value(InitialRAMFraction, 1, "InitialRAMFraction");
  2371   status = status && verify_min_value(MaxRAMFraction, 1, "MaxRAMFraction");
  2372   status = status && verify_min_value(DefaultMaxRAMFraction, 1, "DefaultMaxRAMFraction");
  2374   status = status && verify_interval(AdaptiveTimeWeight, 0, 100, "AdaptiveTimeWeight");
  2375   status = status && verify_min_value(AdaptiveSizeDecrementScaleFactor, 1, "AdaptiveSizeDecrementScaleFactor");
  2377   status = status && verify_interval(TLABAllocationWeight, 0, 100, "TLABAllocationWeight");
  2378   status = status && verify_min_value(MinTLABSize, 1, "MinTLABSize");
  2379   status = status && verify_min_value(TLABRefillWasteFraction, 1, "TLABRefillWasteFraction");
  2381   status = status && verify_percentage(YoungGenerationSizeSupplement, "YoungGenerationSizeSupplement");
  2382   status = status && verify_percentage(TenuredGenerationSizeSupplement, "TenuredGenerationSizeSupplement");
  2384   // the "age" field in the oop header is 4 bits; do not want to pull in markOop.hpp
  2385   // just for that, so hardcode here.
  2386   status = status && verify_interval(MaxTenuringThreshold, 0, 15, "MaxTenuringThreshold");
  2387   status = status && verify_interval(InitialTenuringThreshold, 0, MaxTenuringThreshold, "MaxTenuringThreshold");
  2388   status = status && verify_percentage(TargetSurvivorRatio, "TargetSurvivorRatio");
  2389   status = status && verify_percentage(MarkSweepDeadRatio, "MarkSweepDeadRatio");
  2391   status = status && verify_min_value(MarkSweepAlwaysCompactCount, 1, "MarkSweepAlwaysCompactCount");
  2393   if (PrintNMTStatistics) {
  2394 #if INCLUDE_NMT
  2395     if (MemTracker::tracking_level() == NMT_off) {
  2396 #endif // INCLUDE_NMT
  2397       warning("PrintNMTStatistics is disabled, because native memory tracking is not enabled");
  2398       PrintNMTStatistics = false;
  2399 #if INCLUDE_NMT
  2401 #endif
  2404   // Need to limit the extent of the padding to reasonable size.
  2405   // 8K is well beyond the reasonable HW cache line size, even with the
  2406   // aggressive prefetching, while still leaving the room for segregating
  2407   // among the distinct pages.
  2408   if (ContendedPaddingWidth < 0 || ContendedPaddingWidth > 8192) {
  2409     jio_fprintf(defaultStream::error_stream(),
  2410                 "ContendedPaddingWidth=" INTX_FORMAT " must be in between %d and %d\n",
  2411                 ContendedPaddingWidth, 0, 8192);
  2412     status = false;
  2415   // Need to enforce the padding not to break the existing field alignments.
  2416   // It is sufficient to check against the largest type size.
  2417   if ((ContendedPaddingWidth % BytesPerLong) != 0) {
  2418     jio_fprintf(defaultStream::error_stream(),
  2419                 "ContendedPaddingWidth=" INTX_FORMAT " must be a multiple of %d\n",
  2420                 ContendedPaddingWidth, BytesPerLong);
  2421     status = false;
  2424   // Check lower bounds of the code cache
  2425   // Template Interpreter code is approximately 3X larger in debug builds.
  2426   uint min_code_cache_size = (CodeCacheMinimumUseSpace DEBUG_ONLY(* 3)) + CodeCacheMinimumFreeSpace;
  2427   if (InitialCodeCacheSize < (uintx)os::vm_page_size()) {
  2428     jio_fprintf(defaultStream::error_stream(),
  2429                 "Invalid InitialCodeCacheSize=%dK. Must be at least %dK.\n", InitialCodeCacheSize/K,
  2430                 os::vm_page_size()/K);
  2431     status = false;
  2432   } else if (ReservedCodeCacheSize < InitialCodeCacheSize) {
  2433     jio_fprintf(defaultStream::error_stream(),
  2434                 "Invalid ReservedCodeCacheSize: %dK. Must be at least InitialCodeCacheSize=%dK.\n",
  2435                 ReservedCodeCacheSize/K, InitialCodeCacheSize/K);
  2436     status = false;
  2437   } else if (ReservedCodeCacheSize < min_code_cache_size) {
  2438     jio_fprintf(defaultStream::error_stream(),
  2439                 "Invalid ReservedCodeCacheSize=%dK. Must be at least %uK.\n", ReservedCodeCacheSize/K,
  2440                 min_code_cache_size/K);
  2441     status = false;
  2442   } else if (ReservedCodeCacheSize > 2*G) {
  2443     // Code cache size larger than MAXINT is not supported.
  2444     jio_fprintf(defaultStream::error_stream(),
  2445                 "Invalid ReservedCodeCacheSize=%dM. Must be at most %uM.\n", ReservedCodeCacheSize/M,
  2446                 (2*G)/M);
  2447     status = false;
  2450   status &= verify_interval(NmethodSweepFraction, 1, ReservedCodeCacheSize/K, "NmethodSweepFraction");
  2451   status &= verify_interval(NmethodSweepActivity, 0, 2000, "NmethodSweepActivity");
  2453   if (!FLAG_IS_DEFAULT(CICompilerCount) && !FLAG_IS_DEFAULT(CICompilerCountPerCPU) && CICompilerCountPerCPU) {
  2454     warning("The VM option CICompilerCountPerCPU overrides CICompilerCount.");
  2457 #ifdef COMPILER1
  2458   status &= verify_interval(SafepointPollOffset, 0, os::vm_page_size() - BytesPerWord, "SafepointPollOffset");
  2459 #endif
  2461   return status;
  2464 bool Arguments::is_bad_option(const JavaVMOption* option, jboolean ignore,
  2465   const char* option_type) {
  2466   if (ignore) return false;
  2468   const char* spacer = " ";
  2469   if (option_type == NULL) {
  2470     option_type = ++spacer; // Set both to the empty string.
  2473   if (os::obsolete_option(option)) {
  2474     jio_fprintf(defaultStream::error_stream(),
  2475                 "Obsolete %s%soption: %s\n", option_type, spacer,
  2476       option->optionString);
  2477     return false;
  2478   } else {
  2479     jio_fprintf(defaultStream::error_stream(),
  2480                 "Unrecognized %s%soption: %s\n", option_type, spacer,
  2481       option->optionString);
  2482     return true;
  2486 static const char* user_assertion_options[] = {
  2487   "-da", "-ea", "-disableassertions", "-enableassertions", 0
  2488 };
  2490 static const char* system_assertion_options[] = {
  2491   "-dsa", "-esa", "-disablesystemassertions", "-enablesystemassertions", 0
  2492 };
  2494 // Return true if any of the strings in null-terminated array 'names' matches.
  2495 // If tail_allowed is true, then the tail must begin with a colon; otherwise,
  2496 // the option must match exactly.
  2497 static bool match_option(const JavaVMOption* option, const char** names, const char** tail,
  2498   bool tail_allowed) {
  2499   for (/* empty */; *names != NULL; ++names) {
  2500     if (match_option(option, *names, tail)) {
  2501       if (**tail == '\0' || tail_allowed && **tail == ':') {
  2502         return true;
  2506   return false;
  2509 bool Arguments::parse_uintx(const char* value,
  2510                             uintx* uintx_arg,
  2511                             uintx min_size) {
  2513   // Check the sign first since atomull() parses only unsigned values.
  2514   bool value_is_positive = !(*value == '-');
  2516   if (value_is_positive) {
  2517     julong n;
  2518     bool good_return = atomull(value, &n);
  2519     if (good_return) {
  2520       bool above_minimum = n >= min_size;
  2521       bool value_is_too_large = n > max_uintx;
  2523       if (above_minimum && !value_is_too_large) {
  2524         *uintx_arg = n;
  2525         return true;
  2529   return false;
  2532 Arguments::ArgsRange Arguments::parse_memory_size(const char* s,
  2533                                                   julong* long_arg,
  2534                                                   julong min_size) {
  2535   if (!atomull(s, long_arg)) return arg_unreadable;
  2536   return check_memory_size(*long_arg, min_size);
  2539 // Parse JavaVMInitArgs structure
  2541 jint Arguments::parse_vm_init_args(const JavaVMInitArgs* args) {
  2542   // For components of the system classpath.
  2543   SysClassPath scp(Arguments::get_sysclasspath());
  2544   bool scp_assembly_required = false;
  2546   // Save default settings for some mode flags
  2547   Arguments::_AlwaysCompileLoopMethods = AlwaysCompileLoopMethods;
  2548   Arguments::_UseOnStackReplacement    = UseOnStackReplacement;
  2549   Arguments::_ClipInlining             = ClipInlining;
  2550   Arguments::_BackgroundCompilation    = BackgroundCompilation;
  2552   // Setup flags for mixed which is the default
  2553   set_mode_flags(_mixed);
  2555   // Parse JAVA_TOOL_OPTIONS environment variable (if present)
  2556   jint result = parse_java_tool_options_environment_variable(&scp, &scp_assembly_required);
  2557   if (result != JNI_OK) {
  2558     return result;
  2561   // Parse JavaVMInitArgs structure passed in
  2562   result = parse_each_vm_init_arg(args, &scp, &scp_assembly_required, Flag::COMMAND_LINE);
  2563   if (result != JNI_OK) {
  2564     return result;
  2567   // Parse _JAVA_OPTIONS environment variable (if present) (mimics classic VM)
  2568   result = parse_java_options_environment_variable(&scp, &scp_assembly_required);
  2569   if (result != JNI_OK) {
  2570     return result;
  2573   // Do final processing now that all arguments have been parsed
  2574   result = finalize_vm_init_args(&scp, scp_assembly_required);
  2575   if (result != JNI_OK) {
  2576     return result;
  2579   return JNI_OK;
  2582 // Checks if name in command-line argument -agent{lib,path}:name[=options]
  2583 // represents a valid HPROF of JDWP agent.  is_path==true denotes that we
  2584 // are dealing with -agentpath (case where name is a path), otherwise with
  2585 // -agentlib
  2586 bool valid_hprof_or_jdwp_agent(char *name, bool is_path) {
  2587   char *_name;
  2588   const char *_hprof = "hprof", *_jdwp = "jdwp";
  2589   size_t _len_hprof, _len_jdwp, _len_prefix;
  2591   if (is_path) {
  2592     if ((_name = strrchr(name, (int) *os::file_separator())) == NULL) {
  2593       return false;
  2596     _name++;  // skip past last path separator
  2597     _len_prefix = strlen(JNI_LIB_PREFIX);
  2599     if (strncmp(_name, JNI_LIB_PREFIX, _len_prefix) != 0) {
  2600       return false;
  2603     _name += _len_prefix;
  2604     _len_hprof = strlen(_hprof);
  2605     _len_jdwp = strlen(_jdwp);
  2607     if (strncmp(_name, _hprof, _len_hprof) == 0) {
  2608       _name += _len_hprof;
  2610     else if (strncmp(_name, _jdwp, _len_jdwp) == 0) {
  2611       _name += _len_jdwp;
  2613     else {
  2614       return false;
  2617     if (strcmp(_name, JNI_LIB_SUFFIX) != 0) {
  2618       return false;
  2621     return true;
  2624   if (strcmp(name, _hprof) == 0 || strcmp(name, _jdwp) == 0) {
  2625     return true;
  2628   return false;
  2631 jint Arguments::parse_each_vm_init_arg(const JavaVMInitArgs* args,
  2632                                        SysClassPath* scp_p,
  2633                                        bool* scp_assembly_required_p,
  2634                                        Flag::Flags origin) {
  2635   // Remaining part of option string
  2636   const char* tail;
  2638   // iterate over arguments
  2639   for (int index = 0; index < args->nOptions; index++) {
  2640     bool is_absolute_path = false;  // for -agentpath vs -agentlib
  2642     const JavaVMOption* option = args->options + index;
  2644     if (!match_option(option, "-Djava.class.path", &tail) &&
  2645         !match_option(option, "-Dsun.java.command", &tail) &&
  2646         !match_option(option, "-Dsun.java.launcher", &tail)) {
  2648         // add all jvm options to the jvm_args string. This string
  2649         // is used later to set the java.vm.args PerfData string constant.
  2650         // the -Djava.class.path and the -Dsun.java.command options are
  2651         // omitted from jvm_args string as each have their own PerfData
  2652         // string constant object.
  2653         build_jvm_args(option->optionString);
  2656     // -verbose:[class/gc/jni]
  2657     if (match_option(option, "-verbose", &tail)) {
  2658       if (!strcmp(tail, ":class") || !strcmp(tail, "")) {
  2659         FLAG_SET_CMDLINE(bool, TraceClassLoading, true);
  2660         FLAG_SET_CMDLINE(bool, TraceClassUnloading, true);
  2661       } else if (!strcmp(tail, ":gc")) {
  2662         FLAG_SET_CMDLINE(bool, PrintGC, true);
  2663       } else if (!strcmp(tail, ":jni")) {
  2664         FLAG_SET_CMDLINE(bool, PrintJNIResolving, true);
  2666     // -da / -ea / -disableassertions / -enableassertions
  2667     // These accept an optional class/package name separated by a colon, e.g.,
  2668     // -da:java.lang.Thread.
  2669     } else if (match_option(option, user_assertion_options, &tail, true)) {
  2670       bool enable = option->optionString[1] == 'e';     // char after '-' is 'e'
  2671       if (*tail == '\0') {
  2672         JavaAssertions::setUserClassDefault(enable);
  2673       } else {
  2674         assert(*tail == ':', "bogus match by match_option()");
  2675         JavaAssertions::addOption(tail + 1, enable);
  2677     // -dsa / -esa / -disablesystemassertions / -enablesystemassertions
  2678     } else if (match_option(option, system_assertion_options, &tail, false)) {
  2679       bool enable = option->optionString[1] == 'e';     // char after '-' is 'e'
  2680       JavaAssertions::setSystemClassDefault(enable);
  2681     // -bootclasspath:
  2682     } else if (match_option(option, "-Xbootclasspath:", &tail)) {
  2683       scp_p->reset_path(tail);
  2684       *scp_assembly_required_p = true;
  2685     // -bootclasspath/a:
  2686     } else if (match_option(option, "-Xbootclasspath/a:", &tail)) {
  2687       scp_p->add_suffix(tail);
  2688       *scp_assembly_required_p = true;
  2689     // -bootclasspath/p:
  2690     } else if (match_option(option, "-Xbootclasspath/p:", &tail)) {
  2691       scp_p->add_prefix(tail);
  2692       *scp_assembly_required_p = true;
  2693     // -Xrun
  2694     } else if (match_option(option, "-Xrun", &tail)) {
  2695       if (tail != NULL) {
  2696         const char* pos = strchr(tail, ':');
  2697         size_t len = (pos == NULL) ? strlen(tail) : pos - tail;
  2698         char* name = (char*)memcpy(NEW_C_HEAP_ARRAY(char, len + 1, mtInternal), tail, len);
  2699         name[len] = '\0';
  2701         char *options = NULL;
  2702         if(pos != NULL) {
  2703           size_t len2 = strlen(pos+1) + 1; // options start after ':'.  Final zero must be copied.
  2704           options = (char*)memcpy(NEW_C_HEAP_ARRAY(char, len2, mtInternal), pos+1, len2);
  2706 #if !INCLUDE_JVMTI
  2707         if ((strcmp(name, "hprof") == 0) || (strcmp(name, "jdwp") == 0)) {
  2708           jio_fprintf(defaultStream::error_stream(),
  2709             "Profiling and debugging agents are not supported in this VM\n");
  2710           return JNI_ERR;
  2712 #endif // !INCLUDE_JVMTI
  2713         add_init_library(name, options);
  2715     // -agentlib and -agentpath
  2716     } else if (match_option(option, "-agentlib:", &tail) ||
  2717           (is_absolute_path = match_option(option, "-agentpath:", &tail))) {
  2718       if(tail != NULL) {
  2719         const char* pos = strchr(tail, '=');
  2720         size_t len = (pos == NULL) ? strlen(tail) : pos - tail;
  2721         char* name = strncpy(NEW_C_HEAP_ARRAY(char, len + 1, mtInternal), tail, len);
  2722         name[len] = '\0';
  2724         char *options = NULL;
  2725         if(pos != NULL) {
  2726           options = strcpy(NEW_C_HEAP_ARRAY(char, strlen(pos + 1) + 1, mtInternal), pos + 1);
  2728 #if !INCLUDE_JVMTI
  2729         if (valid_hprof_or_jdwp_agent(name, is_absolute_path)) {
  2730           jio_fprintf(defaultStream::error_stream(),
  2731             "Profiling and debugging agents are not supported in this VM\n");
  2732           return JNI_ERR;
  2734 #endif // !INCLUDE_JVMTI
  2735         add_init_agent(name, options, is_absolute_path);
  2737     // -javaagent
  2738     } else if (match_option(option, "-javaagent:", &tail)) {
  2739 #if !INCLUDE_JVMTI
  2740       jio_fprintf(defaultStream::error_stream(),
  2741         "Instrumentation agents are not supported in this VM\n");
  2742       return JNI_ERR;
  2743 #else
  2744       if(tail != NULL) {
  2745         char *options = strcpy(NEW_C_HEAP_ARRAY(char, strlen(tail) + 1, mtInternal), tail);
  2746         add_init_agent("instrument", options, false);
  2748 #endif // !INCLUDE_JVMTI
  2749     // -Xnoclassgc
  2750     } else if (match_option(option, "-Xnoclassgc", &tail)) {
  2751       FLAG_SET_CMDLINE(bool, ClassUnloading, false);
  2752     // -Xincgc: i-CMS
  2753     } else if (match_option(option, "-Xincgc", &tail)) {
  2754       FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, true);
  2755       FLAG_SET_CMDLINE(bool, CMSIncrementalMode, true);
  2756     // -Xnoincgc: no i-CMS
  2757     } else if (match_option(option, "-Xnoincgc", &tail)) {
  2758       FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, false);
  2759       FLAG_SET_CMDLINE(bool, CMSIncrementalMode, false);
  2760     // -Xconcgc
  2761     } else if (match_option(option, "-Xconcgc", &tail)) {
  2762       FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, true);
  2763     // -Xnoconcgc
  2764     } else if (match_option(option, "-Xnoconcgc", &tail)) {
  2765       FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, false);
  2766     // -Xbatch
  2767     } else if (match_option(option, "-Xbatch", &tail)) {
  2768       FLAG_SET_CMDLINE(bool, BackgroundCompilation, false);
  2769     // -Xmn for compatibility with other JVM vendors
  2770     } else if (match_option(option, "-Xmn", &tail)) {
  2771       julong long_initial_young_size = 0;
  2772       ArgsRange errcode = parse_memory_size(tail, &long_initial_young_size, 1);
  2773       if (errcode != arg_in_range) {
  2774         jio_fprintf(defaultStream::error_stream(),
  2775                     "Invalid initial young generation size: %s\n", option->optionString);
  2776         describe_range_error(errcode);
  2777         return JNI_EINVAL;
  2779       FLAG_SET_CMDLINE(uintx, MaxNewSize, (uintx)long_initial_young_size);
  2780       FLAG_SET_CMDLINE(uintx, NewSize, (uintx)long_initial_young_size);
  2781     // -Xms
  2782     } else if (match_option(option, "-Xms", &tail)) {
  2783       julong long_initial_heap_size = 0;
  2784       // an initial heap size of 0 means automatically determine
  2785       ArgsRange errcode = parse_memory_size(tail, &long_initial_heap_size, 0);
  2786       if (errcode != arg_in_range) {
  2787         jio_fprintf(defaultStream::error_stream(),
  2788                     "Invalid initial heap size: %s\n", option->optionString);
  2789         describe_range_error(errcode);
  2790         return JNI_EINVAL;
  2792       set_min_heap_size((uintx)long_initial_heap_size);
  2793       // Currently the minimum size and the initial heap sizes are the same.
  2794       // Can be overridden with -XX:InitialHeapSize.
  2795       FLAG_SET_CMDLINE(uintx, InitialHeapSize, (uintx)long_initial_heap_size);
  2796     // -Xmx
  2797     } else if (match_option(option, "-Xmx", &tail) || match_option(option, "-XX:MaxHeapSize=", &tail)) {
  2798       julong long_max_heap_size = 0;
  2799       ArgsRange errcode = parse_memory_size(tail, &long_max_heap_size, 1);
  2800       if (errcode != arg_in_range) {
  2801         jio_fprintf(defaultStream::error_stream(),
  2802                     "Invalid maximum heap size: %s\n", option->optionString);
  2803         describe_range_error(errcode);
  2804         return JNI_EINVAL;
  2806       FLAG_SET_CMDLINE(uintx, MaxHeapSize, (uintx)long_max_heap_size);
  2807     // Xmaxf
  2808     } else if (match_option(option, "-Xmaxf", &tail)) {
  2809       char* err;
  2810       int maxf = (int)(strtod(tail, &err) * 100);
  2811       if (*err != '\0' || *tail == '\0' || maxf < 0 || maxf > 100) {
  2812         jio_fprintf(defaultStream::error_stream(),
  2813                     "Bad max heap free percentage size: %s\n",
  2814                     option->optionString);
  2815         return JNI_EINVAL;
  2816       } else {
  2817         FLAG_SET_CMDLINE(uintx, MaxHeapFreeRatio, maxf);
  2819     // Xminf
  2820     } else if (match_option(option, "-Xminf", &tail)) {
  2821       char* err;
  2822       int minf = (int)(strtod(tail, &err) * 100);
  2823       if (*err != '\0' || *tail == '\0' || minf < 0 || minf > 100) {
  2824         jio_fprintf(defaultStream::error_stream(),
  2825                     "Bad min heap free percentage size: %s\n",
  2826                     option->optionString);
  2827         return JNI_EINVAL;
  2828       } else {
  2829         FLAG_SET_CMDLINE(uintx, MinHeapFreeRatio, minf);
  2831     // -Xss
  2832     } else if (match_option(option, "-Xss", &tail)) {
  2833       julong long_ThreadStackSize = 0;
  2834       ArgsRange errcode = parse_memory_size(tail, &long_ThreadStackSize, 1000);
  2835       if (errcode != arg_in_range) {
  2836         jio_fprintf(defaultStream::error_stream(),
  2837                     "Invalid thread stack size: %s\n", option->optionString);
  2838         describe_range_error(errcode);
  2839         return JNI_EINVAL;
  2841       // Internally track ThreadStackSize in units of 1024 bytes.
  2842       FLAG_SET_CMDLINE(intx, ThreadStackSize,
  2843                               round_to((int)long_ThreadStackSize, K) / K);
  2844     // -Xoss
  2845     } else if (match_option(option, "-Xoss", &tail)) {
  2846           // HotSpot does not have separate native and Java stacks, ignore silently for compatibility
  2847     } else if (match_option(option, "-XX:CodeCacheExpansionSize=", &tail)) {
  2848       julong long_CodeCacheExpansionSize = 0;
  2849       ArgsRange errcode = parse_memory_size(tail, &long_CodeCacheExpansionSize, os::vm_page_size());
  2850       if (errcode != arg_in_range) {
  2851         jio_fprintf(defaultStream::error_stream(),
  2852                    "Invalid argument: %s. Must be at least %luK.\n", option->optionString,
  2853                    os::vm_page_size()/K);
  2854         return JNI_EINVAL;
  2856       FLAG_SET_CMDLINE(uintx, CodeCacheExpansionSize, (uintx)long_CodeCacheExpansionSize);
  2857     } else if (match_option(option, "-Xmaxjitcodesize", &tail) ||
  2858                match_option(option, "-XX:ReservedCodeCacheSize=", &tail)) {
  2859       julong long_ReservedCodeCacheSize = 0;
  2861       ArgsRange errcode = parse_memory_size(tail, &long_ReservedCodeCacheSize, 1);
  2862       if (errcode != arg_in_range) {
  2863         jio_fprintf(defaultStream::error_stream(),
  2864                     "Invalid maximum code cache size: %s.\n", option->optionString);
  2865         return JNI_EINVAL;
  2867       FLAG_SET_CMDLINE(uintx, ReservedCodeCacheSize, (uintx)long_ReservedCodeCacheSize);
  2868       //-XX:IncreaseFirstTierCompileThresholdAt=
  2869       } else if (match_option(option, "-XX:IncreaseFirstTierCompileThresholdAt=", &tail)) {
  2870         uintx uint_IncreaseFirstTierCompileThresholdAt = 0;
  2871         if (!parse_uintx(tail, &uint_IncreaseFirstTierCompileThresholdAt, 0) || uint_IncreaseFirstTierCompileThresholdAt > 99) {
  2872           jio_fprintf(defaultStream::error_stream(),
  2873                       "Invalid value for IncreaseFirstTierCompileThresholdAt: %s. Should be between 0 and 99.\n",
  2874                       option->optionString);
  2875           return JNI_EINVAL;
  2877         FLAG_SET_CMDLINE(uintx, IncreaseFirstTierCompileThresholdAt, (uintx)uint_IncreaseFirstTierCompileThresholdAt);
  2878     // -green
  2879     } else if (match_option(option, "-green", &tail)) {
  2880       jio_fprintf(defaultStream::error_stream(),
  2881                   "Green threads support not available\n");
  2882           return JNI_EINVAL;
  2883     // -native
  2884     } else if (match_option(option, "-native", &tail)) {
  2885           // HotSpot always uses native threads, ignore silently for compatibility
  2886     // -Xsqnopause
  2887     } else if (match_option(option, "-Xsqnopause", &tail)) {
  2888           // EVM option, ignore silently for compatibility
  2889     // -Xrs
  2890     } else if (match_option(option, "-Xrs", &tail)) {
  2891           // Classic/EVM option, new functionality
  2892       FLAG_SET_CMDLINE(bool, ReduceSignalUsage, true);
  2893     } else if (match_option(option, "-Xusealtsigs", &tail)) {
  2894           // change default internal VM signals used - lower case for back compat
  2895       FLAG_SET_CMDLINE(bool, UseAltSigs, true);
  2896     // -Xoptimize
  2897     } else if (match_option(option, "-Xoptimize", &tail)) {
  2898           // EVM option, ignore silently for compatibility
  2899     // -Xprof
  2900     } else if (match_option(option, "-Xprof", &tail)) {
  2901 #if INCLUDE_FPROF
  2902       _has_profile = true;
  2903 #else // INCLUDE_FPROF
  2904       jio_fprintf(defaultStream::error_stream(),
  2905         "Flat profiling is not supported in this VM.\n");
  2906       return JNI_ERR;
  2907 #endif // INCLUDE_FPROF
  2908     // -Xconcurrentio
  2909     } else if (match_option(option, "-Xconcurrentio", &tail)) {
  2910       FLAG_SET_CMDLINE(bool, UseLWPSynchronization, true);
  2911       FLAG_SET_CMDLINE(bool, BackgroundCompilation, false);
  2912       FLAG_SET_CMDLINE(intx, DeferThrSuspendLoopCount, 1);
  2913       FLAG_SET_CMDLINE(bool, UseTLAB, false);
  2914       FLAG_SET_CMDLINE(uintx, NewSizeThreadIncrease, 16 * K);  // 20Kb per thread added to new generation
  2916       // -Xinternalversion
  2917     } else if (match_option(option, "-Xinternalversion", &tail)) {
  2918       jio_fprintf(defaultStream::output_stream(), "%s\n",
  2919                   VM_Version::internal_vm_info_string());
  2920       vm_exit(0);
  2921 #ifndef PRODUCT
  2922     // -Xprintflags
  2923     } else if (match_option(option, "-Xprintflags", &tail)) {
  2924       CommandLineFlags::printFlags(tty, false);
  2925       vm_exit(0);
  2926 #endif
  2927     // -D
  2928     } else if (match_option(option, "-D", &tail)) {
  2929       if (!add_property(tail)) {
  2930         return JNI_ENOMEM;
  2932       // Out of the box management support
  2933       if (match_option(option, "-Dcom.sun.management", &tail)) {
  2934 #if INCLUDE_MANAGEMENT
  2935         FLAG_SET_CMDLINE(bool, ManagementServer, true);
  2936 #else
  2937         jio_fprintf(defaultStream::output_stream(),
  2938           "-Dcom.sun.management is not supported in this VM.\n");
  2939         return JNI_ERR;
  2940 #endif
  2942     // -Xint
  2943     } else if (match_option(option, "-Xint", &tail)) {
  2944           set_mode_flags(_int);
  2945     // -Xmixed
  2946     } else if (match_option(option, "-Xmixed", &tail)) {
  2947           set_mode_flags(_mixed);
  2948     // -Xcomp
  2949     } else if (match_option(option, "-Xcomp", &tail)) {
  2950       // for testing the compiler; turn off all flags that inhibit compilation
  2951           set_mode_flags(_comp);
  2952     // -Xshare:dump
  2953     } else if (match_option(option, "-Xshare:dump", &tail)) {
  2954       FLAG_SET_CMDLINE(bool, DumpSharedSpaces, true);
  2955       set_mode_flags(_int);     // Prevent compilation, which creates objects
  2956     // -Xshare:on
  2957     } else if (match_option(option, "-Xshare:on", &tail)) {
  2958       FLAG_SET_CMDLINE(bool, UseSharedSpaces, true);
  2959       FLAG_SET_CMDLINE(bool, RequireSharedSpaces, true);
  2960     // -Xshare:auto
  2961     } else if (match_option(option, "-Xshare:auto", &tail)) {
  2962       FLAG_SET_CMDLINE(bool, UseSharedSpaces, true);
  2963       FLAG_SET_CMDLINE(bool, RequireSharedSpaces, false);
  2964     // -Xshare:off
  2965     } else if (match_option(option, "-Xshare:off", &tail)) {
  2966       FLAG_SET_CMDLINE(bool, UseSharedSpaces, false);
  2967       FLAG_SET_CMDLINE(bool, RequireSharedSpaces, false);
  2968     // -Xverify
  2969     } else if (match_option(option, "-Xverify", &tail)) {
  2970       if (strcmp(tail, ":all") == 0 || strcmp(tail, "") == 0) {
  2971         FLAG_SET_CMDLINE(bool, BytecodeVerificationLocal, true);
  2972         FLAG_SET_CMDLINE(bool, BytecodeVerificationRemote, true);
  2973       } else if (strcmp(tail, ":remote") == 0) {
  2974         FLAG_SET_CMDLINE(bool, BytecodeVerificationLocal, false);
  2975         FLAG_SET_CMDLINE(bool, BytecodeVerificationRemote, true);
  2976       } else if (strcmp(tail, ":none") == 0) {
  2977         FLAG_SET_CMDLINE(bool, BytecodeVerificationLocal, false);
  2978         FLAG_SET_CMDLINE(bool, BytecodeVerificationRemote, false);
  2979       } else if (is_bad_option(option, args->ignoreUnrecognized, "verification")) {
  2980         return JNI_EINVAL;
  2982     // -Xdebug
  2983     } else if (match_option(option, "-Xdebug", &tail)) {
  2984       // note this flag has been used, then ignore
  2985       set_xdebug_mode(true);
  2986     // -Xnoagent
  2987     } else if (match_option(option, "-Xnoagent", &tail)) {
  2988       // For compatibility with classic. HotSpot refuses to load the old style agent.dll.
  2989     } else if (match_option(option, "-Xboundthreads", &tail)) {
  2990       // Bind user level threads to kernel threads (Solaris only)
  2991       FLAG_SET_CMDLINE(bool, UseBoundThreads, true);
  2992     } else if (match_option(option, "-Xloggc:", &tail)) {
  2993       // Redirect GC output to the file. -Xloggc:<filename>
  2994       // ostream_init_log(), when called will use this filename
  2995       // to initialize a fileStream.
  2996       _gc_log_filename = strdup(tail);
  2997      if (!is_filename_valid(_gc_log_filename)) {
  2998        jio_fprintf(defaultStream::output_stream(),
  2999                   "Invalid file name for use with -Xloggc: Filename can only contain the "
  3000                   "characters [A-Z][a-z][0-9]-_.%%[p|t] but it has been %s\n"
  3001                   "Note %%p or %%t can only be used once\n", _gc_log_filename);
  3002         return JNI_EINVAL;
  3004       FLAG_SET_CMDLINE(bool, PrintGC, true);
  3005       FLAG_SET_CMDLINE(bool, PrintGCTimeStamps, true);
  3007     // JNI hooks
  3008     } else if (match_option(option, "-Xcheck", &tail)) {
  3009       if (!strcmp(tail, ":jni")) {
  3010 #if !INCLUDE_JNI_CHECK
  3011         warning("JNI CHECKING is not supported in this VM");
  3012 #else
  3013         CheckJNICalls = true;
  3014 #endif // INCLUDE_JNI_CHECK
  3015       } else if (is_bad_option(option, args->ignoreUnrecognized,
  3016                                      "check")) {
  3017         return JNI_EINVAL;
  3019     } else if (match_option(option, "vfprintf", &tail)) {
  3020       _vfprintf_hook = CAST_TO_FN_PTR(vfprintf_hook_t, option->extraInfo);
  3021     } else if (match_option(option, "exit", &tail)) {
  3022       _exit_hook = CAST_TO_FN_PTR(exit_hook_t, option->extraInfo);
  3023     } else if (match_option(option, "abort", &tail)) {
  3024       _abort_hook = CAST_TO_FN_PTR(abort_hook_t, option->extraInfo);
  3025     // -XX:+AggressiveHeap
  3026     } else if (match_option(option, "-XX:+AggressiveHeap", &tail)) {
  3028       // This option inspects the machine and attempts to set various
  3029       // parameters to be optimal for long-running, memory allocation
  3030       // intensive jobs.  It is intended for machines with large
  3031       // amounts of cpu and memory.
  3033       // initHeapSize is needed since _initial_heap_size is 4 bytes on a 32 bit
  3034       // VM, but we may not be able to represent the total physical memory
  3035       // available (like having 8gb of memory on a box but using a 32bit VM).
  3036       // Thus, we need to make sure we're using a julong for intermediate
  3037       // calculations.
  3038       julong initHeapSize;
  3039       julong total_memory = os::physical_memory();
  3041       if (total_memory < (julong)256*M) {
  3042         jio_fprintf(defaultStream::error_stream(),
  3043                     "You need at least 256mb of memory to use -XX:+AggressiveHeap\n");
  3044         vm_exit(1);
  3047       // The heap size is half of available memory, or (at most)
  3048       // all of possible memory less 160mb (leaving room for the OS
  3049       // when using ISM).  This is the maximum; because adaptive sizing
  3050       // is turned on below, the actual space used may be smaller.
  3052       initHeapSize = MIN2(total_memory / (julong)2,
  3053                           total_memory - (julong)160*M);
  3055       initHeapSize = limit_by_allocatable_memory(initHeapSize);
  3057       if (FLAG_IS_DEFAULT(MaxHeapSize)) {
  3058          FLAG_SET_CMDLINE(uintx, MaxHeapSize, initHeapSize);
  3059          FLAG_SET_CMDLINE(uintx, InitialHeapSize, initHeapSize);
  3060          // Currently the minimum size and the initial heap sizes are the same.
  3061          set_min_heap_size(initHeapSize);
  3063       if (FLAG_IS_DEFAULT(NewSize)) {
  3064          // Make the young generation 3/8ths of the total heap.
  3065          FLAG_SET_CMDLINE(uintx, NewSize,
  3066                                 ((julong)MaxHeapSize / (julong)8) * (julong)3);
  3067          FLAG_SET_CMDLINE(uintx, MaxNewSize, NewSize);
  3070 #ifndef _ALLBSD_SOURCE  // UseLargePages is not yet supported on BSD.
  3071       FLAG_SET_DEFAULT(UseLargePages, true);
  3072 #endif
  3074       // Increase some data structure sizes for efficiency
  3075       FLAG_SET_CMDLINE(uintx, BaseFootPrintEstimate, MaxHeapSize);
  3076       FLAG_SET_CMDLINE(bool, ResizeTLAB, false);
  3077       FLAG_SET_CMDLINE(uintx, TLABSize, 256*K);
  3079       // See the OldPLABSize comment below, but replace 'after promotion'
  3080       // with 'after copying'.  YoungPLABSize is the size of the survivor
  3081       // space per-gc-thread buffers.  The default is 4kw.
  3082       FLAG_SET_CMDLINE(uintx, YoungPLABSize, 256*K);      // Note: this is in words
  3084       // OldPLABSize is the size of the buffers in the old gen that
  3085       // UseParallelGC uses to promote live data that doesn't fit in the
  3086       // survivor spaces.  At any given time, there's one for each gc thread.
  3087       // The default size is 1kw. These buffers are rarely used, since the
  3088       // survivor spaces are usually big enough.  For specjbb, however, there
  3089       // are occasions when there's lots of live data in the young gen
  3090       // and we end up promoting some of it.  We don't have a definite
  3091       // explanation for why bumping OldPLABSize helps, but the theory
  3092       // is that a bigger PLAB results in retaining something like the
  3093       // original allocation order after promotion, which improves mutator
  3094       // locality.  A minor effect may be that larger PLABs reduce the
  3095       // number of PLAB allocation events during gc.  The value of 8kw
  3096       // was arrived at by experimenting with specjbb.
  3097       FLAG_SET_CMDLINE(uintx, OldPLABSize, 8*K);  // Note: this is in words
  3099       // Enable parallel GC and adaptive generation sizing
  3100       FLAG_SET_CMDLINE(bool, UseParallelGC, true);
  3101       FLAG_SET_DEFAULT(ParallelGCThreads,
  3102                        Abstract_VM_Version::parallel_worker_threads());
  3104       // Encourage steady state memory management
  3105       FLAG_SET_CMDLINE(uintx, ThresholdTolerance, 100);
  3107       // This appears to improve mutator locality
  3108       FLAG_SET_CMDLINE(bool, ScavengeBeforeFullGC, false);
  3110       // Get around early Solaris scheduling bug
  3111       // (affinity vs other jobs on system)
  3112       // but disallow DR and offlining (5008695).
  3113       FLAG_SET_CMDLINE(bool, BindGCTaskThreadsToCPUs, true);
  3115     } else if (match_option(option, "-XX:+NeverTenure", &tail)) {
  3116       // The last option must always win.
  3117       FLAG_SET_CMDLINE(bool, AlwaysTenure, false);
  3118       FLAG_SET_CMDLINE(bool, NeverTenure, true);
  3119     } else if (match_option(option, "-XX:+AlwaysTenure", &tail)) {
  3120       // The last option must always win.
  3121       FLAG_SET_CMDLINE(bool, NeverTenure, false);
  3122       FLAG_SET_CMDLINE(bool, AlwaysTenure, true);
  3123     } else if (match_option(option, "-XX:+CMSPermGenSweepingEnabled", &tail) ||
  3124                match_option(option, "-XX:-CMSPermGenSweepingEnabled", &tail)) {
  3125       jio_fprintf(defaultStream::error_stream(),
  3126         "Please use CMSClassUnloadingEnabled in place of "
  3127         "CMSPermGenSweepingEnabled in the future\n");
  3128     } else if (match_option(option, "-XX:+UseGCTimeLimit", &tail)) {
  3129       FLAG_SET_CMDLINE(bool, UseGCOverheadLimit, true);
  3130       jio_fprintf(defaultStream::error_stream(),
  3131         "Please use -XX:+UseGCOverheadLimit in place of "
  3132         "-XX:+UseGCTimeLimit in the future\n");
  3133     } else if (match_option(option, "-XX:-UseGCTimeLimit", &tail)) {
  3134       FLAG_SET_CMDLINE(bool, UseGCOverheadLimit, false);
  3135       jio_fprintf(defaultStream::error_stream(),
  3136         "Please use -XX:-UseGCOverheadLimit in place of "
  3137         "-XX:-UseGCTimeLimit in the future\n");
  3138     // The TLE options are for compatibility with 1.3 and will be
  3139     // removed without notice in a future release.  These options
  3140     // are not to be documented.
  3141     } else if (match_option(option, "-XX:MaxTLERatio=", &tail)) {
  3142       // No longer used.
  3143     } else if (match_option(option, "-XX:+ResizeTLE", &tail)) {
  3144       FLAG_SET_CMDLINE(bool, ResizeTLAB, true);
  3145     } else if (match_option(option, "-XX:-ResizeTLE", &tail)) {
  3146       FLAG_SET_CMDLINE(bool, ResizeTLAB, false);
  3147     } else if (match_option(option, "-XX:+PrintTLE", &tail)) {
  3148       FLAG_SET_CMDLINE(bool, PrintTLAB, true);
  3149     } else if (match_option(option, "-XX:-PrintTLE", &tail)) {
  3150       FLAG_SET_CMDLINE(bool, PrintTLAB, false);
  3151     } else if (match_option(option, "-XX:TLEFragmentationRatio=", &tail)) {
  3152       // No longer used.
  3153     } else if (match_option(option, "-XX:TLESize=", &tail)) {
  3154       julong long_tlab_size = 0;
  3155       ArgsRange errcode = parse_memory_size(tail, &long_tlab_size, 1);
  3156       if (errcode != arg_in_range) {
  3157         jio_fprintf(defaultStream::error_stream(),
  3158                     "Invalid TLAB size: %s\n", option->optionString);
  3159         describe_range_error(errcode);
  3160         return JNI_EINVAL;
  3162       FLAG_SET_CMDLINE(uintx, TLABSize, long_tlab_size);
  3163     } else if (match_option(option, "-XX:TLEThreadRatio=", &tail)) {
  3164       // No longer used.
  3165     } else if (match_option(option, "-XX:+UseTLE", &tail)) {
  3166       FLAG_SET_CMDLINE(bool, UseTLAB, true);
  3167     } else if (match_option(option, "-XX:-UseTLE", &tail)) {
  3168       FLAG_SET_CMDLINE(bool, UseTLAB, false);
  3169     } else if (match_option(option, "-XX:+DisplayVMOutputToStderr", &tail)) {
  3170       FLAG_SET_CMDLINE(bool, DisplayVMOutputToStdout, false);
  3171       FLAG_SET_CMDLINE(bool, DisplayVMOutputToStderr, true);
  3172     } else if (match_option(option, "-XX:+DisplayVMOutputToStdout", &tail)) {
  3173       FLAG_SET_CMDLINE(bool, DisplayVMOutputToStderr, false);
  3174       FLAG_SET_CMDLINE(bool, DisplayVMOutputToStdout, true);
  3175     } else if (match_option(option, "-XX:+ExtendedDTraceProbes", &tail)) {
  3176 #if defined(DTRACE_ENABLED)
  3177       FLAG_SET_CMDLINE(bool, ExtendedDTraceProbes, true);
  3178       FLAG_SET_CMDLINE(bool, DTraceMethodProbes, true);
  3179       FLAG_SET_CMDLINE(bool, DTraceAllocProbes, true);
  3180       FLAG_SET_CMDLINE(bool, DTraceMonitorProbes, true);
  3181 #else // defined(DTRACE_ENABLED)
  3182       jio_fprintf(defaultStream::error_stream(),
  3183                   "ExtendedDTraceProbes flag is not applicable for this configuration\n");
  3184       return JNI_EINVAL;
  3185 #endif // defined(DTRACE_ENABLED)
  3186 #ifdef ASSERT
  3187     } else if (match_option(option, "-XX:+FullGCALot", &tail)) {
  3188       FLAG_SET_CMDLINE(bool, FullGCALot, true);
  3189       // disable scavenge before parallel mark-compact
  3190       FLAG_SET_CMDLINE(bool, ScavengeBeforeFullGC, false);
  3191 #endif
  3192     } else if (match_option(option, "-XX:CMSParPromoteBlocksToClaim=", &tail)) {
  3193       julong cms_blocks_to_claim = (julong)atol(tail);
  3194       FLAG_SET_CMDLINE(uintx, CMSParPromoteBlocksToClaim, cms_blocks_to_claim);
  3195       jio_fprintf(defaultStream::error_stream(),
  3196         "Please use -XX:OldPLABSize in place of "
  3197         "-XX:CMSParPromoteBlocksToClaim in the future\n");
  3198     } else if (match_option(option, "-XX:ParCMSPromoteBlocksToClaim=", &tail)) {
  3199       julong cms_blocks_to_claim = (julong)atol(tail);
  3200       FLAG_SET_CMDLINE(uintx, CMSParPromoteBlocksToClaim, cms_blocks_to_claim);
  3201       jio_fprintf(defaultStream::error_stream(),
  3202         "Please use -XX:OldPLABSize in place of "
  3203         "-XX:ParCMSPromoteBlocksToClaim in the future\n");
  3204     } else if (match_option(option, "-XX:ParallelGCOldGenAllocBufferSize=", &tail)) {
  3205       julong old_plab_size = 0;
  3206       ArgsRange errcode = parse_memory_size(tail, &old_plab_size, 1);
  3207       if (errcode != arg_in_range) {
  3208         jio_fprintf(defaultStream::error_stream(),
  3209                     "Invalid old PLAB size: %s\n", option->optionString);
  3210         describe_range_error(errcode);
  3211         return JNI_EINVAL;
  3213       FLAG_SET_CMDLINE(uintx, OldPLABSize, old_plab_size);
  3214       jio_fprintf(defaultStream::error_stream(),
  3215                   "Please use -XX:OldPLABSize in place of "
  3216                   "-XX:ParallelGCOldGenAllocBufferSize in the future\n");
  3217     } else if (match_option(option, "-XX:ParallelGCToSpaceAllocBufferSize=", &tail)) {
  3218       julong young_plab_size = 0;
  3219       ArgsRange errcode = parse_memory_size(tail, &young_plab_size, 1);
  3220       if (errcode != arg_in_range) {
  3221         jio_fprintf(defaultStream::error_stream(),
  3222                     "Invalid young PLAB size: %s\n", option->optionString);
  3223         describe_range_error(errcode);
  3224         return JNI_EINVAL;
  3226       FLAG_SET_CMDLINE(uintx, YoungPLABSize, young_plab_size);
  3227       jio_fprintf(defaultStream::error_stream(),
  3228                   "Please use -XX:YoungPLABSize in place of "
  3229                   "-XX:ParallelGCToSpaceAllocBufferSize in the future\n");
  3230     } else if (match_option(option, "-XX:CMSMarkStackSize=", &tail) ||
  3231                match_option(option, "-XX:G1MarkStackSize=", &tail)) {
  3232       julong stack_size = 0;
  3233       ArgsRange errcode = parse_memory_size(tail, &stack_size, 1);
  3234       if (errcode != arg_in_range) {
  3235         jio_fprintf(defaultStream::error_stream(),
  3236                     "Invalid mark stack size: %s\n", option->optionString);
  3237         describe_range_error(errcode);
  3238         return JNI_EINVAL;
  3240       FLAG_SET_CMDLINE(uintx, MarkStackSize, stack_size);
  3241     } else if (match_option(option, "-XX:CMSMarkStackSizeMax=", &tail)) {
  3242       julong max_stack_size = 0;
  3243       ArgsRange errcode = parse_memory_size(tail, &max_stack_size, 1);
  3244       if (errcode != arg_in_range) {
  3245         jio_fprintf(defaultStream::error_stream(),
  3246                     "Invalid maximum mark stack size: %s\n",
  3247                     option->optionString);
  3248         describe_range_error(errcode);
  3249         return JNI_EINVAL;
  3251       FLAG_SET_CMDLINE(uintx, MarkStackSizeMax, max_stack_size);
  3252     } else if (match_option(option, "-XX:ParallelMarkingThreads=", &tail) ||
  3253                match_option(option, "-XX:ParallelCMSThreads=", &tail)) {
  3254       uintx conc_threads = 0;
  3255       if (!parse_uintx(tail, &conc_threads, 1)) {
  3256         jio_fprintf(defaultStream::error_stream(),
  3257                     "Invalid concurrent threads: %s\n", option->optionString);
  3258         return JNI_EINVAL;
  3260       FLAG_SET_CMDLINE(uintx, ConcGCThreads, conc_threads);
  3261     } else if (match_option(option, "-XX:MaxDirectMemorySize=", &tail)) {
  3262       julong max_direct_memory_size = 0;
  3263       ArgsRange errcode = parse_memory_size(tail, &max_direct_memory_size, 0);
  3264       if (errcode != arg_in_range) {
  3265         jio_fprintf(defaultStream::error_stream(),
  3266                     "Invalid maximum direct memory size: %s\n",
  3267                     option->optionString);
  3268         describe_range_error(errcode);
  3269         return JNI_EINVAL;
  3271       FLAG_SET_CMDLINE(uintx, MaxDirectMemorySize, max_direct_memory_size);
  3272     } else if (match_option(option, "-XX:+UseVMInterruptibleIO", &tail)) {
  3273       // NOTE! In JDK 9, the UseVMInterruptibleIO flag will completely go
  3274       //       away and will cause VM initialization failures!
  3275       warning("-XX:+UseVMInterruptibleIO is obsolete and will be removed in a future release.");
  3276       FLAG_SET_CMDLINE(bool, UseVMInterruptibleIO, true);
  3277 #if !INCLUDE_MANAGEMENT
  3278     } else if (match_option(option, "-XX:+ManagementServer", &tail)) {
  3279         jio_fprintf(defaultStream::error_stream(),
  3280           "ManagementServer is not supported in this VM.\n");
  3281         return JNI_ERR;
  3282 #endif // INCLUDE_MANAGEMENT
  3283     } else if (match_option(option, "-XX:", &tail)) { // -XX:xxxx
  3284       // Skip -XX:Flags= since that case has already been handled
  3285       if (strncmp(tail, "Flags=", strlen("Flags=")) != 0) {
  3286         if (!process_argument(tail, args->ignoreUnrecognized, origin)) {
  3287           return JNI_EINVAL;
  3290     // Unknown option
  3291     } else if (is_bad_option(option, args->ignoreUnrecognized)) {
  3292       return JNI_ERR;
  3296   // PrintSharedArchiveAndExit will turn on
  3297   //   -Xshare:on
  3298   //   -XX:+TraceClassPaths
  3299   if (PrintSharedArchiveAndExit) {
  3300     FLAG_SET_CMDLINE(bool, UseSharedSpaces, true);
  3301     FLAG_SET_CMDLINE(bool, RequireSharedSpaces, true);
  3302     FLAG_SET_CMDLINE(bool, TraceClassPaths, true);
  3305   // Change the default value for flags  which have different default values
  3306   // when working with older JDKs.
  3307 #ifdef LINUX
  3308  if (JDK_Version::current().compare_major(6) <= 0 &&
  3309       FLAG_IS_DEFAULT(UseLinuxPosixThreadCPUClocks)) {
  3310     FLAG_SET_DEFAULT(UseLinuxPosixThreadCPUClocks, false);
  3312 #endif // LINUX
  3313   fix_appclasspath();
  3314   return JNI_OK;
  3317 // Remove all empty paths from the app classpath (if IgnoreEmptyClassPaths is enabled)
  3318 //
  3319 // This is necessary because some apps like to specify classpath like -cp foo.jar:${XYZ}:bar.jar
  3320 // in their start-up scripts. If XYZ is empty, the classpath will look like "-cp foo.jar::bar.jar".
  3321 // Java treats such empty paths as if the user specified "-cp foo.jar:.:bar.jar". I.e., an empty
  3322 // path is treated as the current directory.
  3323 //
  3324 // This causes problems with CDS, which requires that all directories specified in the classpath
  3325 // must be empty. In most cases, applications do NOT want to load classes from the current
  3326 // directory anyway. Adding -XX:+IgnoreEmptyClassPaths will make these applications' start-up
  3327 // scripts compatible with CDS.
  3328 void Arguments::fix_appclasspath() {
  3329   if (IgnoreEmptyClassPaths) {
  3330     const char separator = *os::path_separator();
  3331     const char* src = _java_class_path->value();
  3333     // skip over all the leading empty paths
  3334     while (*src == separator) {
  3335       src ++;
  3338     char* copy = AllocateHeap(strlen(src) + 1, mtInternal);
  3339     strncpy(copy, src, strlen(src) + 1);
  3341     // trim all trailing empty paths
  3342     for (char* tail = copy + strlen(copy) - 1; tail >= copy && *tail == separator; tail--) {
  3343       *tail = '\0';
  3346     char from[3] = {separator, separator, '\0'};
  3347     char to  [2] = {separator, '\0'};
  3348     while (StringUtils::replace_no_expand(copy, from, to) > 0) {
  3349       // Keep replacing "::" -> ":" until we have no more "::" (non-windows)
  3350       // Keep replacing ";;" -> ";" until we have no more ";;" (windows)
  3353     _java_class_path->set_value(copy);
  3354     FreeHeap(copy); // a copy was made by set_value, so don't need this anymore
  3357   if (!PrintSharedArchiveAndExit) {
  3358     ClassLoader::trace_class_path("[classpath: ", _java_class_path->value());
  3362 jint Arguments::finalize_vm_init_args(SysClassPath* scp_p, bool scp_assembly_required) {
  3363   // This must be done after all -D arguments have been processed.
  3364   scp_p->expand_endorsed();
  3366   if (scp_assembly_required || scp_p->get_endorsed() != NULL) {
  3367     // Assemble the bootclasspath elements into the final path.
  3368     Arguments::set_sysclasspath(scp_p->combined_path());
  3371   // This must be done after all arguments have been processed.
  3372   // java_compiler() true means set to "NONE" or empty.
  3373   if (java_compiler() && !xdebug_mode()) {
  3374     // For backwards compatibility, we switch to interpreted mode if
  3375     // -Djava.compiler="NONE" or "" is specified AND "-Xdebug" was
  3376     // not specified.
  3377     set_mode_flags(_int);
  3379   if (CompileThreshold == 0) {
  3380     set_mode_flags(_int);
  3383   // eventually fix up InitialTenuringThreshold if only MaxTenuringThreshold is set
  3384   if (FLAG_IS_DEFAULT(InitialTenuringThreshold) && (InitialTenuringThreshold > MaxTenuringThreshold)) {
  3385     FLAG_SET_ERGO(uintx, InitialTenuringThreshold, MaxTenuringThreshold);
  3388 #ifndef COMPILER2
  3389   // Don't degrade server performance for footprint
  3390   if (FLAG_IS_DEFAULT(UseLargePages) &&
  3391       MaxHeapSize < LargePageHeapSizeThreshold) {
  3392     // No need for large granularity pages w/small heaps.
  3393     // Note that large pages are enabled/disabled for both the
  3394     // Java heap and the code cache.
  3395     FLAG_SET_DEFAULT(UseLargePages, false);
  3398 #else
  3399   if (!FLAG_IS_DEFAULT(OptoLoopAlignment) && FLAG_IS_DEFAULT(MaxLoopPad)) {
  3400     FLAG_SET_DEFAULT(MaxLoopPad, OptoLoopAlignment-1);
  3402 #endif
  3404 #ifndef TIERED
  3405   // Tiered compilation is undefined.
  3406   UNSUPPORTED_OPTION(TieredCompilation, "TieredCompilation");
  3407 #endif
  3409   // If we are running in a headless jre, force java.awt.headless property
  3410   // to be true unless the property has already been set.
  3411   // Also allow the OS environment variable JAVA_AWT_HEADLESS to set headless state.
  3412   if (os::is_headless_jre()) {
  3413     const char* headless = Arguments::get_property("java.awt.headless");
  3414     if (headless == NULL) {
  3415       char envbuffer[128];
  3416       if (!os::getenv("JAVA_AWT_HEADLESS", envbuffer, sizeof(envbuffer))) {
  3417         if (!add_property("java.awt.headless=true")) {
  3418           return JNI_ENOMEM;
  3420       } else {
  3421         char buffer[256];
  3422         strcpy(buffer, "java.awt.headless=");
  3423         strcat(buffer, envbuffer);
  3424         if (!add_property(buffer)) {
  3425           return JNI_ENOMEM;
  3431   if (!ArgumentsExt::check_vm_args_consistency()) {
  3432     return JNI_ERR;
  3435   return JNI_OK;
  3438 jint Arguments::parse_java_options_environment_variable(SysClassPath* scp_p, bool* scp_assembly_required_p) {
  3439   return parse_options_environment_variable("_JAVA_OPTIONS", scp_p,
  3440                                             scp_assembly_required_p);
  3443 jint Arguments::parse_java_tool_options_environment_variable(SysClassPath* scp_p, bool* scp_assembly_required_p) {
  3444   return parse_options_environment_variable("JAVA_TOOL_OPTIONS", scp_p,
  3445                                             scp_assembly_required_p);
  3448 jint Arguments::parse_options_environment_variable(const char* name, SysClassPath* scp_p, bool* scp_assembly_required_p) {
  3449   const int N_MAX_OPTIONS = 64;
  3450   const int OPTION_BUFFER_SIZE = 1024;
  3451   char buffer[OPTION_BUFFER_SIZE];
  3453   // The variable will be ignored if it exceeds the length of the buffer.
  3454   // Don't check this variable if user has special privileges
  3455   // (e.g. unix su command).
  3456   if (os::getenv(name, buffer, sizeof(buffer)) &&
  3457       !os::have_special_privileges()) {
  3458     JavaVMOption options[N_MAX_OPTIONS];      // Construct option array
  3459     jio_fprintf(defaultStream::error_stream(),
  3460                 "Picked up %s: %s\n", name, buffer);
  3461     char* rd = buffer;                        // pointer to the input string (rd)
  3462     int i;
  3463     for (i = 0; i < N_MAX_OPTIONS;) {         // repeat for all options in the input string
  3464       while (isspace(*rd)) rd++;              // skip whitespace
  3465       if (*rd == 0) break;                    // we re done when the input string is read completely
  3467       // The output, option string, overwrites the input string.
  3468       // Because of quoting, the pointer to the option string (wrt) may lag the pointer to
  3469       // input string (rd).
  3470       char* wrt = rd;
  3472       options[i++].optionString = wrt;        // Fill in option
  3473       while (*rd != 0 && !isspace(*rd)) {     // unquoted strings terminate with a space or NULL
  3474         if (*rd == '\'' || *rd == '"') {      // handle a quoted string
  3475           int quote = *rd;                    // matching quote to look for
  3476           rd++;                               // don't copy open quote
  3477           while (*rd != quote) {              // include everything (even spaces) up until quote
  3478             if (*rd == 0) {                   // string termination means unmatched string
  3479               jio_fprintf(defaultStream::error_stream(),
  3480                           "Unmatched quote in %s\n", name);
  3481               return JNI_ERR;
  3483             *wrt++ = *rd++;                   // copy to option string
  3485           rd++;                               // don't copy close quote
  3486         } else {
  3487           *wrt++ = *rd++;                     // copy to option string
  3490       // Need to check if we're done before writing a NULL,
  3491       // because the write could be to the byte that rd is pointing to.
  3492       if (*rd++ == 0) {
  3493         *wrt = 0;
  3494         break;
  3496       *wrt = 0;                               // Zero terminate option
  3498     // Construct JavaVMInitArgs structure and parse as if it was part of the command line
  3499     JavaVMInitArgs vm_args;
  3500     vm_args.version = JNI_VERSION_1_2;
  3501     vm_args.options = options;
  3502     vm_args.nOptions = i;
  3503     vm_args.ignoreUnrecognized = IgnoreUnrecognizedVMOptions;
  3505     if (PrintVMOptions) {
  3506       const char* tail;
  3507       for (int i = 0; i < vm_args.nOptions; i++) {
  3508         const JavaVMOption *option = vm_args.options + i;
  3509         if (match_option(option, "-XX:", &tail)) {
  3510           logOption(tail);
  3515     return(parse_each_vm_init_arg(&vm_args, scp_p, scp_assembly_required_p, Flag::ENVIRON_VAR));
  3517   return JNI_OK;
  3520 void Arguments::set_shared_spaces_flags() {
  3521   if (DumpSharedSpaces) {
  3522     if (RequireSharedSpaces) {
  3523       warning("cannot dump shared archive while using shared archive");
  3525     UseSharedSpaces = false;
  3526 #ifdef _LP64
  3527     if (!UseCompressedOops || !UseCompressedClassPointers) {
  3528       vm_exit_during_initialization(
  3529         "Cannot dump shared archive when UseCompressedOops or UseCompressedClassPointers is off.", NULL);
  3531   } else {
  3532     if (!UseCompressedOops || !UseCompressedClassPointers) {
  3533       no_shared_spaces("UseCompressedOops and UseCompressedClassPointers must be on for UseSharedSpaces.");
  3535 #endif
  3539 #if !INCLUDE_ALL_GCS
  3540 static void force_serial_gc() {
  3541   FLAG_SET_DEFAULT(UseSerialGC, true);
  3542   FLAG_SET_DEFAULT(CMSIncrementalMode, false);  // special CMS suboption
  3543   UNSUPPORTED_GC_OPTION(UseG1GC);
  3544   UNSUPPORTED_GC_OPTION(UseParallelGC);
  3545   UNSUPPORTED_GC_OPTION(UseParallelOldGC);
  3546   UNSUPPORTED_GC_OPTION(UseConcMarkSweepGC);
  3547   UNSUPPORTED_GC_OPTION(UseParNewGC);
  3549 #endif // INCLUDE_ALL_GCS
  3551 // Sharing support
  3552 // Construct the path to the archive
  3553 static char* get_shared_archive_path() {
  3554   char *shared_archive_path;
  3555   if (SharedArchiveFile == NULL) {
  3556     char jvm_path[JVM_MAXPATHLEN];
  3557     os::jvm_path(jvm_path, sizeof(jvm_path));
  3558     char *end = strrchr(jvm_path, *os::file_separator());
  3559     if (end != NULL) *end = '\0';
  3560     size_t jvm_path_len = strlen(jvm_path);
  3561     size_t file_sep_len = strlen(os::file_separator());
  3562     shared_archive_path = NEW_C_HEAP_ARRAY(char, jvm_path_len +
  3563         file_sep_len + 20, mtInternal);
  3564     if (shared_archive_path != NULL) {
  3565       strncpy(shared_archive_path, jvm_path, jvm_path_len + 1);
  3566       strncat(shared_archive_path, os::file_separator(), file_sep_len);
  3567       strncat(shared_archive_path, "classes.jsa", 11);
  3569   } else {
  3570     shared_archive_path = NEW_C_HEAP_ARRAY(char, strlen(SharedArchiveFile) + 1, mtInternal);
  3571     if (shared_archive_path != NULL) {
  3572       strncpy(shared_archive_path, SharedArchiveFile, strlen(SharedArchiveFile) + 1);
  3575   return shared_archive_path;
  3578 #ifndef PRODUCT
  3579 // Determine whether LogVMOutput should be implicitly turned on.
  3580 static bool use_vm_log() {
  3581   if (LogCompilation || !FLAG_IS_DEFAULT(LogFile) ||
  3582       PrintCompilation || PrintInlining || PrintDependencies || PrintNativeNMethods ||
  3583       PrintDebugInfo || PrintRelocations || PrintNMethods || PrintExceptionHandlers ||
  3584       PrintAssembly || TraceDeoptimization || TraceDependencies ||
  3585       (VerifyDependencies && FLAG_IS_CMDLINE(VerifyDependencies))) {
  3586     return true;
  3589 #ifdef COMPILER1
  3590   if (PrintC1Statistics) {
  3591     return true;
  3593 #endif // COMPILER1
  3595 #ifdef COMPILER2
  3596   if (PrintOptoAssembly || PrintOptoStatistics) {
  3597     return true;
  3599 #endif // COMPILER2
  3601   return false;
  3603 #endif // PRODUCT
  3605 // Parse entry point called from JNI_CreateJavaVM
  3607 jint Arguments::parse(const JavaVMInitArgs* args) {
  3609   // Remaining part of option string
  3610   const char* tail;
  3612   // If flag "-XX:Flags=flags-file" is used it will be the first option to be processed.
  3613   const char* hotspotrc = ".hotspotrc";
  3614   bool settings_file_specified = false;
  3615   bool needs_hotspotrc_warning = false;
  3617   const char* flags_file;
  3618   int index;
  3619   for (index = 0; index < args->nOptions; index++) {
  3620     const JavaVMOption *option = args->options + index;
  3621     if (match_option(option, "-XX:Flags=", &tail)) {
  3622       flags_file = tail;
  3623       settings_file_specified = true;
  3625     if (match_option(option, "-XX:+PrintVMOptions", &tail)) {
  3626       PrintVMOptions = true;
  3628     if (match_option(option, "-XX:-PrintVMOptions", &tail)) {
  3629       PrintVMOptions = false;
  3631     if (match_option(option, "-XX:+IgnoreUnrecognizedVMOptions", &tail)) {
  3632       IgnoreUnrecognizedVMOptions = true;
  3634     if (match_option(option, "-XX:-IgnoreUnrecognizedVMOptions", &tail)) {
  3635       IgnoreUnrecognizedVMOptions = false;
  3637     if (match_option(option, "-XX:+PrintFlagsInitial", &tail)) {
  3638       CommandLineFlags::printFlags(tty, false);
  3639       vm_exit(0);
  3641 #if INCLUDE_NMT
  3642     if (match_option(option, "-XX:NativeMemoryTracking", &tail)) {
  3643       // The launcher did not setup nmt environment variable properly.
  3644       if (!MemTracker::check_launcher_nmt_support(tail)) {
  3645         warning("Native Memory Tracking did not setup properly, using wrong launcher?");
  3648       // Verify if nmt option is valid.
  3649       if (MemTracker::verify_nmt_option()) {
  3650         // Late initialization, still in single-threaded mode.
  3651         if (MemTracker::tracking_level() >= NMT_summary) {
  3652           MemTracker::init();
  3654       } else {
  3655         vm_exit_during_initialization("Syntax error, expecting -XX:NativeMemoryTracking=[off|summary|detail]", NULL);
  3658 #endif
  3661 #ifndef PRODUCT
  3662     if (match_option(option, "-XX:+PrintFlagsWithComments", &tail)) {
  3663       CommandLineFlags::printFlags(tty, true);
  3664       vm_exit(0);
  3666 #endif
  3669   if (IgnoreUnrecognizedVMOptions) {
  3670     // uncast const to modify the flag args->ignoreUnrecognized
  3671     *(jboolean*)(&args->ignoreUnrecognized) = true;
  3674   // Parse specified settings file
  3675   if (settings_file_specified) {
  3676     if (!process_settings_file(flags_file, true, args->ignoreUnrecognized)) {
  3677       return JNI_EINVAL;
  3679   } else {
  3680 #ifdef ASSERT
  3681     // Parse default .hotspotrc settings file
  3682     if (!process_settings_file(".hotspotrc", false, args->ignoreUnrecognized)) {
  3683       return JNI_EINVAL;
  3685 #else
  3686     struct stat buf;
  3687     if (os::stat(hotspotrc, &buf) == 0) {
  3688       needs_hotspotrc_warning = true;
  3690 #endif
  3693   if (PrintVMOptions) {
  3694     for (index = 0; index < args->nOptions; index++) {
  3695       const JavaVMOption *option = args->options + index;
  3696       if (match_option(option, "-XX:", &tail)) {
  3697         logOption(tail);
  3702   // Parse JavaVMInitArgs structure passed in, as well as JAVA_TOOL_OPTIONS and _JAVA_OPTIONS
  3703   jint result = parse_vm_init_args(args);
  3704   if (result != JNI_OK) {
  3705     return result;
  3708   // Call get_shared_archive_path() here, after possible SharedArchiveFile option got parsed.
  3709   SharedArchivePath = get_shared_archive_path();
  3710   if (SharedArchivePath == NULL) {
  3711     return JNI_ENOMEM;
  3714   // Set up VerifySharedSpaces
  3715   if (FLAG_IS_DEFAULT(VerifySharedSpaces) && SharedArchiveFile != NULL) {
  3716     VerifySharedSpaces = true;
  3719   // Delay warning until here so that we've had a chance to process
  3720   // the -XX:-PrintWarnings flag
  3721   if (needs_hotspotrc_warning) {
  3722     warning("%s file is present but has been ignored.  "
  3723             "Run with -XX:Flags=%s to load the file.",
  3724             hotspotrc, hotspotrc);
  3727 #ifdef _ALLBSD_SOURCE  // UseLargePages is not yet supported on BSD.
  3728   UNSUPPORTED_OPTION(UseLargePages, "-XX:+UseLargePages");
  3729 #endif
  3731 #if INCLUDE_ALL_GCS
  3732   #if (defined JAVASE_EMBEDDED || defined ARM)
  3733     UNSUPPORTED_OPTION(UseG1GC, "G1 GC");
  3734   #endif
  3735 #endif
  3737 #ifndef PRODUCT
  3738   if (TraceBytecodesAt != 0) {
  3739     TraceBytecodes = true;
  3741   if (CountCompiledCalls) {
  3742     if (UseCounterDecay) {
  3743       warning("UseCounterDecay disabled because CountCalls is set");
  3744       UseCounterDecay = false;
  3747 #endif // PRODUCT
  3749   // JSR 292 is not supported before 1.7
  3750   if (!JDK_Version::is_gte_jdk17x_version()) {
  3751     if (EnableInvokeDynamic) {
  3752       if (!FLAG_IS_DEFAULT(EnableInvokeDynamic)) {
  3753         warning("JSR 292 is not supported before 1.7.  Disabling support.");
  3755       EnableInvokeDynamic = false;
  3759   if (EnableInvokeDynamic && ScavengeRootsInCode == 0) {
  3760     if (!FLAG_IS_DEFAULT(ScavengeRootsInCode)) {
  3761       warning("forcing ScavengeRootsInCode non-zero because EnableInvokeDynamic is true");
  3763     ScavengeRootsInCode = 1;
  3766   if (PrintGCDetails) {
  3767     // Turn on -verbose:gc options as well
  3768     PrintGC = true;
  3771   if (!JDK_Version::is_gte_jdk18x_version()) {
  3772     // To avoid changing the log format for 7 updates this flag is only
  3773     // true by default in JDK8 and above.
  3774     if (FLAG_IS_DEFAULT(PrintGCCause)) {
  3775       FLAG_SET_DEFAULT(PrintGCCause, false);
  3779   // Set object alignment values.
  3780   set_object_alignment();
  3782 #if !INCLUDE_ALL_GCS
  3783   force_serial_gc();
  3784 #endif // INCLUDE_ALL_GCS
  3785 #if !INCLUDE_CDS
  3786   if (DumpSharedSpaces || RequireSharedSpaces) {
  3787     jio_fprintf(defaultStream::error_stream(),
  3788       "Shared spaces are not supported in this VM\n");
  3789     return JNI_ERR;
  3791   if ((UseSharedSpaces && FLAG_IS_CMDLINE(UseSharedSpaces)) || PrintSharedSpaces) {
  3792     warning("Shared spaces are not supported in this VM");
  3793     FLAG_SET_DEFAULT(UseSharedSpaces, false);
  3794     FLAG_SET_DEFAULT(PrintSharedSpaces, false);
  3796   no_shared_spaces("CDS Disabled");
  3797 #endif // INCLUDE_CDS
  3799   return JNI_OK;
  3802 jint Arguments::apply_ergo() {
  3804   // Set flags based on ergonomics.
  3805   set_ergonomics_flags();
  3807   set_shared_spaces_flags();
  3809   // Check the GC selections again.
  3810   if (!ArgumentsExt::check_gc_consistency_ergo()) {
  3811     return JNI_EINVAL;
  3814   if (TieredCompilation) {
  3815     set_tiered_flags();
  3816   } else {
  3817     // Check if the policy is valid. Policies 0 and 1 are valid for non-tiered setup.
  3818     if (CompilationPolicyChoice >= 2) {
  3819       vm_exit_during_initialization(
  3820         "Incompatible compilation policy selected", NULL);
  3823   // Set NmethodSweepFraction after the size of the code cache is adapted (in case of tiered)
  3824   if (FLAG_IS_DEFAULT(NmethodSweepFraction)) {
  3825     FLAG_SET_DEFAULT(NmethodSweepFraction, 1 + ReservedCodeCacheSize / (16 * M));
  3829   // Set heap size based on available physical memory
  3830   set_heap_size();
  3832   set_gc_specific_flags();
  3834   // Initialize Metaspace flags and alignments.
  3835   Metaspace::ergo_initialize();
  3837   // Set bytecode rewriting flags
  3838   set_bytecode_flags();
  3840   // Set flags if Aggressive optimization flags (-XX:+AggressiveOpts) enabled.
  3841   set_aggressive_opts_flags();
  3843   // Turn off biased locking for locking debug mode flags,
  3844   // which are subtlely different from each other but neither works with
  3845   // biased locking.
  3846   if (UseHeavyMonitors
  3847 #ifdef COMPILER1
  3848       || !UseFastLocking
  3849 #endif // COMPILER1
  3850     ) {
  3851     if (!FLAG_IS_DEFAULT(UseBiasedLocking) && UseBiasedLocking) {
  3852       // flag set to true on command line; warn the user that they
  3853       // can't enable biased locking here
  3854       warning("Biased Locking is not supported with locking debug flags"
  3855               "; ignoring UseBiasedLocking flag." );
  3857     UseBiasedLocking = false;
  3860 #ifdef ZERO
  3861   // Clear flags not supported on zero.
  3862   FLAG_SET_DEFAULT(ProfileInterpreter, false);
  3863   FLAG_SET_DEFAULT(UseBiasedLocking, false);
  3864   LP64_ONLY(FLAG_SET_DEFAULT(UseCompressedOops, false));
  3865   LP64_ONLY(FLAG_SET_DEFAULT(UseCompressedClassPointers, false));
  3866 #endif // CC_INTERP
  3868 #ifdef COMPILER2
  3869   if (!EliminateLocks) {
  3870     EliminateNestedLocks = false;
  3872   if (!Inline) {
  3873     IncrementalInline = false;
  3875 #ifndef PRODUCT
  3876   if (!IncrementalInline) {
  3877     AlwaysIncrementalInline = false;
  3879 #endif
  3880   if (IncrementalInline && FLAG_IS_DEFAULT(MaxNodeLimit)) {
  3881     // incremental inlining: bump MaxNodeLimit
  3882     FLAG_SET_DEFAULT(MaxNodeLimit, (intx)75000);
  3884   if (!UseTypeSpeculation && FLAG_IS_DEFAULT(TypeProfileLevel)) {
  3885     // nothing to use the profiling, turn if off
  3886     FLAG_SET_DEFAULT(TypeProfileLevel, 0);
  3888 #endif
  3890   if (PrintAssembly && FLAG_IS_DEFAULT(DebugNonSafepoints)) {
  3891     warning("PrintAssembly is enabled; turning on DebugNonSafepoints to gain additional output");
  3892     DebugNonSafepoints = true;
  3895   if (FLAG_IS_CMDLINE(CompressedClassSpaceSize) && !UseCompressedClassPointers) {
  3896     warning("Setting CompressedClassSpaceSize has no effect when compressed class pointers are not used");
  3899 #ifndef PRODUCT
  3900   if (CompileTheWorld) {
  3901     // Force NmethodSweeper to sweep whole CodeCache each time.
  3902     if (FLAG_IS_DEFAULT(NmethodSweepFraction)) {
  3903       NmethodSweepFraction = 1;
  3907   if (!LogVMOutput && FLAG_IS_DEFAULT(LogVMOutput)) {
  3908     if (use_vm_log()) {
  3909       LogVMOutput = true;
  3912 #endif // PRODUCT
  3914   if (PrintCommandLineFlags) {
  3915     CommandLineFlags::printSetFlags(tty);
  3918   // Apply CPU specific policy for the BiasedLocking
  3919   if (UseBiasedLocking) {
  3920     if (!VM_Version::use_biased_locking() &&
  3921         !(FLAG_IS_CMDLINE(UseBiasedLocking))) {
  3922       UseBiasedLocking = false;
  3925 #ifdef COMPILER2
  3926   if (!UseBiasedLocking || EmitSync != 0) {
  3927     UseOptoBiasInlining = false;
  3929 #endif
  3931   // set PauseAtExit if the gamma launcher was used and a debugger is attached
  3932   // but only if not already set on the commandline
  3933   if (Arguments::created_by_gamma_launcher() && os::is_debugger_attached()) {
  3934     bool set = false;
  3935     CommandLineFlags::wasSetOnCmdline("PauseAtExit", &set);
  3936     if (!set) {
  3937       FLAG_SET_DEFAULT(PauseAtExit, true);
  3941   return JNI_OK;
  3944 jint Arguments::adjust_after_os() {
  3945   if (UseNUMA) {
  3946     if (UseParallelGC || UseParallelOldGC) {
  3947       if (FLAG_IS_DEFAULT(MinHeapDeltaBytes)) {
  3948          FLAG_SET_DEFAULT(MinHeapDeltaBytes, 64*M);
  3951     // UseNUMAInterleaving is set to ON for all collectors and
  3952     // platforms when UseNUMA is set to ON. NUMA-aware collectors
  3953     // such as the parallel collector for Linux and Solaris will
  3954     // interleave old gen and survivor spaces on top of NUMA
  3955     // allocation policy for the eden space.
  3956     // Non NUMA-aware collectors such as CMS, G1 and Serial-GC on
  3957     // all platforms and ParallelGC on Windows will interleave all
  3958     // of the heap spaces across NUMA nodes.
  3959     if (FLAG_IS_DEFAULT(UseNUMAInterleaving)) {
  3960       FLAG_SET_ERGO(bool, UseNUMAInterleaving, true);
  3963   return JNI_OK;
  3966 int Arguments::PropertyList_count(SystemProperty* pl) {
  3967   int count = 0;
  3968   while(pl != NULL) {
  3969     count++;
  3970     pl = pl->next();
  3972   return count;
  3975 const char* Arguments::PropertyList_get_value(SystemProperty *pl, const char* key) {
  3976   assert(key != NULL, "just checking");
  3977   SystemProperty* prop;
  3978   for (prop = pl; prop != NULL; prop = prop->next()) {
  3979     if (strcmp(key, prop->key()) == 0) return prop->value();
  3981   return NULL;
  3984 const char* Arguments::PropertyList_get_key_at(SystemProperty *pl, int index) {
  3985   int count = 0;
  3986   const char* ret_val = NULL;
  3988   while(pl != NULL) {
  3989     if(count >= index) {
  3990       ret_val = pl->key();
  3991       break;
  3993     count++;
  3994     pl = pl->next();
  3997   return ret_val;
  4000 char* Arguments::PropertyList_get_value_at(SystemProperty* pl, int index) {
  4001   int count = 0;
  4002   char* ret_val = NULL;
  4004   while(pl != NULL) {
  4005     if(count >= index) {
  4006       ret_val = pl->value();
  4007       break;
  4009     count++;
  4010     pl = pl->next();
  4013   return ret_val;
  4016 void Arguments::PropertyList_add(SystemProperty** plist, SystemProperty *new_p) {
  4017   SystemProperty* p = *plist;
  4018   if (p == NULL) {
  4019     *plist = new_p;
  4020   } else {
  4021     while (p->next() != NULL) {
  4022       p = p->next();
  4024     p->set_next(new_p);
  4028 void Arguments::PropertyList_add(SystemProperty** plist, const char* k, char* v) {
  4029   if (plist == NULL)
  4030     return;
  4032   SystemProperty* new_p = new SystemProperty(k, v, true);
  4033   PropertyList_add(plist, new_p);
  4036 // This add maintains unique property key in the list.
  4037 void Arguments::PropertyList_unique_add(SystemProperty** plist, const char* k, char* v, jboolean append) {
  4038   if (plist == NULL)
  4039     return;
  4041   // If property key exist then update with new value.
  4042   SystemProperty* prop;
  4043   for (prop = *plist; prop != NULL; prop = prop->next()) {
  4044     if (strcmp(k, prop->key()) == 0) {
  4045       if (append) {
  4046         prop->append_value(v);
  4047       } else {
  4048         prop->set_value(v);
  4050       return;
  4054   PropertyList_add(plist, k, v);
  4057 // Copies src into buf, replacing "%%" with "%" and "%p" with pid
  4058 // Returns true if all of the source pointed by src has been copied over to
  4059 // the destination buffer pointed by buf. Otherwise, returns false.
  4060 // Notes:
  4061 // 1. If the length (buflen) of the destination buffer excluding the
  4062 // NULL terminator character is not long enough for holding the expanded
  4063 // pid characters, it also returns false instead of returning the partially
  4064 // expanded one.
  4065 // 2. The passed in "buflen" should be large enough to hold the null terminator.
  4066 bool Arguments::copy_expand_pid(const char* src, size_t srclen,
  4067                                 char* buf, size_t buflen) {
  4068   const char* p = src;
  4069   char* b = buf;
  4070   const char* src_end = &src[srclen];
  4071   char* buf_end = &buf[buflen - 1];
  4073   while (p < src_end && b < buf_end) {
  4074     if (*p == '%') {
  4075       switch (*(++p)) {
  4076       case '%':         // "%%" ==> "%"
  4077         *b++ = *p++;
  4078         break;
  4079       case 'p':  {       //  "%p" ==> current process id
  4080         // buf_end points to the character before the last character so
  4081         // that we could write '\0' to the end of the buffer.
  4082         size_t buf_sz = buf_end - b + 1;
  4083         int ret = jio_snprintf(b, buf_sz, "%d", os::current_process_id());
  4085         // if jio_snprintf fails or the buffer is not long enough to hold
  4086         // the expanded pid, returns false.
  4087         if (ret < 0 || ret >= (int)buf_sz) {
  4088           return false;
  4089         } else {
  4090           b += ret;
  4091           assert(*b == '\0', "fail in copy_expand_pid");
  4092           if (p == src_end && b == buf_end + 1) {
  4093             // reach the end of the buffer.
  4094             return true;
  4097         p++;
  4098         break;
  4100       default :
  4101         *b++ = '%';
  4103     } else {
  4104       *b++ = *p++;
  4107   *b = '\0';
  4108   return (p == src_end); // return false if not all of the source was copied

mercurial