src/share/vm/runtime/arguments.cpp

Fri, 31 Oct 2014 12:05:56 -0700

author
dbuck
date
Fri, 31 Oct 2014 12:05:56 -0700
changeset 7279
9f35f614847d
parent 7262
f10fe402dfb1
child 7315
86307d477907
permissions
-rw-r--r--

8060169: Update the Crash Reporting URL in the Java crash log
Summary: Update the URL for HotSpot bug reports.
Reviewed-by: dcubed, rdurbin

     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.java.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");
  2392 #ifdef COMPILER1
  2393   status = status && verify_min_value(ValueMapInitialSize, 1, "ValueMapInitialSize");
  2394 #endif
  2396   if (PrintNMTStatistics) {
  2397 #if INCLUDE_NMT
  2398     if (MemTracker::tracking_level() == NMT_off) {
  2399 #endif // INCLUDE_NMT
  2400       warning("PrintNMTStatistics is disabled, because native memory tracking is not enabled");
  2401       PrintNMTStatistics = false;
  2402 #if INCLUDE_NMT
  2404 #endif
  2407   // Need to limit the extent of the padding to reasonable size.
  2408   // 8K is well beyond the reasonable HW cache line size, even with the
  2409   // aggressive prefetching, while still leaving the room for segregating
  2410   // among the distinct pages.
  2411   if (ContendedPaddingWidth < 0 || ContendedPaddingWidth > 8192) {
  2412     jio_fprintf(defaultStream::error_stream(),
  2413                 "ContendedPaddingWidth=" INTX_FORMAT " must be in between %d and %d\n",
  2414                 ContendedPaddingWidth, 0, 8192);
  2415     status = false;
  2418   // Need to enforce the padding not to break the existing field alignments.
  2419   // It is sufficient to check against the largest type size.
  2420   if ((ContendedPaddingWidth % BytesPerLong) != 0) {
  2421     jio_fprintf(defaultStream::error_stream(),
  2422                 "ContendedPaddingWidth=" INTX_FORMAT " must be a multiple of %d\n",
  2423                 ContendedPaddingWidth, BytesPerLong);
  2424     status = false;
  2427   // Check lower bounds of the code cache
  2428   // Template Interpreter code is approximately 3X larger in debug builds.
  2429   uint min_code_cache_size = (CodeCacheMinimumUseSpace DEBUG_ONLY(* 3)) + CodeCacheMinimumFreeSpace;
  2430   if (InitialCodeCacheSize < (uintx)os::vm_page_size()) {
  2431     jio_fprintf(defaultStream::error_stream(),
  2432                 "Invalid InitialCodeCacheSize=%dK. Must be at least %dK.\n", InitialCodeCacheSize/K,
  2433                 os::vm_page_size()/K);
  2434     status = false;
  2435   } else if (ReservedCodeCacheSize < InitialCodeCacheSize) {
  2436     jio_fprintf(defaultStream::error_stream(),
  2437                 "Invalid ReservedCodeCacheSize: %dK. Must be at least InitialCodeCacheSize=%dK.\n",
  2438                 ReservedCodeCacheSize/K, InitialCodeCacheSize/K);
  2439     status = false;
  2440   } else if (ReservedCodeCacheSize < min_code_cache_size) {
  2441     jio_fprintf(defaultStream::error_stream(),
  2442                 "Invalid ReservedCodeCacheSize=%dK. Must be at least %uK.\n", ReservedCodeCacheSize/K,
  2443                 min_code_cache_size/K);
  2444     status = false;
  2445   } else if (ReservedCodeCacheSize > 2*G) {
  2446     // Code cache size larger than MAXINT is not supported.
  2447     jio_fprintf(defaultStream::error_stream(),
  2448                 "Invalid ReservedCodeCacheSize=%dM. Must be at most %uM.\n", ReservedCodeCacheSize/M,
  2449                 (2*G)/M);
  2450     status = false;
  2453   status &= verify_interval(NmethodSweepFraction, 1, ReservedCodeCacheSize/K, "NmethodSweepFraction");
  2454   status &= verify_interval(NmethodSweepActivity, 0, 2000, "NmethodSweepActivity");
  2456   if (!FLAG_IS_DEFAULT(CICompilerCount) && !FLAG_IS_DEFAULT(CICompilerCountPerCPU) && CICompilerCountPerCPU) {
  2457     warning("The VM option CICompilerCountPerCPU overrides CICompilerCount.");
  2460 #ifdef COMPILER1
  2461   status &= verify_interval(SafepointPollOffset, 0, os::vm_page_size() - BytesPerWord, "SafepointPollOffset");
  2462 #endif
  2464   return status;
  2467 bool Arguments::is_bad_option(const JavaVMOption* option, jboolean ignore,
  2468   const char* option_type) {
  2469   if (ignore) return false;
  2471   const char* spacer = " ";
  2472   if (option_type == NULL) {
  2473     option_type = ++spacer; // Set both to the empty string.
  2476   if (os::obsolete_option(option)) {
  2477     jio_fprintf(defaultStream::error_stream(),
  2478                 "Obsolete %s%soption: %s\n", option_type, spacer,
  2479       option->optionString);
  2480     return false;
  2481   } else {
  2482     jio_fprintf(defaultStream::error_stream(),
  2483                 "Unrecognized %s%soption: %s\n", option_type, spacer,
  2484       option->optionString);
  2485     return true;
  2489 static const char* user_assertion_options[] = {
  2490   "-da", "-ea", "-disableassertions", "-enableassertions", 0
  2491 };
  2493 static const char* system_assertion_options[] = {
  2494   "-dsa", "-esa", "-disablesystemassertions", "-enablesystemassertions", 0
  2495 };
  2497 // Return true if any of the strings in null-terminated array 'names' matches.
  2498 // If tail_allowed is true, then the tail must begin with a colon; otherwise,
  2499 // the option must match exactly.
  2500 static bool match_option(const JavaVMOption* option, const char** names, const char** tail,
  2501   bool tail_allowed) {
  2502   for (/* empty */; *names != NULL; ++names) {
  2503     if (match_option(option, *names, tail)) {
  2504       if (**tail == '\0' || tail_allowed && **tail == ':') {
  2505         return true;
  2509   return false;
  2512 bool Arguments::parse_uintx(const char* value,
  2513                             uintx* uintx_arg,
  2514                             uintx min_size) {
  2516   // Check the sign first since atomull() parses only unsigned values.
  2517   bool value_is_positive = !(*value == '-');
  2519   if (value_is_positive) {
  2520     julong n;
  2521     bool good_return = atomull(value, &n);
  2522     if (good_return) {
  2523       bool above_minimum = n >= min_size;
  2524       bool value_is_too_large = n > max_uintx;
  2526       if (above_minimum && !value_is_too_large) {
  2527         *uintx_arg = n;
  2528         return true;
  2532   return false;
  2535 Arguments::ArgsRange Arguments::parse_memory_size(const char* s,
  2536                                                   julong* long_arg,
  2537                                                   julong min_size) {
  2538   if (!atomull(s, long_arg)) return arg_unreadable;
  2539   return check_memory_size(*long_arg, min_size);
  2542 // Parse JavaVMInitArgs structure
  2544 jint Arguments::parse_vm_init_args(const JavaVMInitArgs* args) {
  2545   // For components of the system classpath.
  2546   SysClassPath scp(Arguments::get_sysclasspath());
  2547   bool scp_assembly_required = false;
  2549   // Save default settings for some mode flags
  2550   Arguments::_AlwaysCompileLoopMethods = AlwaysCompileLoopMethods;
  2551   Arguments::_UseOnStackReplacement    = UseOnStackReplacement;
  2552   Arguments::_ClipInlining             = ClipInlining;
  2553   Arguments::_BackgroundCompilation    = BackgroundCompilation;
  2555   // Setup flags for mixed which is the default
  2556   set_mode_flags(_mixed);
  2558   // Parse JAVA_TOOL_OPTIONS environment variable (if present)
  2559   jint result = parse_java_tool_options_environment_variable(&scp, &scp_assembly_required);
  2560   if (result != JNI_OK) {
  2561     return result;
  2564   // Parse JavaVMInitArgs structure passed in
  2565   result = parse_each_vm_init_arg(args, &scp, &scp_assembly_required, Flag::COMMAND_LINE);
  2566   if (result != JNI_OK) {
  2567     return result;
  2570   // Parse _JAVA_OPTIONS environment variable (if present) (mimics classic VM)
  2571   result = parse_java_options_environment_variable(&scp, &scp_assembly_required);
  2572   if (result != JNI_OK) {
  2573     return result;
  2576   // Do final processing now that all arguments have been parsed
  2577   result = finalize_vm_init_args(&scp, scp_assembly_required);
  2578   if (result != JNI_OK) {
  2579     return result;
  2582   return JNI_OK;
  2585 // Checks if name in command-line argument -agent{lib,path}:name[=options]
  2586 // represents a valid HPROF of JDWP agent.  is_path==true denotes that we
  2587 // are dealing with -agentpath (case where name is a path), otherwise with
  2588 // -agentlib
  2589 bool valid_hprof_or_jdwp_agent(char *name, bool is_path) {
  2590   char *_name;
  2591   const char *_hprof = "hprof", *_jdwp = "jdwp";
  2592   size_t _len_hprof, _len_jdwp, _len_prefix;
  2594   if (is_path) {
  2595     if ((_name = strrchr(name, (int) *os::file_separator())) == NULL) {
  2596       return false;
  2599     _name++;  // skip past last path separator
  2600     _len_prefix = strlen(JNI_LIB_PREFIX);
  2602     if (strncmp(_name, JNI_LIB_PREFIX, _len_prefix) != 0) {
  2603       return false;
  2606     _name += _len_prefix;
  2607     _len_hprof = strlen(_hprof);
  2608     _len_jdwp = strlen(_jdwp);
  2610     if (strncmp(_name, _hprof, _len_hprof) == 0) {
  2611       _name += _len_hprof;
  2613     else if (strncmp(_name, _jdwp, _len_jdwp) == 0) {
  2614       _name += _len_jdwp;
  2616     else {
  2617       return false;
  2620     if (strcmp(_name, JNI_LIB_SUFFIX) != 0) {
  2621       return false;
  2624     return true;
  2627   if (strcmp(name, _hprof) == 0 || strcmp(name, _jdwp) == 0) {
  2628     return true;
  2631   return false;
  2634 jint Arguments::parse_each_vm_init_arg(const JavaVMInitArgs* args,
  2635                                        SysClassPath* scp_p,
  2636                                        bool* scp_assembly_required_p,
  2637                                        Flag::Flags origin) {
  2638   // Remaining part of option string
  2639   const char* tail;
  2641   // iterate over arguments
  2642   for (int index = 0; index < args->nOptions; index++) {
  2643     bool is_absolute_path = false;  // for -agentpath vs -agentlib
  2645     const JavaVMOption* option = args->options + index;
  2647     if (!match_option(option, "-Djava.class.path", &tail) &&
  2648         !match_option(option, "-Dsun.java.command", &tail) &&
  2649         !match_option(option, "-Dsun.java.launcher", &tail)) {
  2651         // add all jvm options to the jvm_args string. This string
  2652         // is used later to set the java.vm.args PerfData string constant.
  2653         // the -Djava.class.path and the -Dsun.java.command options are
  2654         // omitted from jvm_args string as each have their own PerfData
  2655         // string constant object.
  2656         build_jvm_args(option->optionString);
  2659     // -verbose:[class/gc/jni]
  2660     if (match_option(option, "-verbose", &tail)) {
  2661       if (!strcmp(tail, ":class") || !strcmp(tail, "")) {
  2662         FLAG_SET_CMDLINE(bool, TraceClassLoading, true);
  2663         FLAG_SET_CMDLINE(bool, TraceClassUnloading, true);
  2664       } else if (!strcmp(tail, ":gc")) {
  2665         FLAG_SET_CMDLINE(bool, PrintGC, true);
  2666       } else if (!strcmp(tail, ":jni")) {
  2667         FLAG_SET_CMDLINE(bool, PrintJNIResolving, true);
  2669     // -da / -ea / -disableassertions / -enableassertions
  2670     // These accept an optional class/package name separated by a colon, e.g.,
  2671     // -da:java.lang.Thread.
  2672     } else if (match_option(option, user_assertion_options, &tail, true)) {
  2673       bool enable = option->optionString[1] == 'e';     // char after '-' is 'e'
  2674       if (*tail == '\0') {
  2675         JavaAssertions::setUserClassDefault(enable);
  2676       } else {
  2677         assert(*tail == ':', "bogus match by match_option()");
  2678         JavaAssertions::addOption(tail + 1, enable);
  2680     // -dsa / -esa / -disablesystemassertions / -enablesystemassertions
  2681     } else if (match_option(option, system_assertion_options, &tail, false)) {
  2682       bool enable = option->optionString[1] == 'e';     // char after '-' is 'e'
  2683       JavaAssertions::setSystemClassDefault(enable);
  2684     // -bootclasspath:
  2685     } else if (match_option(option, "-Xbootclasspath:", &tail)) {
  2686       scp_p->reset_path(tail);
  2687       *scp_assembly_required_p = true;
  2688     // -bootclasspath/a:
  2689     } else if (match_option(option, "-Xbootclasspath/a:", &tail)) {
  2690       scp_p->add_suffix(tail);
  2691       *scp_assembly_required_p = true;
  2692     // -bootclasspath/p:
  2693     } else if (match_option(option, "-Xbootclasspath/p:", &tail)) {
  2694       scp_p->add_prefix(tail);
  2695       *scp_assembly_required_p = true;
  2696     // -Xrun
  2697     } else if (match_option(option, "-Xrun", &tail)) {
  2698       if (tail != NULL) {
  2699         const char* pos = strchr(tail, ':');
  2700         size_t len = (pos == NULL) ? strlen(tail) : pos - tail;
  2701         char* name = (char*)memcpy(NEW_C_HEAP_ARRAY(char, len + 1, mtInternal), tail, len);
  2702         name[len] = '\0';
  2704         char *options = NULL;
  2705         if(pos != NULL) {
  2706           size_t len2 = strlen(pos+1) + 1; // options start after ':'.  Final zero must be copied.
  2707           options = (char*)memcpy(NEW_C_HEAP_ARRAY(char, len2, mtInternal), pos+1, len2);
  2709 #if !INCLUDE_JVMTI
  2710         if ((strcmp(name, "hprof") == 0) || (strcmp(name, "jdwp") == 0)) {
  2711           jio_fprintf(defaultStream::error_stream(),
  2712             "Profiling and debugging agents are not supported in this VM\n");
  2713           return JNI_ERR;
  2715 #endif // !INCLUDE_JVMTI
  2716         add_init_library(name, options);
  2718     // -agentlib and -agentpath
  2719     } else if (match_option(option, "-agentlib:", &tail) ||
  2720           (is_absolute_path = match_option(option, "-agentpath:", &tail))) {
  2721       if(tail != NULL) {
  2722         const char* pos = strchr(tail, '=');
  2723         size_t len = (pos == NULL) ? strlen(tail) : pos - tail;
  2724         char* name = strncpy(NEW_C_HEAP_ARRAY(char, len + 1, mtInternal), tail, len);
  2725         name[len] = '\0';
  2727         char *options = NULL;
  2728         if(pos != NULL) {
  2729           options = strcpy(NEW_C_HEAP_ARRAY(char, strlen(pos + 1) + 1, mtInternal), pos + 1);
  2731 #if !INCLUDE_JVMTI
  2732         if (valid_hprof_or_jdwp_agent(name, is_absolute_path)) {
  2733           jio_fprintf(defaultStream::error_stream(),
  2734             "Profiling and debugging agents are not supported in this VM\n");
  2735           return JNI_ERR;
  2737 #endif // !INCLUDE_JVMTI
  2738         add_init_agent(name, options, is_absolute_path);
  2740     // -javaagent
  2741     } else if (match_option(option, "-javaagent:", &tail)) {
  2742 #if !INCLUDE_JVMTI
  2743       jio_fprintf(defaultStream::error_stream(),
  2744         "Instrumentation agents are not supported in this VM\n");
  2745       return JNI_ERR;
  2746 #else
  2747       if(tail != NULL) {
  2748         char *options = strcpy(NEW_C_HEAP_ARRAY(char, strlen(tail) + 1, mtInternal), tail);
  2749         add_init_agent("instrument", options, false);
  2751 #endif // !INCLUDE_JVMTI
  2752     // -Xnoclassgc
  2753     } else if (match_option(option, "-Xnoclassgc", &tail)) {
  2754       FLAG_SET_CMDLINE(bool, ClassUnloading, false);
  2755     // -Xincgc: i-CMS
  2756     } else if (match_option(option, "-Xincgc", &tail)) {
  2757       FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, true);
  2758       FLAG_SET_CMDLINE(bool, CMSIncrementalMode, true);
  2759     // -Xnoincgc: no i-CMS
  2760     } else if (match_option(option, "-Xnoincgc", &tail)) {
  2761       FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, false);
  2762       FLAG_SET_CMDLINE(bool, CMSIncrementalMode, false);
  2763     // -Xconcgc
  2764     } else if (match_option(option, "-Xconcgc", &tail)) {
  2765       FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, true);
  2766     // -Xnoconcgc
  2767     } else if (match_option(option, "-Xnoconcgc", &tail)) {
  2768       FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, false);
  2769     // -Xbatch
  2770     } else if (match_option(option, "-Xbatch", &tail)) {
  2771       FLAG_SET_CMDLINE(bool, BackgroundCompilation, false);
  2772     // -Xmn for compatibility with other JVM vendors
  2773     } else if (match_option(option, "-Xmn", &tail)) {
  2774       julong long_initial_young_size = 0;
  2775       ArgsRange errcode = parse_memory_size(tail, &long_initial_young_size, 1);
  2776       if (errcode != arg_in_range) {
  2777         jio_fprintf(defaultStream::error_stream(),
  2778                     "Invalid initial young generation size: %s\n", option->optionString);
  2779         describe_range_error(errcode);
  2780         return JNI_EINVAL;
  2782       FLAG_SET_CMDLINE(uintx, MaxNewSize, (uintx)long_initial_young_size);
  2783       FLAG_SET_CMDLINE(uintx, NewSize, (uintx)long_initial_young_size);
  2784     // -Xms
  2785     } else if (match_option(option, "-Xms", &tail)) {
  2786       julong long_initial_heap_size = 0;
  2787       // an initial heap size of 0 means automatically determine
  2788       ArgsRange errcode = parse_memory_size(tail, &long_initial_heap_size, 0);
  2789       if (errcode != arg_in_range) {
  2790         jio_fprintf(defaultStream::error_stream(),
  2791                     "Invalid initial heap size: %s\n", option->optionString);
  2792         describe_range_error(errcode);
  2793         return JNI_EINVAL;
  2795       set_min_heap_size((uintx)long_initial_heap_size);
  2796       // Currently the minimum size and the initial heap sizes are the same.
  2797       // Can be overridden with -XX:InitialHeapSize.
  2798       FLAG_SET_CMDLINE(uintx, InitialHeapSize, (uintx)long_initial_heap_size);
  2799     // -Xmx
  2800     } else if (match_option(option, "-Xmx", &tail) || match_option(option, "-XX:MaxHeapSize=", &tail)) {
  2801       julong long_max_heap_size = 0;
  2802       ArgsRange errcode = parse_memory_size(tail, &long_max_heap_size, 1);
  2803       if (errcode != arg_in_range) {
  2804         jio_fprintf(defaultStream::error_stream(),
  2805                     "Invalid maximum heap size: %s\n", option->optionString);
  2806         describe_range_error(errcode);
  2807         return JNI_EINVAL;
  2809       FLAG_SET_CMDLINE(uintx, MaxHeapSize, (uintx)long_max_heap_size);
  2810     // Xmaxf
  2811     } else if (match_option(option, "-Xmaxf", &tail)) {
  2812       char* err;
  2813       int maxf = (int)(strtod(tail, &err) * 100);
  2814       if (*err != '\0' || *tail == '\0' || maxf < 0 || maxf > 100) {
  2815         jio_fprintf(defaultStream::error_stream(),
  2816                     "Bad max heap free percentage size: %s\n",
  2817                     option->optionString);
  2818         return JNI_EINVAL;
  2819       } else {
  2820         FLAG_SET_CMDLINE(uintx, MaxHeapFreeRatio, maxf);
  2822     // Xminf
  2823     } else if (match_option(option, "-Xminf", &tail)) {
  2824       char* err;
  2825       int minf = (int)(strtod(tail, &err) * 100);
  2826       if (*err != '\0' || *tail == '\0' || minf < 0 || minf > 100) {
  2827         jio_fprintf(defaultStream::error_stream(),
  2828                     "Bad min heap free percentage size: %s\n",
  2829                     option->optionString);
  2830         return JNI_EINVAL;
  2831       } else {
  2832         FLAG_SET_CMDLINE(uintx, MinHeapFreeRatio, minf);
  2834     // -Xss
  2835     } else if (match_option(option, "-Xss", &tail)) {
  2836       julong long_ThreadStackSize = 0;
  2837       ArgsRange errcode = parse_memory_size(tail, &long_ThreadStackSize, 1000);
  2838       if (errcode != arg_in_range) {
  2839         jio_fprintf(defaultStream::error_stream(),
  2840                     "Invalid thread stack size: %s\n", option->optionString);
  2841         describe_range_error(errcode);
  2842         return JNI_EINVAL;
  2844       // Internally track ThreadStackSize in units of 1024 bytes.
  2845       FLAG_SET_CMDLINE(intx, ThreadStackSize,
  2846                               round_to((int)long_ThreadStackSize, K) / K);
  2847     // -Xoss
  2848     } else if (match_option(option, "-Xoss", &tail)) {
  2849           // HotSpot does not have separate native and Java stacks, ignore silently for compatibility
  2850     } else if (match_option(option, "-XX:CodeCacheExpansionSize=", &tail)) {
  2851       julong long_CodeCacheExpansionSize = 0;
  2852       ArgsRange errcode = parse_memory_size(tail, &long_CodeCacheExpansionSize, os::vm_page_size());
  2853       if (errcode != arg_in_range) {
  2854         jio_fprintf(defaultStream::error_stream(),
  2855                    "Invalid argument: %s. Must be at least %luK.\n", option->optionString,
  2856                    os::vm_page_size()/K);
  2857         return JNI_EINVAL;
  2859       FLAG_SET_CMDLINE(uintx, CodeCacheExpansionSize, (uintx)long_CodeCacheExpansionSize);
  2860     } else if (match_option(option, "-Xmaxjitcodesize", &tail) ||
  2861                match_option(option, "-XX:ReservedCodeCacheSize=", &tail)) {
  2862       julong long_ReservedCodeCacheSize = 0;
  2864       ArgsRange errcode = parse_memory_size(tail, &long_ReservedCodeCacheSize, 1);
  2865       if (errcode != arg_in_range) {
  2866         jio_fprintf(defaultStream::error_stream(),
  2867                     "Invalid maximum code cache size: %s.\n", option->optionString);
  2868         return JNI_EINVAL;
  2870       FLAG_SET_CMDLINE(uintx, ReservedCodeCacheSize, (uintx)long_ReservedCodeCacheSize);
  2871       //-XX:IncreaseFirstTierCompileThresholdAt=
  2872       } else if (match_option(option, "-XX:IncreaseFirstTierCompileThresholdAt=", &tail)) {
  2873         uintx uint_IncreaseFirstTierCompileThresholdAt = 0;
  2874         if (!parse_uintx(tail, &uint_IncreaseFirstTierCompileThresholdAt, 0) || uint_IncreaseFirstTierCompileThresholdAt > 99) {
  2875           jio_fprintf(defaultStream::error_stream(),
  2876                       "Invalid value for IncreaseFirstTierCompileThresholdAt: %s. Should be between 0 and 99.\n",
  2877                       option->optionString);
  2878           return JNI_EINVAL;
  2880         FLAG_SET_CMDLINE(uintx, IncreaseFirstTierCompileThresholdAt, (uintx)uint_IncreaseFirstTierCompileThresholdAt);
  2881     // -green
  2882     } else if (match_option(option, "-green", &tail)) {
  2883       jio_fprintf(defaultStream::error_stream(),
  2884                   "Green threads support not available\n");
  2885           return JNI_EINVAL;
  2886     // -native
  2887     } else if (match_option(option, "-native", &tail)) {
  2888           // HotSpot always uses native threads, ignore silently for compatibility
  2889     // -Xsqnopause
  2890     } else if (match_option(option, "-Xsqnopause", &tail)) {
  2891           // EVM option, ignore silently for compatibility
  2892     // -Xrs
  2893     } else if (match_option(option, "-Xrs", &tail)) {
  2894           // Classic/EVM option, new functionality
  2895       FLAG_SET_CMDLINE(bool, ReduceSignalUsage, true);
  2896     } else if (match_option(option, "-Xusealtsigs", &tail)) {
  2897           // change default internal VM signals used - lower case for back compat
  2898       FLAG_SET_CMDLINE(bool, UseAltSigs, true);
  2899     // -Xoptimize
  2900     } else if (match_option(option, "-Xoptimize", &tail)) {
  2901           // EVM option, ignore silently for compatibility
  2902     // -Xprof
  2903     } else if (match_option(option, "-Xprof", &tail)) {
  2904 #if INCLUDE_FPROF
  2905       _has_profile = true;
  2906 #else // INCLUDE_FPROF
  2907       jio_fprintf(defaultStream::error_stream(),
  2908         "Flat profiling is not supported in this VM.\n");
  2909       return JNI_ERR;
  2910 #endif // INCLUDE_FPROF
  2911     // -Xconcurrentio
  2912     } else if (match_option(option, "-Xconcurrentio", &tail)) {
  2913       FLAG_SET_CMDLINE(bool, UseLWPSynchronization, true);
  2914       FLAG_SET_CMDLINE(bool, BackgroundCompilation, false);
  2915       FLAG_SET_CMDLINE(intx, DeferThrSuspendLoopCount, 1);
  2916       FLAG_SET_CMDLINE(bool, UseTLAB, false);
  2917       FLAG_SET_CMDLINE(uintx, NewSizeThreadIncrease, 16 * K);  // 20Kb per thread added to new generation
  2919       // -Xinternalversion
  2920     } else if (match_option(option, "-Xinternalversion", &tail)) {
  2921       jio_fprintf(defaultStream::output_stream(), "%s\n",
  2922                   VM_Version::internal_vm_info_string());
  2923       vm_exit(0);
  2924 #ifndef PRODUCT
  2925     // -Xprintflags
  2926     } else if (match_option(option, "-Xprintflags", &tail)) {
  2927       CommandLineFlags::printFlags(tty, false);
  2928       vm_exit(0);
  2929 #endif
  2930     // -D
  2931     } else if (match_option(option, "-D", &tail)) {
  2932       if (!add_property(tail)) {
  2933         return JNI_ENOMEM;
  2935       // Out of the box management support
  2936       if (match_option(option, "-Dcom.sun.management", &tail)) {
  2937 #if INCLUDE_MANAGEMENT
  2938         FLAG_SET_CMDLINE(bool, ManagementServer, true);
  2939 #else
  2940         jio_fprintf(defaultStream::output_stream(),
  2941           "-Dcom.sun.management is not supported in this VM.\n");
  2942         return JNI_ERR;
  2943 #endif
  2945     // -Xint
  2946     } else if (match_option(option, "-Xint", &tail)) {
  2947           set_mode_flags(_int);
  2948     // -Xmixed
  2949     } else if (match_option(option, "-Xmixed", &tail)) {
  2950           set_mode_flags(_mixed);
  2951     // -Xcomp
  2952     } else if (match_option(option, "-Xcomp", &tail)) {
  2953       // for testing the compiler; turn off all flags that inhibit compilation
  2954           set_mode_flags(_comp);
  2955     // -Xshare:dump
  2956     } else if (match_option(option, "-Xshare:dump", &tail)) {
  2957       FLAG_SET_CMDLINE(bool, DumpSharedSpaces, true);
  2958       set_mode_flags(_int);     // Prevent compilation, which creates objects
  2959     // -Xshare:on
  2960     } else if (match_option(option, "-Xshare:on", &tail)) {
  2961       FLAG_SET_CMDLINE(bool, UseSharedSpaces, true);
  2962       FLAG_SET_CMDLINE(bool, RequireSharedSpaces, true);
  2963     // -Xshare:auto
  2964     } else if (match_option(option, "-Xshare:auto", &tail)) {
  2965       FLAG_SET_CMDLINE(bool, UseSharedSpaces, true);
  2966       FLAG_SET_CMDLINE(bool, RequireSharedSpaces, false);
  2967     // -Xshare:off
  2968     } else if (match_option(option, "-Xshare:off", &tail)) {
  2969       FLAG_SET_CMDLINE(bool, UseSharedSpaces, false);
  2970       FLAG_SET_CMDLINE(bool, RequireSharedSpaces, false);
  2971     // -Xverify
  2972     } else if (match_option(option, "-Xverify", &tail)) {
  2973       if (strcmp(tail, ":all") == 0 || strcmp(tail, "") == 0) {
  2974         FLAG_SET_CMDLINE(bool, BytecodeVerificationLocal, true);
  2975         FLAG_SET_CMDLINE(bool, BytecodeVerificationRemote, true);
  2976       } else if (strcmp(tail, ":remote") == 0) {
  2977         FLAG_SET_CMDLINE(bool, BytecodeVerificationLocal, false);
  2978         FLAG_SET_CMDLINE(bool, BytecodeVerificationRemote, true);
  2979       } else if (strcmp(tail, ":none") == 0) {
  2980         FLAG_SET_CMDLINE(bool, BytecodeVerificationLocal, false);
  2981         FLAG_SET_CMDLINE(bool, BytecodeVerificationRemote, false);
  2982       } else if (is_bad_option(option, args->ignoreUnrecognized, "verification")) {
  2983         return JNI_EINVAL;
  2985     // -Xdebug
  2986     } else if (match_option(option, "-Xdebug", &tail)) {
  2987       // note this flag has been used, then ignore
  2988       set_xdebug_mode(true);
  2989     // -Xnoagent
  2990     } else if (match_option(option, "-Xnoagent", &tail)) {
  2991       // For compatibility with classic. HotSpot refuses to load the old style agent.dll.
  2992     } else if (match_option(option, "-Xboundthreads", &tail)) {
  2993       // Bind user level threads to kernel threads (Solaris only)
  2994       FLAG_SET_CMDLINE(bool, UseBoundThreads, true);
  2995     } else if (match_option(option, "-Xloggc:", &tail)) {
  2996       // Redirect GC output to the file. -Xloggc:<filename>
  2997       // ostream_init_log(), when called will use this filename
  2998       // to initialize a fileStream.
  2999       _gc_log_filename = strdup(tail);
  3000      if (!is_filename_valid(_gc_log_filename)) {
  3001        jio_fprintf(defaultStream::output_stream(),
  3002                   "Invalid file name for use with -Xloggc: Filename can only contain the "
  3003                   "characters [A-Z][a-z][0-9]-_.%%[p|t] but it has been %s\n"
  3004                   "Note %%p or %%t can only be used once\n", _gc_log_filename);
  3005         return JNI_EINVAL;
  3007       FLAG_SET_CMDLINE(bool, PrintGC, true);
  3008       FLAG_SET_CMDLINE(bool, PrintGCTimeStamps, true);
  3010     // JNI hooks
  3011     } else if (match_option(option, "-Xcheck", &tail)) {
  3012       if (!strcmp(tail, ":jni")) {
  3013 #if !INCLUDE_JNI_CHECK
  3014         warning("JNI CHECKING is not supported in this VM");
  3015 #else
  3016         CheckJNICalls = true;
  3017 #endif // INCLUDE_JNI_CHECK
  3018       } else if (is_bad_option(option, args->ignoreUnrecognized,
  3019                                      "check")) {
  3020         return JNI_EINVAL;
  3022     } else if (match_option(option, "vfprintf", &tail)) {
  3023       _vfprintf_hook = CAST_TO_FN_PTR(vfprintf_hook_t, option->extraInfo);
  3024     } else if (match_option(option, "exit", &tail)) {
  3025       _exit_hook = CAST_TO_FN_PTR(exit_hook_t, option->extraInfo);
  3026     } else if (match_option(option, "abort", &tail)) {
  3027       _abort_hook = CAST_TO_FN_PTR(abort_hook_t, option->extraInfo);
  3028     // -XX:+AggressiveHeap
  3029     } else if (match_option(option, "-XX:+AggressiveHeap", &tail)) {
  3031       // This option inspects the machine and attempts to set various
  3032       // parameters to be optimal for long-running, memory allocation
  3033       // intensive jobs.  It is intended for machines with large
  3034       // amounts of cpu and memory.
  3036       // initHeapSize is needed since _initial_heap_size is 4 bytes on a 32 bit
  3037       // VM, but we may not be able to represent the total physical memory
  3038       // available (like having 8gb of memory on a box but using a 32bit VM).
  3039       // Thus, we need to make sure we're using a julong for intermediate
  3040       // calculations.
  3041       julong initHeapSize;
  3042       julong total_memory = os::physical_memory();
  3044       if (total_memory < (julong)256*M) {
  3045         jio_fprintf(defaultStream::error_stream(),
  3046                     "You need at least 256mb of memory to use -XX:+AggressiveHeap\n");
  3047         vm_exit(1);
  3050       // The heap size is half of available memory, or (at most)
  3051       // all of possible memory less 160mb (leaving room for the OS
  3052       // when using ISM).  This is the maximum; because adaptive sizing
  3053       // is turned on below, the actual space used may be smaller.
  3055       initHeapSize = MIN2(total_memory / (julong)2,
  3056                           total_memory - (julong)160*M);
  3058       initHeapSize = limit_by_allocatable_memory(initHeapSize);
  3060       if (FLAG_IS_DEFAULT(MaxHeapSize)) {
  3061          FLAG_SET_CMDLINE(uintx, MaxHeapSize, initHeapSize);
  3062          FLAG_SET_CMDLINE(uintx, InitialHeapSize, initHeapSize);
  3063          // Currently the minimum size and the initial heap sizes are the same.
  3064          set_min_heap_size(initHeapSize);
  3066       if (FLAG_IS_DEFAULT(NewSize)) {
  3067          // Make the young generation 3/8ths of the total heap.
  3068          FLAG_SET_CMDLINE(uintx, NewSize,
  3069                                 ((julong)MaxHeapSize / (julong)8) * (julong)3);
  3070          FLAG_SET_CMDLINE(uintx, MaxNewSize, NewSize);
  3073 #ifndef _ALLBSD_SOURCE  // UseLargePages is not yet supported on BSD.
  3074       FLAG_SET_DEFAULT(UseLargePages, true);
  3075 #endif
  3077       // Increase some data structure sizes for efficiency
  3078       FLAG_SET_CMDLINE(uintx, BaseFootPrintEstimate, MaxHeapSize);
  3079       FLAG_SET_CMDLINE(bool, ResizeTLAB, false);
  3080       FLAG_SET_CMDLINE(uintx, TLABSize, 256*K);
  3082       // See the OldPLABSize comment below, but replace 'after promotion'
  3083       // with 'after copying'.  YoungPLABSize is the size of the survivor
  3084       // space per-gc-thread buffers.  The default is 4kw.
  3085       FLAG_SET_CMDLINE(uintx, YoungPLABSize, 256*K);      // Note: this is in words
  3087       // OldPLABSize is the size of the buffers in the old gen that
  3088       // UseParallelGC uses to promote live data that doesn't fit in the
  3089       // survivor spaces.  At any given time, there's one for each gc thread.
  3090       // The default size is 1kw. These buffers are rarely used, since the
  3091       // survivor spaces are usually big enough.  For specjbb, however, there
  3092       // are occasions when there's lots of live data in the young gen
  3093       // and we end up promoting some of it.  We don't have a definite
  3094       // explanation for why bumping OldPLABSize helps, but the theory
  3095       // is that a bigger PLAB results in retaining something like the
  3096       // original allocation order after promotion, which improves mutator
  3097       // locality.  A minor effect may be that larger PLABs reduce the
  3098       // number of PLAB allocation events during gc.  The value of 8kw
  3099       // was arrived at by experimenting with specjbb.
  3100       FLAG_SET_CMDLINE(uintx, OldPLABSize, 8*K);  // Note: this is in words
  3102       // Enable parallel GC and adaptive generation sizing
  3103       FLAG_SET_CMDLINE(bool, UseParallelGC, true);
  3104       FLAG_SET_DEFAULT(ParallelGCThreads,
  3105                        Abstract_VM_Version::parallel_worker_threads());
  3107       // Encourage steady state memory management
  3108       FLAG_SET_CMDLINE(uintx, ThresholdTolerance, 100);
  3110       // This appears to improve mutator locality
  3111       FLAG_SET_CMDLINE(bool, ScavengeBeforeFullGC, false);
  3113       // Get around early Solaris scheduling bug
  3114       // (affinity vs other jobs on system)
  3115       // but disallow DR and offlining (5008695).
  3116       FLAG_SET_CMDLINE(bool, BindGCTaskThreadsToCPUs, true);
  3118     } else if (match_option(option, "-XX:+NeverTenure", &tail)) {
  3119       // The last option must always win.
  3120       FLAG_SET_CMDLINE(bool, AlwaysTenure, false);
  3121       FLAG_SET_CMDLINE(bool, NeverTenure, true);
  3122     } else if (match_option(option, "-XX:+AlwaysTenure", &tail)) {
  3123       // The last option must always win.
  3124       FLAG_SET_CMDLINE(bool, NeverTenure, false);
  3125       FLAG_SET_CMDLINE(bool, AlwaysTenure, true);
  3126     } else if (match_option(option, "-XX:+CMSPermGenSweepingEnabled", &tail) ||
  3127                match_option(option, "-XX:-CMSPermGenSweepingEnabled", &tail)) {
  3128       jio_fprintf(defaultStream::error_stream(),
  3129         "Please use CMSClassUnloadingEnabled in place of "
  3130         "CMSPermGenSweepingEnabled in the future\n");
  3131     } else if (match_option(option, "-XX:+UseGCTimeLimit", &tail)) {
  3132       FLAG_SET_CMDLINE(bool, UseGCOverheadLimit, true);
  3133       jio_fprintf(defaultStream::error_stream(),
  3134         "Please use -XX:+UseGCOverheadLimit in place of "
  3135         "-XX:+UseGCTimeLimit in the future\n");
  3136     } else if (match_option(option, "-XX:-UseGCTimeLimit", &tail)) {
  3137       FLAG_SET_CMDLINE(bool, UseGCOverheadLimit, false);
  3138       jio_fprintf(defaultStream::error_stream(),
  3139         "Please use -XX:-UseGCOverheadLimit in place of "
  3140         "-XX:-UseGCTimeLimit in the future\n");
  3141     // The TLE options are for compatibility with 1.3 and will be
  3142     // removed without notice in a future release.  These options
  3143     // are not to be documented.
  3144     } else if (match_option(option, "-XX:MaxTLERatio=", &tail)) {
  3145       // No longer used.
  3146     } else if (match_option(option, "-XX:+ResizeTLE", &tail)) {
  3147       FLAG_SET_CMDLINE(bool, ResizeTLAB, true);
  3148     } else if (match_option(option, "-XX:-ResizeTLE", &tail)) {
  3149       FLAG_SET_CMDLINE(bool, ResizeTLAB, false);
  3150     } else if (match_option(option, "-XX:+PrintTLE", &tail)) {
  3151       FLAG_SET_CMDLINE(bool, PrintTLAB, true);
  3152     } else if (match_option(option, "-XX:-PrintTLE", &tail)) {
  3153       FLAG_SET_CMDLINE(bool, PrintTLAB, false);
  3154     } else if (match_option(option, "-XX:TLEFragmentationRatio=", &tail)) {
  3155       // No longer used.
  3156     } else if (match_option(option, "-XX:TLESize=", &tail)) {
  3157       julong long_tlab_size = 0;
  3158       ArgsRange errcode = parse_memory_size(tail, &long_tlab_size, 1);
  3159       if (errcode != arg_in_range) {
  3160         jio_fprintf(defaultStream::error_stream(),
  3161                     "Invalid TLAB size: %s\n", option->optionString);
  3162         describe_range_error(errcode);
  3163         return JNI_EINVAL;
  3165       FLAG_SET_CMDLINE(uintx, TLABSize, long_tlab_size);
  3166     } else if (match_option(option, "-XX:TLEThreadRatio=", &tail)) {
  3167       // No longer used.
  3168     } else if (match_option(option, "-XX:+UseTLE", &tail)) {
  3169       FLAG_SET_CMDLINE(bool, UseTLAB, true);
  3170     } else if (match_option(option, "-XX:-UseTLE", &tail)) {
  3171       FLAG_SET_CMDLINE(bool, UseTLAB, false);
  3172     } else if (match_option(option, "-XX:+DisplayVMOutputToStderr", &tail)) {
  3173       FLAG_SET_CMDLINE(bool, DisplayVMOutputToStdout, false);
  3174       FLAG_SET_CMDLINE(bool, DisplayVMOutputToStderr, true);
  3175     } else if (match_option(option, "-XX:+DisplayVMOutputToStdout", &tail)) {
  3176       FLAG_SET_CMDLINE(bool, DisplayVMOutputToStderr, false);
  3177       FLAG_SET_CMDLINE(bool, DisplayVMOutputToStdout, true);
  3178     } else if (match_option(option, "-XX:+ExtendedDTraceProbes", &tail)) {
  3179 #if defined(DTRACE_ENABLED)
  3180       FLAG_SET_CMDLINE(bool, ExtendedDTraceProbes, true);
  3181       FLAG_SET_CMDLINE(bool, DTraceMethodProbes, true);
  3182       FLAG_SET_CMDLINE(bool, DTraceAllocProbes, true);
  3183       FLAG_SET_CMDLINE(bool, DTraceMonitorProbes, true);
  3184 #else // defined(DTRACE_ENABLED)
  3185       jio_fprintf(defaultStream::error_stream(),
  3186                   "ExtendedDTraceProbes flag is not applicable for this configuration\n");
  3187       return JNI_EINVAL;
  3188 #endif // defined(DTRACE_ENABLED)
  3189 #ifdef ASSERT
  3190     } else if (match_option(option, "-XX:+FullGCALot", &tail)) {
  3191       FLAG_SET_CMDLINE(bool, FullGCALot, true);
  3192       // disable scavenge before parallel mark-compact
  3193       FLAG_SET_CMDLINE(bool, ScavengeBeforeFullGC, false);
  3194 #endif
  3195     } else if (match_option(option, "-XX:CMSParPromoteBlocksToClaim=", &tail)) {
  3196       julong cms_blocks_to_claim = (julong)atol(tail);
  3197       FLAG_SET_CMDLINE(uintx, CMSParPromoteBlocksToClaim, cms_blocks_to_claim);
  3198       jio_fprintf(defaultStream::error_stream(),
  3199         "Please use -XX:OldPLABSize in place of "
  3200         "-XX:CMSParPromoteBlocksToClaim in the future\n");
  3201     } else if (match_option(option, "-XX:ParCMSPromoteBlocksToClaim=", &tail)) {
  3202       julong cms_blocks_to_claim = (julong)atol(tail);
  3203       FLAG_SET_CMDLINE(uintx, CMSParPromoteBlocksToClaim, cms_blocks_to_claim);
  3204       jio_fprintf(defaultStream::error_stream(),
  3205         "Please use -XX:OldPLABSize in place of "
  3206         "-XX:ParCMSPromoteBlocksToClaim in the future\n");
  3207     } else if (match_option(option, "-XX:ParallelGCOldGenAllocBufferSize=", &tail)) {
  3208       julong old_plab_size = 0;
  3209       ArgsRange errcode = parse_memory_size(tail, &old_plab_size, 1);
  3210       if (errcode != arg_in_range) {
  3211         jio_fprintf(defaultStream::error_stream(),
  3212                     "Invalid old PLAB size: %s\n", option->optionString);
  3213         describe_range_error(errcode);
  3214         return JNI_EINVAL;
  3216       FLAG_SET_CMDLINE(uintx, OldPLABSize, old_plab_size);
  3217       jio_fprintf(defaultStream::error_stream(),
  3218                   "Please use -XX:OldPLABSize in place of "
  3219                   "-XX:ParallelGCOldGenAllocBufferSize in the future\n");
  3220     } else if (match_option(option, "-XX:ParallelGCToSpaceAllocBufferSize=", &tail)) {
  3221       julong young_plab_size = 0;
  3222       ArgsRange errcode = parse_memory_size(tail, &young_plab_size, 1);
  3223       if (errcode != arg_in_range) {
  3224         jio_fprintf(defaultStream::error_stream(),
  3225                     "Invalid young PLAB size: %s\n", option->optionString);
  3226         describe_range_error(errcode);
  3227         return JNI_EINVAL;
  3229       FLAG_SET_CMDLINE(uintx, YoungPLABSize, young_plab_size);
  3230       jio_fprintf(defaultStream::error_stream(),
  3231                   "Please use -XX:YoungPLABSize in place of "
  3232                   "-XX:ParallelGCToSpaceAllocBufferSize in the future\n");
  3233     } else if (match_option(option, "-XX:CMSMarkStackSize=", &tail) ||
  3234                match_option(option, "-XX:G1MarkStackSize=", &tail)) {
  3235       julong stack_size = 0;
  3236       ArgsRange errcode = parse_memory_size(tail, &stack_size, 1);
  3237       if (errcode != arg_in_range) {
  3238         jio_fprintf(defaultStream::error_stream(),
  3239                     "Invalid mark stack size: %s\n", option->optionString);
  3240         describe_range_error(errcode);
  3241         return JNI_EINVAL;
  3243       FLAG_SET_CMDLINE(uintx, MarkStackSize, stack_size);
  3244     } else if (match_option(option, "-XX:CMSMarkStackSizeMax=", &tail)) {
  3245       julong max_stack_size = 0;
  3246       ArgsRange errcode = parse_memory_size(tail, &max_stack_size, 1);
  3247       if (errcode != arg_in_range) {
  3248         jio_fprintf(defaultStream::error_stream(),
  3249                     "Invalid maximum mark stack size: %s\n",
  3250                     option->optionString);
  3251         describe_range_error(errcode);
  3252         return JNI_EINVAL;
  3254       FLAG_SET_CMDLINE(uintx, MarkStackSizeMax, max_stack_size);
  3255     } else if (match_option(option, "-XX:ParallelMarkingThreads=", &tail) ||
  3256                match_option(option, "-XX:ParallelCMSThreads=", &tail)) {
  3257       uintx conc_threads = 0;
  3258       if (!parse_uintx(tail, &conc_threads, 1)) {
  3259         jio_fprintf(defaultStream::error_stream(),
  3260                     "Invalid concurrent threads: %s\n", option->optionString);
  3261         return JNI_EINVAL;
  3263       FLAG_SET_CMDLINE(uintx, ConcGCThreads, conc_threads);
  3264     } else if (match_option(option, "-XX:MaxDirectMemorySize=", &tail)) {
  3265       julong max_direct_memory_size = 0;
  3266       ArgsRange errcode = parse_memory_size(tail, &max_direct_memory_size, 0);
  3267       if (errcode != arg_in_range) {
  3268         jio_fprintf(defaultStream::error_stream(),
  3269                     "Invalid maximum direct memory size: %s\n",
  3270                     option->optionString);
  3271         describe_range_error(errcode);
  3272         return JNI_EINVAL;
  3274       FLAG_SET_CMDLINE(uintx, MaxDirectMemorySize, max_direct_memory_size);
  3275     } else if (match_option(option, "-XX:+UseVMInterruptibleIO", &tail)) {
  3276       // NOTE! In JDK 9, the UseVMInterruptibleIO flag will completely go
  3277       //       away and will cause VM initialization failures!
  3278       warning("-XX:+UseVMInterruptibleIO is obsolete and will be removed in a future release.");
  3279       FLAG_SET_CMDLINE(bool, UseVMInterruptibleIO, true);
  3280 #if !INCLUDE_MANAGEMENT
  3281     } else if (match_option(option, "-XX:+ManagementServer", &tail)) {
  3282         jio_fprintf(defaultStream::error_stream(),
  3283           "ManagementServer is not supported in this VM.\n");
  3284         return JNI_ERR;
  3285 #endif // INCLUDE_MANAGEMENT
  3286     } else if (match_option(option, "-XX:", &tail)) { // -XX:xxxx
  3287       // Skip -XX:Flags= since that case has already been handled
  3288       if (strncmp(tail, "Flags=", strlen("Flags=")) != 0) {
  3289         if (!process_argument(tail, args->ignoreUnrecognized, origin)) {
  3290           return JNI_EINVAL;
  3293     // Unknown option
  3294     } else if (is_bad_option(option, args->ignoreUnrecognized)) {
  3295       return JNI_ERR;
  3299   // PrintSharedArchiveAndExit will turn on
  3300   //   -Xshare:on
  3301   //   -XX:+TraceClassPaths
  3302   if (PrintSharedArchiveAndExit) {
  3303     FLAG_SET_CMDLINE(bool, UseSharedSpaces, true);
  3304     FLAG_SET_CMDLINE(bool, RequireSharedSpaces, true);
  3305     FLAG_SET_CMDLINE(bool, TraceClassPaths, true);
  3308   // Change the default value for flags  which have different default values
  3309   // when working with older JDKs.
  3310 #ifdef LINUX
  3311  if (JDK_Version::current().compare_major(6) <= 0 &&
  3312       FLAG_IS_DEFAULT(UseLinuxPosixThreadCPUClocks)) {
  3313     FLAG_SET_DEFAULT(UseLinuxPosixThreadCPUClocks, false);
  3315 #endif // LINUX
  3316   fix_appclasspath();
  3317   return JNI_OK;
  3320 // Remove all empty paths from the app classpath (if IgnoreEmptyClassPaths is enabled)
  3321 //
  3322 // This is necessary because some apps like to specify classpath like -cp foo.jar:${XYZ}:bar.jar
  3323 // in their start-up scripts. If XYZ is empty, the classpath will look like "-cp foo.jar::bar.jar".
  3324 // Java treats such empty paths as if the user specified "-cp foo.jar:.:bar.jar". I.e., an empty
  3325 // path is treated as the current directory.
  3326 //
  3327 // This causes problems with CDS, which requires that all directories specified in the classpath
  3328 // must be empty. In most cases, applications do NOT want to load classes from the current
  3329 // directory anyway. Adding -XX:+IgnoreEmptyClassPaths will make these applications' start-up
  3330 // scripts compatible with CDS.
  3331 void Arguments::fix_appclasspath() {
  3332   if (IgnoreEmptyClassPaths) {
  3333     const char separator = *os::path_separator();
  3334     const char* src = _java_class_path->value();
  3336     // skip over all the leading empty paths
  3337     while (*src == separator) {
  3338       src ++;
  3341     char* copy = AllocateHeap(strlen(src) + 1, mtInternal);
  3342     strncpy(copy, src, strlen(src) + 1);
  3344     // trim all trailing empty paths
  3345     for (char* tail = copy + strlen(copy) - 1; tail >= copy && *tail == separator; tail--) {
  3346       *tail = '\0';
  3349     char from[3] = {separator, separator, '\0'};
  3350     char to  [2] = {separator, '\0'};
  3351     while (StringUtils::replace_no_expand(copy, from, to) > 0) {
  3352       // Keep replacing "::" -> ":" until we have no more "::" (non-windows)
  3353       // Keep replacing ";;" -> ";" until we have no more ";;" (windows)
  3356     _java_class_path->set_value(copy);
  3357     FreeHeap(copy); // a copy was made by set_value, so don't need this anymore
  3360   if (!PrintSharedArchiveAndExit) {
  3361     ClassLoader::trace_class_path("[classpath: ", _java_class_path->value());
  3365 jint Arguments::finalize_vm_init_args(SysClassPath* scp_p, bool scp_assembly_required) {
  3366   // This must be done after all -D arguments have been processed.
  3367   scp_p->expand_endorsed();
  3369   if (scp_assembly_required || scp_p->get_endorsed() != NULL) {
  3370     // Assemble the bootclasspath elements into the final path.
  3371     Arguments::set_sysclasspath(scp_p->combined_path());
  3374   // This must be done after all arguments have been processed.
  3375   // java_compiler() true means set to "NONE" or empty.
  3376   if (java_compiler() && !xdebug_mode()) {
  3377     // For backwards compatibility, we switch to interpreted mode if
  3378     // -Djava.compiler="NONE" or "" is specified AND "-Xdebug" was
  3379     // not specified.
  3380     set_mode_flags(_int);
  3382   if (CompileThreshold == 0) {
  3383     set_mode_flags(_int);
  3386   // eventually fix up InitialTenuringThreshold if only MaxTenuringThreshold is set
  3387   if (FLAG_IS_DEFAULT(InitialTenuringThreshold) && (InitialTenuringThreshold > MaxTenuringThreshold)) {
  3388     FLAG_SET_ERGO(uintx, InitialTenuringThreshold, MaxTenuringThreshold);
  3391 #ifndef COMPILER2
  3392   // Don't degrade server performance for footprint
  3393   if (FLAG_IS_DEFAULT(UseLargePages) &&
  3394       MaxHeapSize < LargePageHeapSizeThreshold) {
  3395     // No need for large granularity pages w/small heaps.
  3396     // Note that large pages are enabled/disabled for both the
  3397     // Java heap and the code cache.
  3398     FLAG_SET_DEFAULT(UseLargePages, false);
  3401 #else
  3402   if (!FLAG_IS_DEFAULT(OptoLoopAlignment) && FLAG_IS_DEFAULT(MaxLoopPad)) {
  3403     FLAG_SET_DEFAULT(MaxLoopPad, OptoLoopAlignment-1);
  3405 #endif
  3407 #ifndef TIERED
  3408   // Tiered compilation is undefined.
  3409   UNSUPPORTED_OPTION(TieredCompilation, "TieredCompilation");
  3410 #endif
  3412   // If we are running in a headless jre, force java.awt.headless property
  3413   // to be true unless the property has already been set.
  3414   // Also allow the OS environment variable JAVA_AWT_HEADLESS to set headless state.
  3415   if (os::is_headless_jre()) {
  3416     const char* headless = Arguments::get_property("java.awt.headless");
  3417     if (headless == NULL) {
  3418       char envbuffer[128];
  3419       if (!os::getenv("JAVA_AWT_HEADLESS", envbuffer, sizeof(envbuffer))) {
  3420         if (!add_property("java.awt.headless=true")) {
  3421           return JNI_ENOMEM;
  3423       } else {
  3424         char buffer[256];
  3425         strcpy(buffer, "java.awt.headless=");
  3426         strcat(buffer, envbuffer);
  3427         if (!add_property(buffer)) {
  3428           return JNI_ENOMEM;
  3434   if (!ArgumentsExt::check_vm_args_consistency()) {
  3435     return JNI_ERR;
  3438   return JNI_OK;
  3441 jint Arguments::parse_java_options_environment_variable(SysClassPath* scp_p, bool* scp_assembly_required_p) {
  3442   return parse_options_environment_variable("_JAVA_OPTIONS", scp_p,
  3443                                             scp_assembly_required_p);
  3446 jint Arguments::parse_java_tool_options_environment_variable(SysClassPath* scp_p, bool* scp_assembly_required_p) {
  3447   return parse_options_environment_variable("JAVA_TOOL_OPTIONS", scp_p,
  3448                                             scp_assembly_required_p);
  3451 jint Arguments::parse_options_environment_variable(const char* name, SysClassPath* scp_p, bool* scp_assembly_required_p) {
  3452   const int N_MAX_OPTIONS = 64;
  3453   const int OPTION_BUFFER_SIZE = 1024;
  3454   char buffer[OPTION_BUFFER_SIZE];
  3456   // The variable will be ignored if it exceeds the length of the buffer.
  3457   // Don't check this variable if user has special privileges
  3458   // (e.g. unix su command).
  3459   if (os::getenv(name, buffer, sizeof(buffer)) &&
  3460       !os::have_special_privileges()) {
  3461     JavaVMOption options[N_MAX_OPTIONS];      // Construct option array
  3462     jio_fprintf(defaultStream::error_stream(),
  3463                 "Picked up %s: %s\n", name, buffer);
  3464     char* rd = buffer;                        // pointer to the input string (rd)
  3465     int i;
  3466     for (i = 0; i < N_MAX_OPTIONS;) {         // repeat for all options in the input string
  3467       while (isspace(*rd)) rd++;              // skip whitespace
  3468       if (*rd == 0) break;                    // we re done when the input string is read completely
  3470       // The output, option string, overwrites the input string.
  3471       // Because of quoting, the pointer to the option string (wrt) may lag the pointer to
  3472       // input string (rd).
  3473       char* wrt = rd;
  3475       options[i++].optionString = wrt;        // Fill in option
  3476       while (*rd != 0 && !isspace(*rd)) {     // unquoted strings terminate with a space or NULL
  3477         if (*rd == '\'' || *rd == '"') {      // handle a quoted string
  3478           int quote = *rd;                    // matching quote to look for
  3479           rd++;                               // don't copy open quote
  3480           while (*rd != quote) {              // include everything (even spaces) up until quote
  3481             if (*rd == 0) {                   // string termination means unmatched string
  3482               jio_fprintf(defaultStream::error_stream(),
  3483                           "Unmatched quote in %s\n", name);
  3484               return JNI_ERR;
  3486             *wrt++ = *rd++;                   // copy to option string
  3488           rd++;                               // don't copy close quote
  3489         } else {
  3490           *wrt++ = *rd++;                     // copy to option string
  3493       // Need to check if we're done before writing a NULL,
  3494       // because the write could be to the byte that rd is pointing to.
  3495       if (*rd++ == 0) {
  3496         *wrt = 0;
  3497         break;
  3499       *wrt = 0;                               // Zero terminate option
  3501     // Construct JavaVMInitArgs structure and parse as if it was part of the command line
  3502     JavaVMInitArgs vm_args;
  3503     vm_args.version = JNI_VERSION_1_2;
  3504     vm_args.options = options;
  3505     vm_args.nOptions = i;
  3506     vm_args.ignoreUnrecognized = IgnoreUnrecognizedVMOptions;
  3508     if (PrintVMOptions) {
  3509       const char* tail;
  3510       for (int i = 0; i < vm_args.nOptions; i++) {
  3511         const JavaVMOption *option = vm_args.options + i;
  3512         if (match_option(option, "-XX:", &tail)) {
  3513           logOption(tail);
  3518     return(parse_each_vm_init_arg(&vm_args, scp_p, scp_assembly_required_p, Flag::ENVIRON_VAR));
  3520   return JNI_OK;
  3523 void Arguments::set_shared_spaces_flags() {
  3524   if (DumpSharedSpaces) {
  3525     if (RequireSharedSpaces) {
  3526       warning("cannot dump shared archive while using shared archive");
  3528     UseSharedSpaces = false;
  3529 #ifdef _LP64
  3530     if (!UseCompressedOops || !UseCompressedClassPointers) {
  3531       vm_exit_during_initialization(
  3532         "Cannot dump shared archive when UseCompressedOops or UseCompressedClassPointers is off.", NULL);
  3534   } else {
  3535     if (!UseCompressedOops || !UseCompressedClassPointers) {
  3536       no_shared_spaces("UseCompressedOops and UseCompressedClassPointers must be on for UseSharedSpaces.");
  3538 #endif
  3542 #if !INCLUDE_ALL_GCS
  3543 static void force_serial_gc() {
  3544   FLAG_SET_DEFAULT(UseSerialGC, true);
  3545   FLAG_SET_DEFAULT(CMSIncrementalMode, false);  // special CMS suboption
  3546   UNSUPPORTED_GC_OPTION(UseG1GC);
  3547   UNSUPPORTED_GC_OPTION(UseParallelGC);
  3548   UNSUPPORTED_GC_OPTION(UseParallelOldGC);
  3549   UNSUPPORTED_GC_OPTION(UseConcMarkSweepGC);
  3550   UNSUPPORTED_GC_OPTION(UseParNewGC);
  3552 #endif // INCLUDE_ALL_GCS
  3554 // Sharing support
  3555 // Construct the path to the archive
  3556 static char* get_shared_archive_path() {
  3557   char *shared_archive_path;
  3558   if (SharedArchiveFile == NULL) {
  3559     char jvm_path[JVM_MAXPATHLEN];
  3560     os::jvm_path(jvm_path, sizeof(jvm_path));
  3561     char *end = strrchr(jvm_path, *os::file_separator());
  3562     if (end != NULL) *end = '\0';
  3563     size_t jvm_path_len = strlen(jvm_path);
  3564     size_t file_sep_len = strlen(os::file_separator());
  3565     shared_archive_path = NEW_C_HEAP_ARRAY(char, jvm_path_len +
  3566         file_sep_len + 20, mtInternal);
  3567     if (shared_archive_path != NULL) {
  3568       strncpy(shared_archive_path, jvm_path, jvm_path_len + 1);
  3569       strncat(shared_archive_path, os::file_separator(), file_sep_len);
  3570       strncat(shared_archive_path, "classes.jsa", 11);
  3572   } else {
  3573     shared_archive_path = NEW_C_HEAP_ARRAY(char, strlen(SharedArchiveFile) + 1, mtInternal);
  3574     if (shared_archive_path != NULL) {
  3575       strncpy(shared_archive_path, SharedArchiveFile, strlen(SharedArchiveFile) + 1);
  3578   return shared_archive_path;
  3581 #ifndef PRODUCT
  3582 // Determine whether LogVMOutput should be implicitly turned on.
  3583 static bool use_vm_log() {
  3584   if (LogCompilation || !FLAG_IS_DEFAULT(LogFile) ||
  3585       PrintCompilation || PrintInlining || PrintDependencies || PrintNativeNMethods ||
  3586       PrintDebugInfo || PrintRelocations || PrintNMethods || PrintExceptionHandlers ||
  3587       PrintAssembly || TraceDeoptimization || TraceDependencies ||
  3588       (VerifyDependencies && FLAG_IS_CMDLINE(VerifyDependencies))) {
  3589     return true;
  3592 #ifdef COMPILER1
  3593   if (PrintC1Statistics) {
  3594     return true;
  3596 #endif // COMPILER1
  3598 #ifdef COMPILER2
  3599   if (PrintOptoAssembly || PrintOptoStatistics) {
  3600     return true;
  3602 #endif // COMPILER2
  3604   return false;
  3606 #endif // PRODUCT
  3608 // Parse entry point called from JNI_CreateJavaVM
  3610 jint Arguments::parse(const JavaVMInitArgs* args) {
  3612   // Remaining part of option string
  3613   const char* tail;
  3615   // If flag "-XX:Flags=flags-file" is used it will be the first option to be processed.
  3616   const char* hotspotrc = ".hotspotrc";
  3617   bool settings_file_specified = false;
  3618   bool needs_hotspotrc_warning = false;
  3620   const char* flags_file;
  3621   int index;
  3622   for (index = 0; index < args->nOptions; index++) {
  3623     const JavaVMOption *option = args->options + index;
  3624     if (match_option(option, "-XX:Flags=", &tail)) {
  3625       flags_file = tail;
  3626       settings_file_specified = true;
  3628     if (match_option(option, "-XX:+PrintVMOptions", &tail)) {
  3629       PrintVMOptions = true;
  3631     if (match_option(option, "-XX:-PrintVMOptions", &tail)) {
  3632       PrintVMOptions = false;
  3634     if (match_option(option, "-XX:+IgnoreUnrecognizedVMOptions", &tail)) {
  3635       IgnoreUnrecognizedVMOptions = true;
  3637     if (match_option(option, "-XX:-IgnoreUnrecognizedVMOptions", &tail)) {
  3638       IgnoreUnrecognizedVMOptions = false;
  3640     if (match_option(option, "-XX:+PrintFlagsInitial", &tail)) {
  3641       CommandLineFlags::printFlags(tty, false);
  3642       vm_exit(0);
  3644 #if INCLUDE_NMT
  3645     if (match_option(option, "-XX:NativeMemoryTracking", &tail)) {
  3646       // The launcher did not setup nmt environment variable properly.
  3647       if (!MemTracker::check_launcher_nmt_support(tail)) {
  3648         warning("Native Memory Tracking did not setup properly, using wrong launcher?");
  3651       // Verify if nmt option is valid.
  3652       if (MemTracker::verify_nmt_option()) {
  3653         // Late initialization, still in single-threaded mode.
  3654         if (MemTracker::tracking_level() >= NMT_summary) {
  3655           MemTracker::init();
  3657       } else {
  3658         vm_exit_during_initialization("Syntax error, expecting -XX:NativeMemoryTracking=[off|summary|detail]", NULL);
  3661 #endif
  3664 #ifndef PRODUCT
  3665     if (match_option(option, "-XX:+PrintFlagsWithComments", &tail)) {
  3666       CommandLineFlags::printFlags(tty, true);
  3667       vm_exit(0);
  3669 #endif
  3672   if (IgnoreUnrecognizedVMOptions) {
  3673     // uncast const to modify the flag args->ignoreUnrecognized
  3674     *(jboolean*)(&args->ignoreUnrecognized) = true;
  3677   // Parse specified settings file
  3678   if (settings_file_specified) {
  3679     if (!process_settings_file(flags_file, true, args->ignoreUnrecognized)) {
  3680       return JNI_EINVAL;
  3682   } else {
  3683 #ifdef ASSERT
  3684     // Parse default .hotspotrc settings file
  3685     if (!process_settings_file(".hotspotrc", false, args->ignoreUnrecognized)) {
  3686       return JNI_EINVAL;
  3688 #else
  3689     struct stat buf;
  3690     if (os::stat(hotspotrc, &buf) == 0) {
  3691       needs_hotspotrc_warning = true;
  3693 #endif
  3696   if (PrintVMOptions) {
  3697     for (index = 0; index < args->nOptions; index++) {
  3698       const JavaVMOption *option = args->options + index;
  3699       if (match_option(option, "-XX:", &tail)) {
  3700         logOption(tail);
  3705   // Parse JavaVMInitArgs structure passed in, as well as JAVA_TOOL_OPTIONS and _JAVA_OPTIONS
  3706   jint result = parse_vm_init_args(args);
  3707   if (result != JNI_OK) {
  3708     return result;
  3711   // Call get_shared_archive_path() here, after possible SharedArchiveFile option got parsed.
  3712   SharedArchivePath = get_shared_archive_path();
  3713   if (SharedArchivePath == NULL) {
  3714     return JNI_ENOMEM;
  3717   // Set up VerifySharedSpaces
  3718   if (FLAG_IS_DEFAULT(VerifySharedSpaces) && SharedArchiveFile != NULL) {
  3719     VerifySharedSpaces = true;
  3722   // Delay warning until here so that we've had a chance to process
  3723   // the -XX:-PrintWarnings flag
  3724   if (needs_hotspotrc_warning) {
  3725     warning("%s file is present but has been ignored.  "
  3726             "Run with -XX:Flags=%s to load the file.",
  3727             hotspotrc, hotspotrc);
  3730 #ifdef _ALLBSD_SOURCE  // UseLargePages is not yet supported on BSD.
  3731   UNSUPPORTED_OPTION(UseLargePages, "-XX:+UseLargePages");
  3732 #endif
  3734 #if INCLUDE_ALL_GCS
  3735   #if (defined JAVASE_EMBEDDED || defined ARM)
  3736     UNSUPPORTED_OPTION(UseG1GC, "G1 GC");
  3737   #endif
  3738 #endif
  3740 #ifndef PRODUCT
  3741   if (TraceBytecodesAt != 0) {
  3742     TraceBytecodes = true;
  3744   if (CountCompiledCalls) {
  3745     if (UseCounterDecay) {
  3746       warning("UseCounterDecay disabled because CountCalls is set");
  3747       UseCounterDecay = false;
  3750 #endif // PRODUCT
  3752   // JSR 292 is not supported before 1.7
  3753   if (!JDK_Version::is_gte_jdk17x_version()) {
  3754     if (EnableInvokeDynamic) {
  3755       if (!FLAG_IS_DEFAULT(EnableInvokeDynamic)) {
  3756         warning("JSR 292 is not supported before 1.7.  Disabling support.");
  3758       EnableInvokeDynamic = false;
  3762   if (EnableInvokeDynamic && ScavengeRootsInCode == 0) {
  3763     if (!FLAG_IS_DEFAULT(ScavengeRootsInCode)) {
  3764       warning("forcing ScavengeRootsInCode non-zero because EnableInvokeDynamic is true");
  3766     ScavengeRootsInCode = 1;
  3769   if (PrintGCDetails) {
  3770     // Turn on -verbose:gc options as well
  3771     PrintGC = true;
  3774   if (!JDK_Version::is_gte_jdk18x_version()) {
  3775     // To avoid changing the log format for 7 updates this flag is only
  3776     // true by default in JDK8 and above.
  3777     if (FLAG_IS_DEFAULT(PrintGCCause)) {
  3778       FLAG_SET_DEFAULT(PrintGCCause, false);
  3782   // Set object alignment values.
  3783   set_object_alignment();
  3785 #if !INCLUDE_ALL_GCS
  3786   force_serial_gc();
  3787 #endif // INCLUDE_ALL_GCS
  3788 #if !INCLUDE_CDS
  3789   if (DumpSharedSpaces || RequireSharedSpaces) {
  3790     jio_fprintf(defaultStream::error_stream(),
  3791       "Shared spaces are not supported in this VM\n");
  3792     return JNI_ERR;
  3794   if ((UseSharedSpaces && FLAG_IS_CMDLINE(UseSharedSpaces)) || PrintSharedSpaces) {
  3795     warning("Shared spaces are not supported in this VM");
  3796     FLAG_SET_DEFAULT(UseSharedSpaces, false);
  3797     FLAG_SET_DEFAULT(PrintSharedSpaces, false);
  3799   no_shared_spaces("CDS Disabled");
  3800 #endif // INCLUDE_CDS
  3802   return JNI_OK;
  3805 jint Arguments::apply_ergo() {
  3807   // Set flags based on ergonomics.
  3808   set_ergonomics_flags();
  3810   set_shared_spaces_flags();
  3812   // Check the GC selections again.
  3813   if (!ArgumentsExt::check_gc_consistency_ergo()) {
  3814     return JNI_EINVAL;
  3817   if (TieredCompilation) {
  3818     set_tiered_flags();
  3819   } else {
  3820     // Check if the policy is valid. Policies 0 and 1 are valid for non-tiered setup.
  3821     if (CompilationPolicyChoice >= 2) {
  3822       vm_exit_during_initialization(
  3823         "Incompatible compilation policy selected", NULL);
  3826   // Set NmethodSweepFraction after the size of the code cache is adapted (in case of tiered)
  3827   if (FLAG_IS_DEFAULT(NmethodSweepFraction)) {
  3828     FLAG_SET_DEFAULT(NmethodSweepFraction, 1 + ReservedCodeCacheSize / (16 * M));
  3832   // Set heap size based on available physical memory
  3833   set_heap_size();
  3835   set_gc_specific_flags();
  3837   // Initialize Metaspace flags and alignments.
  3838   Metaspace::ergo_initialize();
  3840   // Set bytecode rewriting flags
  3841   set_bytecode_flags();
  3843   // Set flags if Aggressive optimization flags (-XX:+AggressiveOpts) enabled.
  3844   set_aggressive_opts_flags();
  3846   // Turn off biased locking for locking debug mode flags,
  3847   // which are subtlely different from each other but neither works with
  3848   // biased locking.
  3849   if (UseHeavyMonitors
  3850 #ifdef COMPILER1
  3851       || !UseFastLocking
  3852 #endif // COMPILER1
  3853     ) {
  3854     if (!FLAG_IS_DEFAULT(UseBiasedLocking) && UseBiasedLocking) {
  3855       // flag set to true on command line; warn the user that they
  3856       // can't enable biased locking here
  3857       warning("Biased Locking is not supported with locking debug flags"
  3858               "; ignoring UseBiasedLocking flag." );
  3860     UseBiasedLocking = false;
  3863 #ifdef ZERO
  3864   // Clear flags not supported on zero.
  3865   FLAG_SET_DEFAULT(ProfileInterpreter, false);
  3866   FLAG_SET_DEFAULT(UseBiasedLocking, false);
  3867   LP64_ONLY(FLAG_SET_DEFAULT(UseCompressedOops, false));
  3868   LP64_ONLY(FLAG_SET_DEFAULT(UseCompressedClassPointers, false));
  3869 #endif // CC_INTERP
  3871 #ifdef COMPILER2
  3872   if (!EliminateLocks) {
  3873     EliminateNestedLocks = false;
  3875   if (!Inline) {
  3876     IncrementalInline = false;
  3878 #ifndef PRODUCT
  3879   if (!IncrementalInline) {
  3880     AlwaysIncrementalInline = false;
  3882 #endif
  3883   if (IncrementalInline && FLAG_IS_DEFAULT(MaxNodeLimit)) {
  3884     // incremental inlining: bump MaxNodeLimit
  3885     FLAG_SET_DEFAULT(MaxNodeLimit, (intx)75000);
  3887   if (!UseTypeSpeculation && FLAG_IS_DEFAULT(TypeProfileLevel)) {
  3888     // nothing to use the profiling, turn if off
  3889     FLAG_SET_DEFAULT(TypeProfileLevel, 0);
  3891 #endif
  3893   if (PrintAssembly && FLAG_IS_DEFAULT(DebugNonSafepoints)) {
  3894     warning("PrintAssembly is enabled; turning on DebugNonSafepoints to gain additional output");
  3895     DebugNonSafepoints = true;
  3898   if (FLAG_IS_CMDLINE(CompressedClassSpaceSize) && !UseCompressedClassPointers) {
  3899     warning("Setting CompressedClassSpaceSize has no effect when compressed class pointers are not used");
  3902 #ifndef PRODUCT
  3903   if (CompileTheWorld) {
  3904     // Force NmethodSweeper to sweep whole CodeCache each time.
  3905     if (FLAG_IS_DEFAULT(NmethodSweepFraction)) {
  3906       NmethodSweepFraction = 1;
  3910   if (!LogVMOutput && FLAG_IS_DEFAULT(LogVMOutput)) {
  3911     if (use_vm_log()) {
  3912       LogVMOutput = true;
  3915 #endif // PRODUCT
  3917   if (PrintCommandLineFlags) {
  3918     CommandLineFlags::printSetFlags(tty);
  3921   // Apply CPU specific policy for the BiasedLocking
  3922   if (UseBiasedLocking) {
  3923     if (!VM_Version::use_biased_locking() &&
  3924         !(FLAG_IS_CMDLINE(UseBiasedLocking))) {
  3925       UseBiasedLocking = false;
  3928 #ifdef COMPILER2
  3929   if (!UseBiasedLocking || EmitSync != 0) {
  3930     UseOptoBiasInlining = false;
  3932 #endif
  3934   // set PauseAtExit if the gamma launcher was used and a debugger is attached
  3935   // but only if not already set on the commandline
  3936   if (Arguments::created_by_gamma_launcher() && os::is_debugger_attached()) {
  3937     bool set = false;
  3938     CommandLineFlags::wasSetOnCmdline("PauseAtExit", &set);
  3939     if (!set) {
  3940       FLAG_SET_DEFAULT(PauseAtExit, true);
  3944   return JNI_OK;
  3947 jint Arguments::adjust_after_os() {
  3948   if (UseNUMA) {
  3949     if (UseParallelGC || UseParallelOldGC) {
  3950       if (FLAG_IS_DEFAULT(MinHeapDeltaBytes)) {
  3951          FLAG_SET_DEFAULT(MinHeapDeltaBytes, 64*M);
  3954     // UseNUMAInterleaving is set to ON for all collectors and
  3955     // platforms when UseNUMA is set to ON. NUMA-aware collectors
  3956     // such as the parallel collector for Linux and Solaris will
  3957     // interleave old gen and survivor spaces on top of NUMA
  3958     // allocation policy for the eden space.
  3959     // Non NUMA-aware collectors such as CMS, G1 and Serial-GC on
  3960     // all platforms and ParallelGC on Windows will interleave all
  3961     // of the heap spaces across NUMA nodes.
  3962     if (FLAG_IS_DEFAULT(UseNUMAInterleaving)) {
  3963       FLAG_SET_ERGO(bool, UseNUMAInterleaving, true);
  3966   return JNI_OK;
  3969 int Arguments::PropertyList_count(SystemProperty* pl) {
  3970   int count = 0;
  3971   while(pl != NULL) {
  3972     count++;
  3973     pl = pl->next();
  3975   return count;
  3978 const char* Arguments::PropertyList_get_value(SystemProperty *pl, const char* key) {
  3979   assert(key != NULL, "just checking");
  3980   SystemProperty* prop;
  3981   for (prop = pl; prop != NULL; prop = prop->next()) {
  3982     if (strcmp(key, prop->key()) == 0) return prop->value();
  3984   return NULL;
  3987 const char* Arguments::PropertyList_get_key_at(SystemProperty *pl, int index) {
  3988   int count = 0;
  3989   const char* ret_val = NULL;
  3991   while(pl != NULL) {
  3992     if(count >= index) {
  3993       ret_val = pl->key();
  3994       break;
  3996     count++;
  3997     pl = pl->next();
  4000   return ret_val;
  4003 char* Arguments::PropertyList_get_value_at(SystemProperty* pl, int index) {
  4004   int count = 0;
  4005   char* ret_val = NULL;
  4007   while(pl != NULL) {
  4008     if(count >= index) {
  4009       ret_val = pl->value();
  4010       break;
  4012     count++;
  4013     pl = pl->next();
  4016   return ret_val;
  4019 void Arguments::PropertyList_add(SystemProperty** plist, SystemProperty *new_p) {
  4020   SystemProperty* p = *plist;
  4021   if (p == NULL) {
  4022     *plist = new_p;
  4023   } else {
  4024     while (p->next() != NULL) {
  4025       p = p->next();
  4027     p->set_next(new_p);
  4031 void Arguments::PropertyList_add(SystemProperty** plist, const char* k, char* v) {
  4032   if (plist == NULL)
  4033     return;
  4035   SystemProperty* new_p = new SystemProperty(k, v, true);
  4036   PropertyList_add(plist, new_p);
  4039 // This add maintains unique property key in the list.
  4040 void Arguments::PropertyList_unique_add(SystemProperty** plist, const char* k, char* v, jboolean append) {
  4041   if (plist == NULL)
  4042     return;
  4044   // If property key exist then update with new value.
  4045   SystemProperty* prop;
  4046   for (prop = *plist; prop != NULL; prop = prop->next()) {
  4047     if (strcmp(k, prop->key()) == 0) {
  4048       if (append) {
  4049         prop->append_value(v);
  4050       } else {
  4051         prop->set_value(v);
  4053       return;
  4057   PropertyList_add(plist, k, v);
  4060 // Copies src into buf, replacing "%%" with "%" and "%p" with pid
  4061 // Returns true if all of the source pointed by src has been copied over to
  4062 // the destination buffer pointed by buf. Otherwise, returns false.
  4063 // Notes:
  4064 // 1. If the length (buflen) of the destination buffer excluding the
  4065 // NULL terminator character is not long enough for holding the expanded
  4066 // pid characters, it also returns false instead of returning the partially
  4067 // expanded one.
  4068 // 2. The passed in "buflen" should be large enough to hold the null terminator.
  4069 bool Arguments::copy_expand_pid(const char* src, size_t srclen,
  4070                                 char* buf, size_t buflen) {
  4071   const char* p = src;
  4072   char* b = buf;
  4073   const char* src_end = &src[srclen];
  4074   char* buf_end = &buf[buflen - 1];
  4076   while (p < src_end && b < buf_end) {
  4077     if (*p == '%') {
  4078       switch (*(++p)) {
  4079       case '%':         // "%%" ==> "%"
  4080         *b++ = *p++;
  4081         break;
  4082       case 'p':  {       //  "%p" ==> current process id
  4083         // buf_end points to the character before the last character so
  4084         // that we could write '\0' to the end of the buffer.
  4085         size_t buf_sz = buf_end - b + 1;
  4086         int ret = jio_snprintf(b, buf_sz, "%d", os::current_process_id());
  4088         // if jio_snprintf fails or the buffer is not long enough to hold
  4089         // the expanded pid, returns false.
  4090         if (ret < 0 || ret >= (int)buf_sz) {
  4091           return false;
  4092         } else {
  4093           b += ret;
  4094           assert(*b == '\0', "fail in copy_expand_pid");
  4095           if (p == src_end && b == buf_end + 1) {
  4096             // reach the end of the buffer.
  4097             return true;
  4100         p++;
  4101         break;
  4103       default :
  4104         *b++ = '%';
  4106     } else {
  4107       *b++ = *p++;
  4110   *b = '\0';
  4111   return (p == src_end); // return false if not all of the source was copied

mercurial