arguments.cpp revision 7882:694f5e5bb982
1218885Sdim/*
2218885Sdim * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
3353358Sdim * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4353358Sdim *
5353358Sdim * This code is free software; you can redistribute it and/or modify it
6218885Sdim * under the terms of the GNU General Public License version 2 only, as
7218885Sdim * published by the Free Software Foundation.
8218885Sdim *
9218885Sdim * This code is distributed in the hope that it will be useful, but WITHOUT
10218885Sdim * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11218885Sdim * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12218885Sdim * version 2 for more details (a copy is included in the LICENSE file that
13218885Sdim * accompanied this code).
14218885Sdim *
15218885Sdim * You should have received a copy of the GNU General Public License version
16218885Sdim * 2 along with this work; if not, write to the Free Software Foundation,
17218885Sdim * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18218885Sdim *
19218885Sdim * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20218885Sdim * or visit www.oracle.com if you need additional information or have any
21218885Sdim * questions.
22218885Sdim *
23218885Sdim */
24218885Sdim
25218885Sdim#include "precompiled.hpp"
26218885Sdim#include "classfile/classLoader.hpp"
27218885Sdim#include "classfile/javaAssertions.hpp"
28218885Sdim#include "classfile/stringTable.hpp"
29218885Sdim#include "classfile/symbolTable.hpp"
30218885Sdim#include "compiler/compilerOracle.hpp"
31218885Sdim#include "memory/allocation.inline.hpp"
32218885Sdim#include "memory/cardTableRS.hpp"
33218885Sdim#include "memory/genCollectedHeap.hpp"
34218885Sdim#include "memory/referenceProcessor.hpp"
35218885Sdim#include "memory/universe.inline.hpp"
36218885Sdim#include "oops/oop.inline.hpp"
37218885Sdim#include "prims/jvmtiExport.hpp"
38218885Sdim#include "runtime/arguments.hpp"
39218885Sdim#include "runtime/arguments_ext.hpp"
40218885Sdim#include "runtime/globals_extension.hpp"
41218885Sdim#include "runtime/java.hpp"
42218885Sdim#include "runtime/os.hpp"
43218885Sdim#include "runtime/vm_version.hpp"
44218885Sdim#include "services/management.hpp"
45218885Sdim#include "services/memTracker.hpp"
46218885Sdim#include "utilities/defaultStream.hpp"
47218885Sdim#include "utilities/macros.hpp"
48218885Sdim#include "utilities/stringUtils.hpp"
49218885Sdim#include "utilities/taskqueue.hpp"
50218885Sdim#if INCLUDE_ALL_GCS
51218885Sdim#include "gc_implementation/concurrentMarkSweep/compactibleFreeListSpace.hpp"
52218885Sdim#include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
53218885Sdim#include "gc_implementation/parallelScavenge/parallelScavengeHeap.hpp"
54218885Sdim#endif // INCLUDE_ALL_GCS
55218885Sdim
56218885Sdim// Note: This is a special bug reporting site for the JVM
57218885Sdim#define DEFAULT_VENDOR_URL_BUG "http://bugreport.java.com/bugreport/crash.jsp"
58218885Sdim#define DEFAULT_JAVA_LAUNCHER  "generic"
59218885Sdim
60276479Sdim// Disable options not supported in this release, with a warning if they
61218885Sdim// were explicitly requested on the command-line
62218885Sdim#define UNSUPPORTED_OPTION(opt, description)                    \
63218885Sdimdo {                                                            \
64218885Sdim  if (opt) {                                                    \
65218885Sdim    if (FLAG_IS_CMDLINE(opt)) {                                 \
66218885Sdim      warning(description " is disabled in this release.");     \
67218885Sdim    }                                                           \
68218885Sdim    FLAG_SET_DEFAULT(opt, false);                               \
69218885Sdim  }                                                             \
70218885Sdim} while(0)
71218885Sdim
72218885Sdim#define UNSUPPORTED_GC_OPTION(gc)                                     \
73218885Sdimdo {                                                                  \
74218885Sdim  if (gc) {                                                           \
75218885Sdim    if (FLAG_IS_CMDLINE(gc)) {                                        \
76218885Sdim      warning(#gc " is not supported in this VM.  Using Serial GC."); \
77218885Sdim    }                                                                 \
78218885Sdim    FLAG_SET_DEFAULT(gc, false);                                      \
79218885Sdim  }                                                                   \
80218885Sdim} while(0)
81218885Sdim
82218885Sdimchar**  Arguments::_jvm_flags_array             = NULL;
83218885Sdimint     Arguments::_num_jvm_flags               = 0;
84218885Sdimchar**  Arguments::_jvm_args_array              = NULL;
85218885Sdimint     Arguments::_num_jvm_args                = 0;
86218885Sdimchar*  Arguments::_java_command                 = NULL;
87218885SdimSystemProperty* Arguments::_system_properties   = NULL;
88218885Sdimconst char*  Arguments::_gc_log_filename        = NULL;
89218885Sdimbool   Arguments::_has_profile                  = false;
90218885Sdimsize_t Arguments::_conservative_max_heap_alignment = 0;
91218885Sdimuintx  Arguments::_min_heap_size                = 0;
92218885Sdimuintx  Arguments::_min_heap_free_ratio          = 0;
93218885Sdimuintx  Arguments::_max_heap_free_ratio          = 0;
94218885SdimArguments::Mode Arguments::_mode                = _mixed;
95218885Sdimbool   Arguments::_java_compiler                = false;
96218885Sdimbool   Arguments::_xdebug_mode                  = false;
97218885Sdimconst char*  Arguments::_java_vendor_url_bug    = DEFAULT_VENDOR_URL_BUG;
98218885Sdimconst char*  Arguments::_sun_java_launcher      = DEFAULT_JAVA_LAUNCHER;
99218885Sdimint    Arguments::_sun_java_launcher_pid        = -1;
100218885Sdimbool   Arguments::_sun_java_launcher_is_altjvm  = false;
101218885Sdim
102218885Sdim// These parameters are reset in method parse_vm_init_args(JavaVMInitArgs*)
103218885Sdimbool   Arguments::_AlwaysCompileLoopMethods     = AlwaysCompileLoopMethods;
104218885Sdimbool   Arguments::_UseOnStackReplacement        = UseOnStackReplacement;
105218885Sdimbool   Arguments::_BackgroundCompilation        = BackgroundCompilation;
106218885Sdimbool   Arguments::_ClipInlining                 = ClipInlining;
107218885Sdim
108218885Sdimchar*  Arguments::SharedArchivePath             = NULL;
109218885Sdim
110218885SdimAgentLibraryList Arguments::_libraryList;
111218885SdimAgentLibraryList Arguments::_agentList;
112218885Sdim
113218885Sdimabort_hook_t     Arguments::_abort_hook         = NULL;
114218885Sdimexit_hook_t      Arguments::_exit_hook          = NULL;
115218885Sdimvfprintf_hook_t  Arguments::_vfprintf_hook      = NULL;
116218885Sdim
117218885Sdim
118218885SdimSystemProperty *Arguments::_sun_boot_library_path = NULL;
119218885SdimSystemProperty *Arguments::_java_library_path = NULL;
120218885SdimSystemProperty *Arguments::_java_home = NULL;
121218885SdimSystemProperty *Arguments::_java_class_path = NULL;
122218885SdimSystemProperty *Arguments::_sun_boot_class_path = NULL;
123218885Sdim
124218885Sdimchar* Arguments::_meta_index_path = NULL;
125218885Sdimchar* Arguments::_meta_index_dir = NULL;
126218885Sdimchar* Arguments::_ext_dirs = NULL;
127218885Sdim
128218885Sdim// Check if head of 'option' matches 'name', and sets 'tail' to the remaining
129218885Sdim// part of the option string.
130218885Sdimstatic bool match_option(const JavaVMOption *option, const char* name,
131218885Sdim                         const char** tail) {
132218885Sdim  int len = (int)strlen(name);
133218885Sdim  if (strncmp(option->optionString, name, len) == 0) {
134218885Sdim    *tail = option->optionString + len;
135218885Sdim    return true;
136218885Sdim  } else {
137218885Sdim    return false;
138218885Sdim  }
139218885Sdim}
140218885Sdim
141218885Sdim// Check if 'option' matches 'name'. No "tail" is allowed.
142218885Sdimstatic bool match_option(const JavaVMOption *option, const char* name) {
143218885Sdim  const char* tail = NULL;
144218885Sdim  bool result = match_option(option, name, &tail);
145218885Sdim  if (tail != NULL && *tail == '\0') {
146218885Sdim    return result;
147218885Sdim  } else {
148218885Sdim    return false;
149218885Sdim  }
150218885Sdim}
151218885Sdim
152218885Sdim// Return true if any of the strings in null-terminated array 'names' matches.
153218885Sdim// If tail_allowed is true, then the tail must begin with a colon; otherwise,
154218885Sdim// the option must match exactly.
155218885Sdimstatic bool match_option(const JavaVMOption* option, const char** names, const char** tail,
156218885Sdim  bool tail_allowed) {
157218885Sdim  for (/* empty */; *names != NULL; ++names) {
158218885Sdim    if (match_option(option, *names, tail)) {
159218885Sdim      if (**tail == '\0' || tail_allowed && **tail == ':') {
160218885Sdim        return true;
161      }
162    }
163  }
164  return false;
165}
166
167static void logOption(const char* opt) {
168  if (PrintVMOptions) {
169    jio_fprintf(defaultStream::output_stream(), "VM option '%s'\n", opt);
170  }
171}
172
173// Process java launcher properties.
174void Arguments::process_sun_java_launcher_properties(JavaVMInitArgs* args) {
175  // See if sun.java.launcher, sun.java.launcher.is_altjvm or
176  // sun.java.launcher.pid is defined.
177  // Must do this before setting up other system properties,
178  // as some of them may depend on launcher type.
179  for (int index = 0; index < args->nOptions; index++) {
180    const JavaVMOption* option = args->options + index;
181    const char* tail;
182
183    if (match_option(option, "-Dsun.java.launcher=", &tail)) {
184      process_java_launcher_argument(tail, option->extraInfo);
185      continue;
186    }
187    if (match_option(option, "-Dsun.java.launcher.is_altjvm=", &tail)) {
188      if (strcmp(tail, "true") == 0) {
189        _sun_java_launcher_is_altjvm = true;
190      }
191      continue;
192    }
193    if (match_option(option, "-Dsun.java.launcher.pid=", &tail)) {
194      _sun_java_launcher_pid = atoi(tail);
195      continue;
196    }
197  }
198}
199
200// Initialize system properties key and value.
201void Arguments::init_system_properties() {
202
203  PropertyList_add(&_system_properties, new SystemProperty("java.vm.specification.name",
204                                                                 "Java Virtual Machine Specification",  false));
205  PropertyList_add(&_system_properties, new SystemProperty("java.vm.version", VM_Version::vm_release(),  false));
206  PropertyList_add(&_system_properties, new SystemProperty("java.vm.name", VM_Version::vm_name(),  false));
207  PropertyList_add(&_system_properties, new SystemProperty("java.vm.info", VM_Version::vm_info_string(),  true));
208
209  // Following are JVMTI agent writable properties.
210  // Properties values are set to NULL and they are
211  // os specific they are initialized in os::init_system_properties_values().
212  _sun_boot_library_path = new SystemProperty("sun.boot.library.path", NULL,  true);
213  _java_library_path = new SystemProperty("java.library.path", NULL,  true);
214  _java_home =  new SystemProperty("java.home", NULL,  true);
215  _sun_boot_class_path = new SystemProperty("sun.boot.class.path", NULL,  true);
216
217  _java_class_path = new SystemProperty("java.class.path", "",  true);
218
219  // Add to System Property list.
220  PropertyList_add(&_system_properties, _sun_boot_library_path);
221  PropertyList_add(&_system_properties, _java_library_path);
222  PropertyList_add(&_system_properties, _java_home);
223  PropertyList_add(&_system_properties, _java_class_path);
224  PropertyList_add(&_system_properties, _sun_boot_class_path);
225
226  // Set OS specific system properties values
227  os::init_system_properties_values();
228}
229
230
231  // Update/Initialize System properties after JDK version number is known
232void Arguments::init_version_specific_system_properties() {
233  enum { bufsz = 16 };
234  char buffer[bufsz];
235  const char* spec_vendor = "Sun Microsystems Inc.";
236  uint32_t spec_version = 0;
237
238  spec_vendor = "Oracle Corporation";
239  spec_version = JDK_Version::current().major_version();
240  jio_snprintf(buffer, bufsz, "1." UINT32_FORMAT, spec_version);
241
242  PropertyList_add(&_system_properties,
243      new SystemProperty("java.vm.specification.vendor",  spec_vendor, false));
244  PropertyList_add(&_system_properties,
245      new SystemProperty("java.vm.specification.version", buffer, false));
246  PropertyList_add(&_system_properties,
247      new SystemProperty("java.vm.vendor", VM_Version::vm_vendor(),  false));
248}
249
250/**
251 * Provide a slightly more user-friendly way of eliminating -XX flags.
252 * When a flag is eliminated, it can be added to this list in order to
253 * continue accepting this flag on the command-line, while issuing a warning
254 * and ignoring the value.  Once the JDK version reaches the 'accept_until'
255 * limit, we flatly refuse to admit the existence of the flag.  This allows
256 * a flag to die correctly over JDK releases using HSX.
257 */
258typedef struct {
259  const char* name;
260  JDK_Version obsoleted_in; // when the flag went away
261  JDK_Version accept_until; // which version to start denying the existence
262} ObsoleteFlag;
263
264static ObsoleteFlag obsolete_jvm_flags[] = {
265  { "UseTrainGC",                    JDK_Version::jdk(5), JDK_Version::jdk(7) },
266  { "UseSpecialLargeObjectHandling", JDK_Version::jdk(5), JDK_Version::jdk(7) },
267  { "UseOversizedCarHandling",       JDK_Version::jdk(5), JDK_Version::jdk(7) },
268  { "TraceCarAllocation",            JDK_Version::jdk(5), JDK_Version::jdk(7) },
269  { "PrintTrainGCProcessingStats",   JDK_Version::jdk(5), JDK_Version::jdk(7) },
270  { "LogOfCarSpaceSize",             JDK_Version::jdk(5), JDK_Version::jdk(7) },
271  { "OversizedCarThreshold",         JDK_Version::jdk(5), JDK_Version::jdk(7) },
272  { "MinTickInterval",               JDK_Version::jdk(5), JDK_Version::jdk(7) },
273  { "DefaultTickInterval",           JDK_Version::jdk(5), JDK_Version::jdk(7) },
274  { "MaxTickInterval",               JDK_Version::jdk(5), JDK_Version::jdk(7) },
275  { "DelayTickAdjustment",           JDK_Version::jdk(5), JDK_Version::jdk(7) },
276  { "ProcessingToTenuringRatio",     JDK_Version::jdk(5), JDK_Version::jdk(7) },
277  { "MinTrainLength",                JDK_Version::jdk(5), JDK_Version::jdk(7) },
278  { "AppendRatio",         JDK_Version::jdk_update(6,10), JDK_Version::jdk(7) },
279  { "DefaultMaxRAM",       JDK_Version::jdk_update(6,18), JDK_Version::jdk(7) },
280  { "DefaultInitialRAMFraction",
281                           JDK_Version::jdk_update(6,18), JDK_Version::jdk(7) },
282  { "UseDepthFirstScavengeOrder",
283                           JDK_Version::jdk_update(6,22), JDK_Version::jdk(7) },
284  { "HandlePromotionFailure",
285                           JDK_Version::jdk_update(6,24), JDK_Version::jdk(8) },
286  { "MaxLiveObjectEvacuationRatio",
287                           JDK_Version::jdk_update(6,24), JDK_Version::jdk(8) },
288  { "ForceSharedSpaces",   JDK_Version::jdk_update(6,25), JDK_Version::jdk(8) },
289  { "UseParallelOldGCCompacting",
290                           JDK_Version::jdk_update(6,27), JDK_Version::jdk(8) },
291  { "UseParallelDensePrefixUpdate",
292                           JDK_Version::jdk_update(6,27), JDK_Version::jdk(8) },
293  { "UseParallelOldGCDensePrefix",
294                           JDK_Version::jdk_update(6,27), JDK_Version::jdk(8) },
295  { "AllowTransitionalJSR292",       JDK_Version::jdk(7), JDK_Version::jdk(8) },
296  { "UseCompressedStrings",          JDK_Version::jdk(7), JDK_Version::jdk(8) },
297  { "CMSPermGenPrecleaningEnabled", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
298  { "CMSTriggerPermRatio", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
299  { "CMSInitiatingPermOccupancyFraction", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
300  { "AdaptivePermSizeWeight", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
301  { "PermGenPadding", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
302  { "PermMarkSweepDeadRatio", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
303  { "PermSize", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
304  { "MaxPermSize", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
305  { "MinPermHeapExpansion", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
306  { "MaxPermHeapExpansion", JDK_Version::jdk(8),  JDK_Version::jdk(9) },
307  { "CMSRevisitStackSize",           JDK_Version::jdk(8), JDK_Version::jdk(9) },
308  { "PrintRevisitStats",             JDK_Version::jdk(8), JDK_Version::jdk(9) },
309  { "UseVectoredExceptions",         JDK_Version::jdk(8), JDK_Version::jdk(9) },
310  { "UseSplitVerifier",              JDK_Version::jdk(8), JDK_Version::jdk(9) },
311  { "UseISM",                        JDK_Version::jdk(8), JDK_Version::jdk(9) },
312  { "UsePermISM",                    JDK_Version::jdk(8), JDK_Version::jdk(9) },
313  { "UseMPSS",                       JDK_Version::jdk(8), JDK_Version::jdk(9) },
314  { "UseStringCache",                JDK_Version::jdk(8), JDK_Version::jdk(9) },
315  { "UseOldInlining",                JDK_Version::jdk(9), JDK_Version::jdk(10) },
316  { "SafepointPollOffset",           JDK_Version::jdk(9), JDK_Version::jdk(10) },
317#ifdef PRODUCT
318  { "DesiredMethodLimit",
319                           JDK_Version::jdk_update(7, 2), JDK_Version::jdk(8) },
320#endif // PRODUCT
321  { "UseVMInterruptibleIO",          JDK_Version::jdk(8), JDK_Version::jdk(9) },
322  { "UseBoundThreads",               JDK_Version::jdk(9), JDK_Version::jdk(10) },
323  { "DefaultThreadPriority",         JDK_Version::jdk(9), JDK_Version::jdk(10) },
324  { "NoYieldsInMicrolock",           JDK_Version::jdk(9), JDK_Version::jdk(10) },
325  { "BackEdgeThreshold",             JDK_Version::jdk(9), JDK_Version::jdk(10) },
326  { "UseNewReflection",              JDK_Version::jdk(9), JDK_Version::jdk(10) },
327  { "ReflectionWrapResolutionErrors",JDK_Version::jdk(9), JDK_Version::jdk(10) },
328  { "VerifyReflectionBytecodes",     JDK_Version::jdk(9), JDK_Version::jdk(10) },
329  { "AutoShutdownNMT",               JDK_Version::jdk(9), JDK_Version::jdk(10) },
330  { "NmethodSweepFraction",          JDK_Version::jdk(9), JDK_Version::jdk(10) },
331  { "NmethodSweepCheckInterval",     JDK_Version::jdk(9), JDK_Version::jdk(10) },
332  { "CodeCacheMinimumFreeSpace",     JDK_Version::jdk(9), JDK_Version::jdk(10) },
333#ifndef ZERO
334  { "UseFastAccessorMethods",        JDK_Version::jdk(9), JDK_Version::jdk(10) },
335  { "UseFastEmptyMethods",           JDK_Version::jdk(9), JDK_Version::jdk(10) },
336#endif // ZERO
337  { "UseCompilerSafepoints",         JDK_Version::jdk(9), JDK_Version::jdk(10) },
338  { NULL, JDK_Version(0), JDK_Version(0) }
339};
340
341// Returns true if the flag is obsolete and fits into the range specified
342// for being ignored.  In the case that the flag is ignored, the 'version'
343// value is filled in with the version number when the flag became
344// obsolete so that that value can be displayed to the user.
345bool Arguments::is_newly_obsolete(const char *s, JDK_Version* version) {
346  int i = 0;
347  assert(version != NULL, "Must provide a version buffer");
348  while (obsolete_jvm_flags[i].name != NULL) {
349    const ObsoleteFlag& flag_status = obsolete_jvm_flags[i];
350    // <flag>=xxx form
351    // [-|+]<flag> form
352    size_t len = strlen(flag_status.name);
353    if (((strncmp(flag_status.name, s, len) == 0) &&
354         (strlen(s) == len)) ||
355        ((s[0] == '+' || s[0] == '-') &&
356         (strncmp(flag_status.name, &s[1], len) == 0) &&
357         (strlen(&s[1]) == len))) {
358      if (JDK_Version::current().compare(flag_status.accept_until) == -1) {
359          *version = flag_status.obsoleted_in;
360          return true;
361      }
362    }
363    i++;
364  }
365  return false;
366}
367
368// Constructs the system class path (aka boot class path) from the following
369// components, in order:
370//
371//     prefix           // from -Xbootclasspath/p:...
372//     base             // from os::get_system_properties() or -Xbootclasspath=
373//     suffix           // from -Xbootclasspath/a:...
374//
375// This could be AllStatic, but it isn't needed after argument processing is
376// complete.
377class SysClassPath: public StackObj {
378public:
379  SysClassPath(const char* base);
380  ~SysClassPath();
381
382  inline void set_base(const char* base);
383  inline void add_prefix(const char* prefix);
384  inline void add_suffix_to_prefix(const char* suffix);
385  inline void add_suffix(const char* suffix);
386  inline void reset_path(const char* base);
387
388  inline const char* get_base()     const { return _items[_scp_base]; }
389  inline const char* get_prefix()   const { return _items[_scp_prefix]; }
390  inline const char* get_suffix()   const { return _items[_scp_suffix]; }
391
392  // Combine all the components into a single c-heap-allocated string; caller
393  // must free the string if/when no longer needed.
394  char* combined_path();
395
396private:
397  // Utility routines.
398  static char* add_to_path(const char* path, const char* str, bool prepend);
399  static char* add_jars_to_path(char* path, const char* directory);
400
401  inline void reset_item_at(int index);
402
403  // Array indices for the items that make up the sysclasspath.  All except the
404  // base are allocated in the C heap and freed by this class.
405  enum {
406    _scp_prefix,        // from -Xbootclasspath/p:...
407    _scp_base,          // the default sysclasspath
408    _scp_suffix,        // from -Xbootclasspath/a:...
409    _scp_nitems         // the number of items, must be last.
410  };
411
412  const char* _items[_scp_nitems];
413};
414
415SysClassPath::SysClassPath(const char* base) {
416  memset(_items, 0, sizeof(_items));
417  _items[_scp_base] = base;
418}
419
420SysClassPath::~SysClassPath() {
421  // Free everything except the base.
422  for (int i = 0; i < _scp_nitems; ++i) {
423    if (i != _scp_base) reset_item_at(i);
424  }
425}
426
427inline void SysClassPath::set_base(const char* base) {
428  _items[_scp_base] = base;
429}
430
431inline void SysClassPath::add_prefix(const char* prefix) {
432  _items[_scp_prefix] = add_to_path(_items[_scp_prefix], prefix, true);
433}
434
435inline void SysClassPath::add_suffix_to_prefix(const char* suffix) {
436  _items[_scp_prefix] = add_to_path(_items[_scp_prefix], suffix, false);
437}
438
439inline void SysClassPath::add_suffix(const char* suffix) {
440  _items[_scp_suffix] = add_to_path(_items[_scp_suffix], suffix, false);
441}
442
443inline void SysClassPath::reset_item_at(int index) {
444  assert(index < _scp_nitems && index != _scp_base, "just checking");
445  if (_items[index] != NULL) {
446    FREE_C_HEAP_ARRAY(char, _items[index]);
447    _items[index] = NULL;
448  }
449}
450
451inline void SysClassPath::reset_path(const char* base) {
452  // Clear the prefix and suffix.
453  reset_item_at(_scp_prefix);
454  reset_item_at(_scp_suffix);
455  set_base(base);
456}
457
458//------------------------------------------------------------------------------
459
460
461// Combine the bootclasspath elements, some of which may be null, into a single
462// c-heap-allocated string.
463char* SysClassPath::combined_path() {
464  assert(_items[_scp_base] != NULL, "empty default sysclasspath");
465
466  size_t lengths[_scp_nitems];
467  size_t total_len = 0;
468
469  const char separator = *os::path_separator();
470
471  // Get the lengths.
472  int i;
473  for (i = 0; i < _scp_nitems; ++i) {
474    if (_items[i] != NULL) {
475      lengths[i] = strlen(_items[i]);
476      // Include space for the separator char (or a NULL for the last item).
477      total_len += lengths[i] + 1;
478    }
479  }
480  assert(total_len > 0, "empty sysclasspath not allowed");
481
482  // Copy the _items to a single string.
483  char* cp = NEW_C_HEAP_ARRAY(char, total_len, mtInternal);
484  char* cp_tmp = cp;
485  for (i = 0; i < _scp_nitems; ++i) {
486    if (_items[i] != NULL) {
487      memcpy(cp_tmp, _items[i], lengths[i]);
488      cp_tmp += lengths[i];
489      *cp_tmp++ = separator;
490    }
491  }
492  *--cp_tmp = '\0';     // Replace the extra separator.
493  return cp;
494}
495
496// Note:  path must be c-heap-allocated (or NULL); it is freed if non-null.
497char*
498SysClassPath::add_to_path(const char* path, const char* str, bool prepend) {
499  char *cp;
500
501  assert(str != NULL, "just checking");
502  if (path == NULL) {
503    size_t len = strlen(str) + 1;
504    cp = NEW_C_HEAP_ARRAY(char, len, mtInternal);
505    memcpy(cp, str, len);                       // copy the trailing null
506  } else {
507    const char separator = *os::path_separator();
508    size_t old_len = strlen(path);
509    size_t str_len = strlen(str);
510    size_t len = old_len + str_len + 2;
511
512    if (prepend) {
513      cp = NEW_C_HEAP_ARRAY(char, len, mtInternal);
514      char* cp_tmp = cp;
515      memcpy(cp_tmp, str, str_len);
516      cp_tmp += str_len;
517      *cp_tmp = separator;
518      memcpy(++cp_tmp, path, old_len + 1);      // copy the trailing null
519      FREE_C_HEAP_ARRAY(char, path);
520    } else {
521      cp = REALLOC_C_HEAP_ARRAY(char, path, len, mtInternal);
522      char* cp_tmp = cp + old_len;
523      *cp_tmp = separator;
524      memcpy(++cp_tmp, str, str_len + 1);       // copy the trailing null
525    }
526  }
527  return cp;
528}
529
530// Scan the directory and append any jar or zip files found to path.
531// Note:  path must be c-heap-allocated (or NULL); it is freed if non-null.
532char* SysClassPath::add_jars_to_path(char* path, const char* directory) {
533  DIR* dir = os::opendir(directory);
534  if (dir == NULL) return path;
535
536  char dir_sep[2] = { '\0', '\0' };
537  size_t directory_len = strlen(directory);
538  const char fileSep = *os::file_separator();
539  if (directory[directory_len - 1] != fileSep) dir_sep[0] = fileSep;
540
541  /* Scan the directory for jars/zips, appending them to path. */
542  struct dirent *entry;
543  char *dbuf = NEW_C_HEAP_ARRAY(char, os::readdir_buf_size(directory), mtInternal);
544  while ((entry = os::readdir(dir, (dirent *) dbuf)) != NULL) {
545    const char* name = entry->d_name;
546    const char* ext = name + strlen(name) - 4;
547    bool isJarOrZip = ext > name &&
548      (os::file_name_strcmp(ext, ".jar") == 0 ||
549       os::file_name_strcmp(ext, ".zip") == 0);
550    if (isJarOrZip) {
551      char* jarpath = NEW_C_HEAP_ARRAY(char, directory_len + 2 + strlen(name), mtInternal);
552      sprintf(jarpath, "%s%s%s", directory, dir_sep, name);
553      path = add_to_path(path, jarpath, false);
554      FREE_C_HEAP_ARRAY(char, jarpath);
555    }
556  }
557  FREE_C_HEAP_ARRAY(char, dbuf);
558  os::closedir(dir);
559  return path;
560}
561
562// Parses a memory size specification string.
563static bool atomull(const char *s, julong* result) {
564  julong n = 0;
565  int args_read = 0;
566  bool is_hex = false;
567  // Skip leading 0[xX] for hexadecimal
568  if (*s =='0' && (*(s+1) == 'x' || *(s+1) == 'X')) {
569    s += 2;
570    is_hex = true;
571    args_read = sscanf(s, JULONG_FORMAT_X, &n);
572  } else {
573    args_read = sscanf(s, JULONG_FORMAT, &n);
574  }
575  if (args_read != 1) {
576    return false;
577  }
578  while (*s != '\0' && (isdigit(*s) || (is_hex && isxdigit(*s)))) {
579    s++;
580  }
581  // 4705540: illegal if more characters are found after the first non-digit
582  if (strlen(s) > 1) {
583    return false;
584  }
585  switch (*s) {
586    case 'T': case 't':
587      *result = n * G * K;
588      // Check for overflow.
589      if (*result/((julong)G * K) != n) return false;
590      return true;
591    case 'G': case 'g':
592      *result = n * G;
593      if (*result/G != n) return false;
594      return true;
595    case 'M': case 'm':
596      *result = n * M;
597      if (*result/M != n) return false;
598      return true;
599    case 'K': case 'k':
600      *result = n * K;
601      if (*result/K != n) return false;
602      return true;
603    case '\0':
604      *result = n;
605      return true;
606    default:
607      return false;
608  }
609}
610
611Arguments::ArgsRange Arguments::check_memory_size(julong size, julong min_size) {
612  if (size < min_size) return arg_too_small;
613  // Check that size will fit in a size_t (only relevant on 32-bit)
614  if (size > max_uintx) return arg_too_big;
615  return arg_in_range;
616}
617
618// Describe an argument out of range error
619void Arguments::describe_range_error(ArgsRange errcode) {
620  switch(errcode) {
621  case arg_too_big:
622    jio_fprintf(defaultStream::error_stream(),
623                "The specified size exceeds the maximum "
624                "representable size.\n");
625    break;
626  case arg_too_small:
627  case arg_unreadable:
628  case arg_in_range:
629    // do nothing for now
630    break;
631  default:
632    ShouldNotReachHere();
633  }
634}
635
636static bool set_bool_flag(char* name, bool value, Flag::Flags origin) {
637  return CommandLineFlags::boolAtPut(name, &value, origin);
638}
639
640static bool set_fp_numeric_flag(char* name, char* value, Flag::Flags origin) {
641  double v;
642  if (sscanf(value, "%lf", &v) != 1) {
643    return false;
644  }
645
646  if (CommandLineFlags::doubleAtPut(name, &v, origin)) {
647    return true;
648  }
649  return false;
650}
651
652static bool set_numeric_flag(char* name, char* value, Flag::Flags origin) {
653  julong v;
654  intx intx_v;
655  bool is_neg = false;
656  // Check the sign first since atomull() parses only unsigned values.
657  if (*value == '-') {
658    if (!CommandLineFlags::intxAt(name, &intx_v)) {
659      return false;
660    }
661    value++;
662    is_neg = true;
663  }
664  if (!atomull(value, &v)) {
665    return false;
666  }
667  intx_v = (intx) v;
668  if (is_neg) {
669    intx_v = -intx_v;
670  }
671  if (CommandLineFlags::intxAtPut(name, &intx_v, origin)) {
672    return true;
673  }
674  uintx uintx_v = (uintx) v;
675  if (!is_neg && CommandLineFlags::uintxAtPut(name, &uintx_v, origin)) {
676    return true;
677  }
678  uint64_t uint64_t_v = (uint64_t) v;
679  if (!is_neg && CommandLineFlags::uint64_tAtPut(name, &uint64_t_v, origin)) {
680    return true;
681  }
682  size_t size_t_v = (size_t) v;
683  if (!is_neg && CommandLineFlags::size_tAtPut(name, &size_t_v, origin)) {
684    return true;
685  }
686  return false;
687}
688
689static bool set_string_flag(char* name, const char* value, Flag::Flags origin) {
690  if (!CommandLineFlags::ccstrAtPut(name, &value, origin))  return false;
691  // Contract:  CommandLineFlags always returns a pointer that needs freeing.
692  FREE_C_HEAP_ARRAY(char, value);
693  return true;
694}
695
696static bool append_to_string_flag(char* name, const char* new_value, Flag::Flags origin) {
697  const char* old_value = "";
698  if (!CommandLineFlags::ccstrAt(name, &old_value))  return false;
699  size_t old_len = old_value != NULL ? strlen(old_value) : 0;
700  size_t new_len = strlen(new_value);
701  const char* value;
702  char* free_this_too = NULL;
703  if (old_len == 0) {
704    value = new_value;
705  } else if (new_len == 0) {
706    value = old_value;
707  } else {
708    char* buf = NEW_C_HEAP_ARRAY(char, old_len + 1 + new_len + 1, mtInternal);
709    // each new setting adds another LINE to the switch:
710    sprintf(buf, "%s\n%s", old_value, new_value);
711    value = buf;
712    free_this_too = buf;
713  }
714  (void) CommandLineFlags::ccstrAtPut(name, &value, origin);
715  // CommandLineFlags always returns a pointer that needs freeing.
716  FREE_C_HEAP_ARRAY(char, value);
717  if (free_this_too != NULL) {
718    // CommandLineFlags made its own copy, so I must delete my own temp. buffer.
719    FREE_C_HEAP_ARRAY(char, free_this_too);
720  }
721  return true;
722}
723
724bool Arguments::parse_argument(const char* arg, Flag::Flags origin) {
725
726  // range of acceptable characters spelled out for portability reasons
727#define NAME_RANGE  "[abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_]"
728#define BUFLEN 255
729  char name[BUFLEN+1];
730  char dummy;
731
732  if (sscanf(arg, "-%" XSTR(BUFLEN) NAME_RANGE "%c", name, &dummy) == 1) {
733    return set_bool_flag(name, false, origin);
734  }
735  if (sscanf(arg, "+%" XSTR(BUFLEN) NAME_RANGE "%c", name, &dummy) == 1) {
736    return set_bool_flag(name, true, origin);
737  }
738
739  char punct;
740  if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "%c", name, &punct) == 2 && punct == '=') {
741    const char* value = strchr(arg, '=') + 1;
742    Flag* flag = Flag::find_flag(name, strlen(name));
743    if (flag != NULL && flag->is_ccstr()) {
744      if (flag->ccstr_accumulates()) {
745        return append_to_string_flag(name, value, origin);
746      } else {
747        if (value[0] == '\0') {
748          value = NULL;
749        }
750        return set_string_flag(name, value, origin);
751      }
752    }
753  }
754
755  if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE ":%c", name, &punct) == 2 && punct == '=') {
756    const char* value = strchr(arg, '=') + 1;
757    // -XX:Foo:=xxx will reset the string flag to the given value.
758    if (value[0] == '\0') {
759      value = NULL;
760    }
761    return set_string_flag(name, value, origin);
762  }
763
764#define SIGNED_FP_NUMBER_RANGE "[-0123456789.]"
765#define SIGNED_NUMBER_RANGE    "[-0123456789]"
766#define        NUMBER_RANGE    "[0123456789]"
767  char value[BUFLEN + 1];
768  char value2[BUFLEN + 1];
769  if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "=" "%" XSTR(BUFLEN) SIGNED_NUMBER_RANGE "." "%" XSTR(BUFLEN) NUMBER_RANGE "%c", name, value, value2, &dummy) == 3) {
770    // Looks like a floating-point number -- try again with more lenient format string
771    if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "=" "%" XSTR(BUFLEN) SIGNED_FP_NUMBER_RANGE "%c", name, value, &dummy) == 2) {
772      return set_fp_numeric_flag(name, value, origin);
773    }
774  }
775
776#define VALUE_RANGE "[-kmgtxKMGTX0123456789abcdefABCDEF]"
777  if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "=" "%" XSTR(BUFLEN) VALUE_RANGE "%c", name, value, &dummy) == 2) {
778    return set_numeric_flag(name, value, origin);
779  }
780
781  return false;
782}
783
784void Arguments::add_string(char*** bldarray, int* count, const char* arg) {
785  assert(bldarray != NULL, "illegal argument");
786
787  if (arg == NULL) {
788    return;
789  }
790
791  int new_count = *count + 1;
792
793  // expand the array and add arg to the last element
794  if (*bldarray == NULL) {
795    *bldarray = NEW_C_HEAP_ARRAY(char*, new_count, mtInternal);
796  } else {
797    *bldarray = REALLOC_C_HEAP_ARRAY(char*, *bldarray, new_count, mtInternal);
798  }
799  (*bldarray)[*count] = os::strdup_check_oom(arg);
800  *count = new_count;
801}
802
803void Arguments::build_jvm_args(const char* arg) {
804  add_string(&_jvm_args_array, &_num_jvm_args, arg);
805}
806
807void Arguments::build_jvm_flags(const char* arg) {
808  add_string(&_jvm_flags_array, &_num_jvm_flags, arg);
809}
810
811// utility function to return a string that concatenates all
812// strings in a given char** array
813const char* Arguments::build_resource_string(char** args, int count) {
814  if (args == NULL || count == 0) {
815    return NULL;
816  }
817  size_t length = strlen(args[0]) + 1; // add 1 for the null terminator
818  for (int i = 1; i < count; i++) {
819    length += strlen(args[i]) + 1; // add 1 for a space
820  }
821  char* s = NEW_RESOURCE_ARRAY(char, length);
822  strcpy(s, args[0]);
823  for (int j = 1; j < count; j++) {
824    strcat(s, " ");
825    strcat(s, args[j]);
826  }
827  return (const char*) s;
828}
829
830void Arguments::print_on(outputStream* st) {
831  st->print_cr("VM Arguments:");
832  if (num_jvm_flags() > 0) {
833    st->print("jvm_flags: "); print_jvm_flags_on(st);
834  }
835  if (num_jvm_args() > 0) {
836    st->print("jvm_args: "); print_jvm_args_on(st);
837  }
838  st->print_cr("java_command: %s", java_command() ? java_command() : "<unknown>");
839  if (_java_class_path != NULL) {
840    char* path = _java_class_path->value();
841    st->print_cr("java_class_path (initial): %s", strlen(path) == 0 ? "<not set>" : path );
842  }
843  st->print_cr("Launcher Type: %s", _sun_java_launcher);
844}
845
846void Arguments::print_jvm_flags_on(outputStream* st) {
847  if (_num_jvm_flags > 0) {
848    for (int i=0; i < _num_jvm_flags; i++) {
849      st->print("%s ", _jvm_flags_array[i]);
850    }
851    st->cr();
852  }
853}
854
855void Arguments::print_jvm_args_on(outputStream* st) {
856  if (_num_jvm_args > 0) {
857    for (int i=0; i < _num_jvm_args; i++) {
858      st->print("%s ", _jvm_args_array[i]);
859    }
860    st->cr();
861  }
862}
863
864bool Arguments::process_argument(const char* arg,
865    jboolean ignore_unrecognized, Flag::Flags origin) {
866
867  JDK_Version since = JDK_Version();
868
869  if (parse_argument(arg, origin) || ignore_unrecognized) {
870    return true;
871  }
872
873  bool has_plus_minus = (*arg == '+' || *arg == '-');
874  const char* const argname = has_plus_minus ? arg + 1 : arg;
875  if (is_newly_obsolete(arg, &since)) {
876    char version[256];
877    since.to_string(version, sizeof(version));
878    warning("ignoring option %s; support was removed in %s", argname, version);
879    return true;
880  }
881
882  // For locked flags, report a custom error message if available.
883  // Otherwise, report the standard unrecognized VM option.
884
885  size_t arg_len;
886  const char* equal_sign = strchr(argname, '=');
887  if (equal_sign == NULL) {
888    arg_len = strlen(argname);
889  } else {
890    arg_len = equal_sign - argname;
891  }
892
893  Flag* found_flag = Flag::find_flag((const char*)argname, arg_len, true, true);
894  if (found_flag != NULL) {
895    char locked_message_buf[BUFLEN];
896    found_flag->get_locked_message(locked_message_buf, BUFLEN);
897    if (strlen(locked_message_buf) == 0) {
898      if (found_flag->is_bool() && !has_plus_minus) {
899        jio_fprintf(defaultStream::error_stream(),
900          "Missing +/- setting for VM option '%s'\n", argname);
901      } else if (!found_flag->is_bool() && has_plus_minus) {
902        jio_fprintf(defaultStream::error_stream(),
903          "Unexpected +/- setting in VM option '%s'\n", argname);
904      } else {
905        jio_fprintf(defaultStream::error_stream(),
906          "Improperly specified VM option '%s'\n", argname);
907      }
908    } else {
909      jio_fprintf(defaultStream::error_stream(), "%s", locked_message_buf);
910    }
911  } else {
912    jio_fprintf(defaultStream::error_stream(),
913                "Unrecognized VM option '%s'\n", argname);
914    Flag* fuzzy_matched = Flag::fuzzy_match((const char*)argname, arg_len, true);
915    if (fuzzy_matched != NULL) {
916      jio_fprintf(defaultStream::error_stream(),
917                  "Did you mean '%s%s%s'? ",
918                  (fuzzy_matched->is_bool()) ? "(+/-)" : "",
919                  fuzzy_matched->_name,
920                  (fuzzy_matched->is_bool()) ? "" : "=<value>");
921      if (is_newly_obsolete(fuzzy_matched->_name, &since)) {
922        char version[256];
923        since.to_string(version, sizeof(version));
924        jio_fprintf(defaultStream::error_stream(),
925                    "Warning: support for %s was removed in %s\n",
926                    fuzzy_matched->_name,
927                    version);
928    }
929  }
930  }
931
932  // allow for commandline "commenting out" options like -XX:#+Verbose
933  return arg[0] == '#';
934}
935
936bool Arguments::process_settings_file(const char* file_name, bool should_exist, jboolean ignore_unrecognized) {
937  FILE* stream = fopen(file_name, "rb");
938  if (stream == NULL) {
939    if (should_exist) {
940      jio_fprintf(defaultStream::error_stream(),
941                  "Could not open settings file %s\n", file_name);
942      return false;
943    } else {
944      return true;
945    }
946  }
947
948  char token[1024];
949  int  pos = 0;
950
951  bool in_white_space = true;
952  bool in_comment     = false;
953  bool in_quote       = false;
954  char quote_c        = 0;
955  bool result         = true;
956
957  int c = getc(stream);
958  while(c != EOF && pos < (int)(sizeof(token)-1)) {
959    if (in_white_space) {
960      if (in_comment) {
961        if (c == '\n') in_comment = false;
962      } else {
963        if (c == '#') in_comment = true;
964        else if (!isspace(c)) {
965          in_white_space = false;
966          token[pos++] = c;
967        }
968      }
969    } else {
970      if (c == '\n' || (!in_quote && isspace(c))) {
971        // token ends at newline, or at unquoted whitespace
972        // this allows a way to include spaces in string-valued options
973        token[pos] = '\0';
974        logOption(token);
975        result &= process_argument(token, ignore_unrecognized, Flag::CONFIG_FILE);
976        build_jvm_flags(token);
977        pos = 0;
978        in_white_space = true;
979        in_quote = false;
980      } else if (!in_quote && (c == '\'' || c == '"')) {
981        in_quote = true;
982        quote_c = c;
983      } else if (in_quote && (c == quote_c)) {
984        in_quote = false;
985      } else {
986        token[pos++] = c;
987      }
988    }
989    c = getc(stream);
990  }
991  if (pos > 0) {
992    token[pos] = '\0';
993    result &= process_argument(token, ignore_unrecognized, Flag::CONFIG_FILE);
994    build_jvm_flags(token);
995  }
996  fclose(stream);
997  return result;
998}
999
1000//=============================================================================================================
1001// Parsing of properties (-D)
1002
1003const char* Arguments::get_property(const char* key) {
1004  return PropertyList_get_value(system_properties(), key);
1005}
1006
1007bool Arguments::add_property(const char* prop) {
1008  const char* eq = strchr(prop, '=');
1009  char* key;
1010  // ns must be static--its address may be stored in a SystemProperty object.
1011  const static char ns[1] = {0};
1012  char* value = (char *)ns;
1013
1014  size_t key_len = (eq == NULL) ? strlen(prop) : (eq - prop);
1015  key = AllocateHeap(key_len + 1, mtInternal);
1016  strncpy(key, prop, key_len);
1017  key[key_len] = '\0';
1018
1019  if (eq != NULL) {
1020    size_t value_len = strlen(prop) - key_len - 1;
1021    value = AllocateHeap(value_len + 1, mtInternal);
1022    strncpy(value, &prop[key_len + 1], value_len + 1);
1023  }
1024
1025  if (strcmp(key, "java.compiler") == 0) {
1026    process_java_compiler_argument(value);
1027    FreeHeap(key);
1028    if (eq != NULL) {
1029      FreeHeap(value);
1030    }
1031    return true;
1032  } else if (strcmp(key, "sun.java.command") == 0) {
1033    _java_command = value;
1034
1035    // Record value in Arguments, but let it get passed to Java.
1036  } else if (strcmp(key, "sun.java.launcher.is_altjvm") == 0 ||
1037             strcmp(key, "sun.java.launcher.pid") == 0) {
1038    // sun.java.launcher.is_altjvm and sun.java.launcher.pid property are
1039    // private and are processed in process_sun_java_launcher_properties();
1040    // the sun.java.launcher property is passed on to the java application
1041    FreeHeap(key);
1042    if (eq != NULL) {
1043      FreeHeap(value);
1044    }
1045    return true;
1046  } else if (strcmp(key, "java.vendor.url.bug") == 0) {
1047    // save it in _java_vendor_url_bug, so JVM fatal error handler can access
1048    // its value without going through the property list or making a Java call.
1049    _java_vendor_url_bug = value;
1050  } else if (strcmp(key, "sun.boot.library.path") == 0) {
1051    PropertyList_unique_add(&_system_properties, key, value, true);
1052    return true;
1053  }
1054  // Create new property and add at the end of the list
1055  PropertyList_unique_add(&_system_properties, key, value);
1056  return true;
1057}
1058
1059//===========================================================================================================
1060// Setting int/mixed/comp mode flags
1061
1062void Arguments::set_mode_flags(Mode mode) {
1063  // Set up default values for all flags.
1064  // If you add a flag to any of the branches below,
1065  // add a default value for it here.
1066  set_java_compiler(false);
1067  _mode                      = mode;
1068
1069  // Ensure Agent_OnLoad has the correct initial values.
1070  // This may not be the final mode; mode may change later in onload phase.
1071  PropertyList_unique_add(&_system_properties, "java.vm.info",
1072                          (char*)VM_Version::vm_info_string(), false);
1073
1074  UseInterpreter             = true;
1075  UseCompiler                = true;
1076  UseLoopCounter             = true;
1077
1078  // Default values may be platform/compiler dependent -
1079  // use the saved values
1080  ClipInlining               = Arguments::_ClipInlining;
1081  AlwaysCompileLoopMethods   = Arguments::_AlwaysCompileLoopMethods;
1082  UseOnStackReplacement      = Arguments::_UseOnStackReplacement;
1083  BackgroundCompilation      = Arguments::_BackgroundCompilation;
1084
1085  // Change from defaults based on mode
1086  switch (mode) {
1087  default:
1088    ShouldNotReachHere();
1089    break;
1090  case _int:
1091    UseCompiler              = false;
1092    UseLoopCounter           = false;
1093    AlwaysCompileLoopMethods = false;
1094    UseOnStackReplacement    = false;
1095    break;
1096  case _mixed:
1097    // same as default
1098    break;
1099  case _comp:
1100    UseInterpreter           = false;
1101    BackgroundCompilation    = false;
1102    ClipInlining             = false;
1103    // Be much more aggressive in tiered mode with -Xcomp and exercise C2 more.
1104    // We will first compile a level 3 version (C1 with full profiling), then do one invocation of it and
1105    // compile a level 4 (C2) and then continue executing it.
1106    if (TieredCompilation) {
1107      Tier3InvokeNotifyFreqLog = 0;
1108      Tier4InvocationThreshold = 0;
1109    }
1110    break;
1111  }
1112}
1113
1114#if defined(COMPILER2) || defined(_LP64) || !INCLUDE_CDS
1115// Conflict: required to use shared spaces (-Xshare:on), but
1116// incompatible command line options were chosen.
1117
1118static void no_shared_spaces(const char* message) {
1119  if (RequireSharedSpaces) {
1120    jio_fprintf(defaultStream::error_stream(),
1121      "Class data sharing is inconsistent with other specified options.\n");
1122    vm_exit_during_initialization("Unable to use shared archive.", message);
1123  } else {
1124    FLAG_SET_DEFAULT(UseSharedSpaces, false);
1125  }
1126}
1127#endif
1128
1129// Returns threshold scaled with CompileThresholdScaling
1130intx Arguments::get_scaled_compile_threshold(intx threshold) {
1131  return (intx)(threshold * CompileThresholdScaling);
1132}
1133
1134// Returns freq_log scaled with CompileThresholdScaling
1135intx Arguments::get_scaled_freq_log(intx freq_log) {
1136  intx scaled_freq = get_scaled_compile_threshold((intx)1 << freq_log);
1137  if (scaled_freq == 0) {
1138    return 0;
1139  } else {
1140    return log2_intptr(scaled_freq);
1141  }
1142}
1143
1144void Arguments::set_tiered_flags() {
1145  // With tiered, set default policy to AdvancedThresholdPolicy, which is 3.
1146  if (FLAG_IS_DEFAULT(CompilationPolicyChoice)) {
1147    FLAG_SET_DEFAULT(CompilationPolicyChoice, 3);
1148  }
1149  if (CompilationPolicyChoice < 2) {
1150    vm_exit_during_initialization(
1151      "Incompatible compilation policy selected", NULL);
1152  }
1153  // Increase the code cache size - tiered compiles a lot more.
1154  if (FLAG_IS_DEFAULT(ReservedCodeCacheSize)) {
1155    FLAG_SET_ERGO(uintx, ReservedCodeCacheSize,
1156                  MIN2(CODE_CACHE_DEFAULT_LIMIT, ReservedCodeCacheSize * 5));
1157  }
1158  // Enable SegmentedCodeCache if TieredCompilation is enabled and ReservedCodeCacheSize >= 240M
1159  if (FLAG_IS_DEFAULT(SegmentedCodeCache) && ReservedCodeCacheSize >= 240*M) {
1160    FLAG_SET_ERGO(bool, SegmentedCodeCache, true);
1161
1162    if (FLAG_IS_DEFAULT(ReservedCodeCacheSize)) {
1163      // Multiply sizes by 5 but fix NonNMethodCodeHeapSize (distribute among non-profiled and profiled code heap)
1164      if (FLAG_IS_DEFAULT(ProfiledCodeHeapSize)) {
1165        FLAG_SET_ERGO(uintx, ProfiledCodeHeapSize, ProfiledCodeHeapSize * 5 + NonNMethodCodeHeapSize * 2);
1166      }
1167      if (FLAG_IS_DEFAULT(NonProfiledCodeHeapSize)) {
1168        FLAG_SET_ERGO(uintx, NonProfiledCodeHeapSize, NonProfiledCodeHeapSize * 5 + NonNMethodCodeHeapSize * 2);
1169      }
1170      // Check consistency of code heap sizes
1171      if ((NonNMethodCodeHeapSize + NonProfiledCodeHeapSize + ProfiledCodeHeapSize) != ReservedCodeCacheSize) {
1172        jio_fprintf(defaultStream::error_stream(),
1173                    "Invalid code heap sizes: NonNMethodCodeHeapSize(%dK) + ProfiledCodeHeapSize(%dK) + NonProfiledCodeHeapSize(%dK) = %dK. Must be equal to ReservedCodeCacheSize = %uK.\n",
1174                    NonNMethodCodeHeapSize/K, ProfiledCodeHeapSize/K, NonProfiledCodeHeapSize/K,
1175                    (NonNMethodCodeHeapSize + ProfiledCodeHeapSize + NonProfiledCodeHeapSize)/K, ReservedCodeCacheSize/K);
1176        vm_exit(1);
1177      }
1178    }
1179  }
1180  if (!UseInterpreter) { // -Xcomp
1181    Tier3InvokeNotifyFreqLog = 0;
1182    Tier4InvocationThreshold = 0;
1183  }
1184  // Scale tiered compilation thresholds
1185  if (!FLAG_IS_DEFAULT(CompileThresholdScaling)) {
1186    FLAG_SET_ERGO(intx, Tier0InvokeNotifyFreqLog, get_scaled_freq_log(Tier0InvokeNotifyFreqLog));
1187    FLAG_SET_ERGO(intx, Tier0BackedgeNotifyFreqLog, get_scaled_freq_log(Tier0BackedgeNotifyFreqLog));
1188
1189    FLAG_SET_ERGO(intx, Tier3InvocationThreshold, get_scaled_compile_threshold(Tier3InvocationThreshold));
1190    FLAG_SET_ERGO(intx, Tier3MinInvocationThreshold, get_scaled_compile_threshold(Tier3MinInvocationThreshold));
1191    FLAG_SET_ERGO(intx, Tier3CompileThreshold, get_scaled_compile_threshold(Tier3CompileThreshold));
1192    FLAG_SET_ERGO(intx, Tier3BackEdgeThreshold, get_scaled_compile_threshold(Tier3BackEdgeThreshold));
1193
1194    // Tier2{Invocation,MinInvocation,Compile,Backedge}Threshold should be scaled here
1195    // once these thresholds become supported.
1196
1197    FLAG_SET_ERGO(intx, Tier2InvokeNotifyFreqLog, get_scaled_freq_log(Tier2InvokeNotifyFreqLog));
1198    FLAG_SET_ERGO(intx, Tier2BackedgeNotifyFreqLog, get_scaled_freq_log(Tier2BackedgeNotifyFreqLog));
1199
1200    FLAG_SET_ERGO(intx, Tier3InvokeNotifyFreqLog, get_scaled_freq_log(Tier3InvokeNotifyFreqLog));
1201    FLAG_SET_ERGO(intx, Tier3BackedgeNotifyFreqLog, get_scaled_freq_log(Tier3BackedgeNotifyFreqLog));
1202
1203    FLAG_SET_ERGO(intx, Tier23InlineeNotifyFreqLog, get_scaled_freq_log(Tier23InlineeNotifyFreqLog));
1204
1205    FLAG_SET_ERGO(intx, Tier4InvocationThreshold, get_scaled_compile_threshold(Tier4InvocationThreshold));
1206    FLAG_SET_ERGO(intx, Tier4MinInvocationThreshold, get_scaled_compile_threshold(Tier4MinInvocationThreshold));
1207    FLAG_SET_ERGO(intx, Tier4CompileThreshold, get_scaled_compile_threshold(Tier4CompileThreshold));
1208    FLAG_SET_ERGO(intx, Tier4BackEdgeThreshold, get_scaled_compile_threshold(Tier4BackEdgeThreshold));
1209  }
1210}
1211
1212/**
1213 * Returns the minimum number of compiler threads needed to run the JVM. The following
1214 * configurations are possible.
1215 *
1216 * 1) The JVM is build using an interpreter only. As a result, the minimum number of
1217 *    compiler threads is 0.
1218 * 2) The JVM is build using the compiler(s) and tiered compilation is disabled. As
1219 *    a result, either C1 or C2 is used, so the minimum number of compiler threads is 1.
1220 * 3) The JVM is build using the compiler(s) and tiered compilation is enabled. However,
1221 *    the option "TieredStopAtLevel < CompLevel_full_optimization". As a result, only
1222 *    C1 can be used, so the minimum number of compiler threads is 1.
1223 * 4) The JVM is build using the compilers and tiered compilation is enabled. The option
1224 *    'TieredStopAtLevel = CompLevel_full_optimization' (the default value). As a result,
1225 *    the minimum number of compiler threads is 2.
1226 */
1227int Arguments::get_min_number_of_compiler_threads() {
1228#if !defined(COMPILER1) && !defined(COMPILER2) && !defined(SHARK)
1229  return 0;   // case 1
1230#else
1231  if (!TieredCompilation || (TieredStopAtLevel < CompLevel_full_optimization)) {
1232    return 1; // case 2 or case 3
1233  }
1234  return 2;   // case 4 (tiered)
1235#endif
1236}
1237
1238#if INCLUDE_ALL_GCS
1239static void disable_adaptive_size_policy(const char* collector_name) {
1240  if (UseAdaptiveSizePolicy) {
1241    if (FLAG_IS_CMDLINE(UseAdaptiveSizePolicy)) {
1242      warning("disabling UseAdaptiveSizePolicy; it is incompatible with %s.",
1243              collector_name);
1244    }
1245    FLAG_SET_DEFAULT(UseAdaptiveSizePolicy, false);
1246  }
1247}
1248
1249void Arguments::set_parnew_gc_flags() {
1250  assert(!UseSerialGC && !UseParallelOldGC && !UseParallelGC && !UseG1GC,
1251         "control point invariant");
1252  assert(UseConcMarkSweepGC, "CMS is expected to be on here");
1253  assert(UseParNewGC, "ParNew should always be used with CMS");
1254
1255  if (FLAG_IS_DEFAULT(ParallelGCThreads)) {
1256    FLAG_SET_DEFAULT(ParallelGCThreads, Abstract_VM_Version::parallel_worker_threads());
1257    assert(ParallelGCThreads > 0, "We should always have at least one thread by default");
1258  } else if (ParallelGCThreads == 0) {
1259    jio_fprintf(defaultStream::error_stream(),
1260        "The ParNew GC can not be combined with -XX:ParallelGCThreads=0\n");
1261    vm_exit(1);
1262  }
1263
1264  // By default YoungPLABSize and OldPLABSize are set to 4096 and 1024 respectively,
1265  // these settings are default for Parallel Scavenger. For ParNew+Tenured configuration
1266  // we set them to 1024 and 1024.
1267  // See CR 6362902.
1268  if (FLAG_IS_DEFAULT(YoungPLABSize)) {
1269    FLAG_SET_DEFAULT(YoungPLABSize, (intx)1024);
1270  }
1271  if (FLAG_IS_DEFAULT(OldPLABSize)) {
1272    FLAG_SET_DEFAULT(OldPLABSize, (intx)1024);
1273  }
1274
1275  // When using compressed oops, we use local overflow stacks,
1276  // rather than using a global overflow list chained through
1277  // the klass word of the object's pre-image.
1278  if (UseCompressedOops && !ParGCUseLocalOverflow) {
1279    if (!FLAG_IS_DEFAULT(ParGCUseLocalOverflow)) {
1280      warning("Forcing +ParGCUseLocalOverflow: needed if using compressed references");
1281    }
1282    FLAG_SET_DEFAULT(ParGCUseLocalOverflow, true);
1283  }
1284  assert(ParGCUseLocalOverflow || !UseCompressedOops, "Error");
1285}
1286
1287// Adjust some sizes to suit CMS and/or ParNew needs; these work well on
1288// sparc/solaris for certain applications, but would gain from
1289// further optimization and tuning efforts, and would almost
1290// certainly gain from analysis of platform and environment.
1291void Arguments::set_cms_and_parnew_gc_flags() {
1292  assert(!UseSerialGC && !UseParallelOldGC && !UseParallelGC, "Error");
1293  assert(UseConcMarkSweepGC, "CMS is expected to be on here");
1294  assert(UseParNewGC, "ParNew should always be used with CMS");
1295
1296  // Turn off AdaptiveSizePolicy by default for cms until it is complete.
1297  disable_adaptive_size_policy("UseConcMarkSweepGC");
1298
1299  set_parnew_gc_flags();
1300
1301  size_t max_heap = align_size_down(MaxHeapSize,
1302                                    CardTableRS::ct_max_alignment_constraint());
1303
1304  // Now make adjustments for CMS
1305  intx   tenuring_default = (intx)6;
1306  size_t young_gen_per_worker = CMSYoungGenPerWorker;
1307
1308  // Preferred young gen size for "short" pauses:
1309  // upper bound depends on # of threads and NewRatio.
1310  const uintx parallel_gc_threads =
1311    (ParallelGCThreads == 0 ? 1 : ParallelGCThreads);
1312  const size_t preferred_max_new_size_unaligned =
1313    MIN2(max_heap/(NewRatio+1), ScaleForWordSize(young_gen_per_worker * parallel_gc_threads));
1314  size_t preferred_max_new_size =
1315    align_size_up(preferred_max_new_size_unaligned, os::vm_page_size());
1316
1317  // Unless explicitly requested otherwise, size young gen
1318  // for "short" pauses ~ CMSYoungGenPerWorker*ParallelGCThreads
1319
1320  // If either MaxNewSize or NewRatio is set on the command line,
1321  // assume the user is trying to set the size of the young gen.
1322  if (FLAG_IS_DEFAULT(MaxNewSize) && FLAG_IS_DEFAULT(NewRatio)) {
1323
1324    // Set MaxNewSize to our calculated preferred_max_new_size unless
1325    // NewSize was set on the command line and it is larger than
1326    // preferred_max_new_size.
1327    if (!FLAG_IS_DEFAULT(NewSize)) {   // NewSize explicitly set at command-line
1328      FLAG_SET_ERGO(uintx, MaxNewSize, MAX2(NewSize, preferred_max_new_size));
1329    } else {
1330      FLAG_SET_ERGO(uintx, MaxNewSize, preferred_max_new_size);
1331    }
1332    if (PrintGCDetails && Verbose) {
1333      // Too early to use gclog_or_tty
1334      tty->print_cr("CMS ergo set MaxNewSize: " SIZE_FORMAT, MaxNewSize);
1335    }
1336
1337    // Code along this path potentially sets NewSize and OldSize
1338    if (PrintGCDetails && Verbose) {
1339      // Too early to use gclog_or_tty
1340      tty->print_cr("CMS set min_heap_size: " SIZE_FORMAT
1341           " initial_heap_size:  " SIZE_FORMAT
1342           " max_heap: " SIZE_FORMAT,
1343           min_heap_size(), InitialHeapSize, max_heap);
1344    }
1345    size_t min_new = preferred_max_new_size;
1346    if (FLAG_IS_CMDLINE(NewSize)) {
1347      min_new = NewSize;
1348    }
1349    if (max_heap > min_new && min_heap_size() > min_new) {
1350      // Unless explicitly requested otherwise, make young gen
1351      // at least min_new, and at most preferred_max_new_size.
1352      if (FLAG_IS_DEFAULT(NewSize)) {
1353        FLAG_SET_ERGO(uintx, NewSize, MAX2(NewSize, min_new));
1354        FLAG_SET_ERGO(uintx, NewSize, MIN2(preferred_max_new_size, NewSize));
1355        if (PrintGCDetails && Verbose) {
1356          // Too early to use gclog_or_tty
1357          tty->print_cr("CMS ergo set NewSize: " SIZE_FORMAT, NewSize);
1358        }
1359      }
1360      // Unless explicitly requested otherwise, size old gen
1361      // so it's NewRatio x of NewSize.
1362      if (FLAG_IS_DEFAULT(OldSize)) {
1363        if (max_heap > NewSize) {
1364          FLAG_SET_ERGO(uintx, OldSize, MIN2(NewRatio*NewSize, max_heap - NewSize));
1365          if (PrintGCDetails && Verbose) {
1366            // Too early to use gclog_or_tty
1367            tty->print_cr("CMS ergo set OldSize: " SIZE_FORMAT, OldSize);
1368          }
1369        }
1370      }
1371    }
1372  }
1373  // Unless explicitly requested otherwise, definitely
1374  // promote all objects surviving "tenuring_default" scavenges.
1375  if (FLAG_IS_DEFAULT(MaxTenuringThreshold) &&
1376      FLAG_IS_DEFAULT(SurvivorRatio)) {
1377    FLAG_SET_ERGO(uintx, MaxTenuringThreshold, tenuring_default);
1378  }
1379  // If we decided above (or user explicitly requested)
1380  // `promote all' (via MaxTenuringThreshold := 0),
1381  // prefer minuscule survivor spaces so as not to waste
1382  // space for (non-existent) survivors
1383  if (FLAG_IS_DEFAULT(SurvivorRatio) && MaxTenuringThreshold == 0) {
1384    FLAG_SET_ERGO(uintx, SurvivorRatio, MAX2((uintx)1024, SurvivorRatio));
1385  }
1386
1387  // OldPLABSize is interpreted in CMS as not the size of the PLAB in words,
1388  // but rather the number of free blocks of a given size that are used when
1389  // replenishing the local per-worker free list caches.
1390  if (FLAG_IS_DEFAULT(OldPLABSize)) {
1391    if (!FLAG_IS_DEFAULT(ResizeOldPLAB) && !ResizeOldPLAB) {
1392      // OldPLAB sizing manually turned off: Use a larger default setting,
1393      // unless it was manually specified. This is because a too-low value
1394      // will slow down scavenges.
1395      FLAG_SET_ERGO(uintx, OldPLABSize, CFLS_LAB::_default_static_old_plab_size); // default value before 6631166
1396    } else {
1397      FLAG_SET_DEFAULT(OldPLABSize, CFLS_LAB::_default_dynamic_old_plab_size); // old CMSParPromoteBlocksToClaim default
1398    }
1399  }
1400
1401  // If either of the static initialization defaults have changed, note this
1402  // modification.
1403  if (!FLAG_IS_DEFAULT(OldPLABSize) || !FLAG_IS_DEFAULT(OldPLABWeight)) {
1404    CFLS_LAB::modify_initialization(OldPLABSize, OldPLABWeight);
1405  }
1406  if (PrintGCDetails && Verbose) {
1407    tty->print_cr("MarkStackSize: %uk  MarkStackSizeMax: %uk",
1408      (unsigned int) (MarkStackSize / K), (uint) (MarkStackSizeMax / K));
1409    tty->print_cr("ConcGCThreads: %u", (uint) ConcGCThreads);
1410  }
1411}
1412#endif // INCLUDE_ALL_GCS
1413
1414void set_object_alignment() {
1415  // Object alignment.
1416  assert(is_power_of_2(ObjectAlignmentInBytes), "ObjectAlignmentInBytes must be power of 2");
1417  MinObjAlignmentInBytes     = ObjectAlignmentInBytes;
1418  assert(MinObjAlignmentInBytes >= HeapWordsPerLong * HeapWordSize, "ObjectAlignmentInBytes value is too small");
1419  MinObjAlignment            = MinObjAlignmentInBytes / HeapWordSize;
1420  assert(MinObjAlignmentInBytes == MinObjAlignment * HeapWordSize, "ObjectAlignmentInBytes value is incorrect");
1421  MinObjAlignmentInBytesMask = MinObjAlignmentInBytes - 1;
1422
1423  LogMinObjAlignmentInBytes  = exact_log2(ObjectAlignmentInBytes);
1424  LogMinObjAlignment         = LogMinObjAlignmentInBytes - LogHeapWordSize;
1425
1426  // Oop encoding heap max
1427  OopEncodingHeapMax = (uint64_t(max_juint) + 1) << LogMinObjAlignmentInBytes;
1428
1429#if INCLUDE_ALL_GCS
1430  // Set CMS global values
1431  CompactibleFreeListSpace::set_cms_values();
1432#endif // INCLUDE_ALL_GCS
1433}
1434
1435bool verify_object_alignment() {
1436  // Object alignment.
1437  if (!is_power_of_2(ObjectAlignmentInBytes)) {
1438    jio_fprintf(defaultStream::error_stream(),
1439                "error: ObjectAlignmentInBytes=%d must be power of 2\n",
1440                (int)ObjectAlignmentInBytes);
1441    return false;
1442  }
1443  if ((int)ObjectAlignmentInBytes < BytesPerLong) {
1444    jio_fprintf(defaultStream::error_stream(),
1445                "error: ObjectAlignmentInBytes=%d must be greater or equal %d\n",
1446                (int)ObjectAlignmentInBytes, BytesPerLong);
1447    return false;
1448  }
1449  // It does not make sense to have big object alignment
1450  // since a space lost due to alignment will be greater
1451  // then a saved space from compressed oops.
1452  if ((int)ObjectAlignmentInBytes > 256) {
1453    jio_fprintf(defaultStream::error_stream(),
1454                "error: ObjectAlignmentInBytes=%d must not be greater than 256\n",
1455                (int)ObjectAlignmentInBytes);
1456    return false;
1457  }
1458  // In case page size is very small.
1459  if ((int)ObjectAlignmentInBytes >= os::vm_page_size()) {
1460    jio_fprintf(defaultStream::error_stream(),
1461                "error: ObjectAlignmentInBytes=%d must be less than page size %d\n",
1462                (int)ObjectAlignmentInBytes, os::vm_page_size());
1463    return false;
1464  }
1465  if(SurvivorAlignmentInBytes == 0) {
1466    SurvivorAlignmentInBytes = ObjectAlignmentInBytes;
1467  } else {
1468    if (!is_power_of_2(SurvivorAlignmentInBytes)) {
1469      jio_fprintf(defaultStream::error_stream(),
1470            "error: SurvivorAlignmentInBytes=%d must be power of 2\n",
1471            (int)SurvivorAlignmentInBytes);
1472      return false;
1473    }
1474    if (SurvivorAlignmentInBytes < ObjectAlignmentInBytes) {
1475      jio_fprintf(defaultStream::error_stream(),
1476          "error: SurvivorAlignmentInBytes=%d must be greater than ObjectAlignmentInBytes=%d \n",
1477          (int)SurvivorAlignmentInBytes, (int)ObjectAlignmentInBytes);
1478      return false;
1479    }
1480  }
1481  return true;
1482}
1483
1484size_t Arguments::max_heap_for_compressed_oops() {
1485  // Avoid sign flip.
1486  assert(OopEncodingHeapMax > (uint64_t)os::vm_page_size(), "Unusual page size");
1487  // We need to fit both the NULL page and the heap into the memory budget, while
1488  // keeping alignment constraints of the heap. To guarantee the latter, as the
1489  // NULL page is located before the heap, we pad the NULL page to the conservative
1490  // maximum alignment that the GC may ever impose upon the heap.
1491  size_t displacement_due_to_null_page = align_size_up_(os::vm_page_size(),
1492                                                        _conservative_max_heap_alignment);
1493
1494  LP64_ONLY(return OopEncodingHeapMax - displacement_due_to_null_page);
1495  NOT_LP64(ShouldNotReachHere(); return 0);
1496}
1497
1498bool Arguments::should_auto_select_low_pause_collector() {
1499  if (UseAutoGCSelectPolicy &&
1500      !FLAG_IS_DEFAULT(MaxGCPauseMillis) &&
1501      (MaxGCPauseMillis <= AutoGCSelectPauseMillis)) {
1502    if (PrintGCDetails) {
1503      // Cannot use gclog_or_tty yet.
1504      tty->print_cr("Automatic selection of the low pause collector"
1505       " based on pause goal of %d (ms)", (int) MaxGCPauseMillis);
1506    }
1507    return true;
1508  }
1509  return false;
1510}
1511
1512void Arguments::set_use_compressed_oops() {
1513#ifndef ZERO
1514#ifdef _LP64
1515  // MaxHeapSize is not set up properly at this point, but
1516  // the only value that can override MaxHeapSize if we are
1517  // to use UseCompressedOops is InitialHeapSize.
1518  size_t max_heap_size = MAX2(MaxHeapSize, InitialHeapSize);
1519
1520  if (max_heap_size <= max_heap_for_compressed_oops()) {
1521#if !defined(COMPILER1) || defined(TIERED)
1522    if (FLAG_IS_DEFAULT(UseCompressedOops)) {
1523      FLAG_SET_ERGO(bool, UseCompressedOops, true);
1524    }
1525#endif
1526  } else {
1527    if (UseCompressedOops && !FLAG_IS_DEFAULT(UseCompressedOops)) {
1528      warning("Max heap size too large for Compressed Oops");
1529      FLAG_SET_DEFAULT(UseCompressedOops, false);
1530      FLAG_SET_DEFAULT(UseCompressedClassPointers, false);
1531    }
1532  }
1533#endif // _LP64
1534#endif // ZERO
1535}
1536
1537
1538// NOTE: set_use_compressed_klass_ptrs() must be called after calling
1539// set_use_compressed_oops().
1540void Arguments::set_use_compressed_klass_ptrs() {
1541#ifndef ZERO
1542#ifdef _LP64
1543  // UseCompressedOops must be on for UseCompressedClassPointers to be on.
1544  if (!UseCompressedOops) {
1545    if (UseCompressedClassPointers) {
1546      warning("UseCompressedClassPointers requires UseCompressedOops");
1547    }
1548    FLAG_SET_DEFAULT(UseCompressedClassPointers, false);
1549  } else {
1550    // Turn on UseCompressedClassPointers too
1551    if (FLAG_IS_DEFAULT(UseCompressedClassPointers)) {
1552      FLAG_SET_ERGO(bool, UseCompressedClassPointers, true);
1553    }
1554    // Check the CompressedClassSpaceSize to make sure we use compressed klass ptrs.
1555    if (UseCompressedClassPointers) {
1556      if (CompressedClassSpaceSize > KlassEncodingMetaspaceMax) {
1557        warning("CompressedClassSpaceSize is too large for UseCompressedClassPointers");
1558        FLAG_SET_DEFAULT(UseCompressedClassPointers, false);
1559      }
1560    }
1561  }
1562#endif // _LP64
1563#endif // !ZERO
1564}
1565
1566void Arguments::set_conservative_max_heap_alignment() {
1567  // The conservative maximum required alignment for the heap is the maximum of
1568  // the alignments imposed by several sources: any requirements from the heap
1569  // itself, the collector policy and the maximum page size we may run the VM
1570  // with.
1571  size_t heap_alignment = GenCollectedHeap::conservative_max_heap_alignment();
1572#if INCLUDE_ALL_GCS
1573  if (UseParallelGC) {
1574    heap_alignment = ParallelScavengeHeap::conservative_max_heap_alignment();
1575  } else if (UseG1GC) {
1576    heap_alignment = G1CollectedHeap::conservative_max_heap_alignment();
1577  }
1578#endif // INCLUDE_ALL_GCS
1579  _conservative_max_heap_alignment = MAX4(heap_alignment,
1580                                          (size_t)os::vm_allocation_granularity(),
1581                                          os::max_page_size(),
1582                                          CollectorPolicy::compute_heap_alignment());
1583}
1584
1585void Arguments::select_gc_ergonomically() {
1586  if (os::is_server_class_machine()) {
1587    if (should_auto_select_low_pause_collector()) {
1588      FLAG_SET_ERGO(bool, UseConcMarkSweepGC, true);
1589    } else {
1590      FLAG_SET_ERGO(bool, UseParallelGC, true);
1591    }
1592  }
1593}
1594
1595void Arguments::select_gc() {
1596  if (!gc_selected()) {
1597    ArgumentsExt::select_gc_ergonomically();
1598  }
1599}
1600
1601void Arguments::set_ergonomics_flags() {
1602  select_gc();
1603
1604#ifdef COMPILER2
1605  // Shared spaces work fine with other GCs but causes bytecode rewriting
1606  // to be disabled, which hurts interpreter performance and decreases
1607  // server performance.  When -server is specified, keep the default off
1608  // unless it is asked for.  Future work: either add bytecode rewriting
1609  // at link time, or rewrite bytecodes in non-shared methods.
1610  if (!DumpSharedSpaces && !RequireSharedSpaces &&
1611      (FLAG_IS_DEFAULT(UseSharedSpaces) || !UseSharedSpaces)) {
1612    no_shared_spaces("COMPILER2 default: -Xshare:auto | off, have to manually setup to on.");
1613  }
1614#endif
1615
1616  set_conservative_max_heap_alignment();
1617
1618#ifndef ZERO
1619#ifdef _LP64
1620  set_use_compressed_oops();
1621
1622  // set_use_compressed_klass_ptrs() must be called after calling
1623  // set_use_compressed_oops().
1624  set_use_compressed_klass_ptrs();
1625
1626  // Also checks that certain machines are slower with compressed oops
1627  // in vm_version initialization code.
1628#endif // _LP64
1629#endif // !ZERO
1630}
1631
1632void Arguments::set_parallel_gc_flags() {
1633  assert(UseParallelGC || UseParallelOldGC, "Error");
1634  // Enable ParallelOld unless it was explicitly disabled (cmd line or rc file).
1635  if (FLAG_IS_DEFAULT(UseParallelOldGC)) {
1636    FLAG_SET_DEFAULT(UseParallelOldGC, true);
1637  }
1638  FLAG_SET_DEFAULT(UseParallelGC, true);
1639
1640  // If no heap maximum was requested explicitly, use some reasonable fraction
1641  // of the physical memory, up to a maximum of 1GB.
1642  FLAG_SET_DEFAULT(ParallelGCThreads,
1643                   Abstract_VM_Version::parallel_worker_threads());
1644  if (ParallelGCThreads == 0) {
1645    jio_fprintf(defaultStream::error_stream(),
1646        "The Parallel GC can not be combined with -XX:ParallelGCThreads=0\n");
1647    vm_exit(1);
1648  }
1649
1650  if (UseAdaptiveSizePolicy) {
1651    // We don't want to limit adaptive heap sizing's freedom to adjust the heap
1652    // unless the user actually sets these flags.
1653    if (FLAG_IS_DEFAULT(MinHeapFreeRatio)) {
1654      FLAG_SET_DEFAULT(MinHeapFreeRatio, 0);
1655      _min_heap_free_ratio = MinHeapFreeRatio;
1656    }
1657    if (FLAG_IS_DEFAULT(MaxHeapFreeRatio)) {
1658      FLAG_SET_DEFAULT(MaxHeapFreeRatio, 100);
1659      _max_heap_free_ratio = MaxHeapFreeRatio;
1660    }
1661  }
1662
1663  // If InitialSurvivorRatio or MinSurvivorRatio were not specified, but the
1664  // SurvivorRatio has been set, reset their default values to SurvivorRatio +
1665  // 2.  By doing this we make SurvivorRatio also work for Parallel Scavenger.
1666  // See CR 6362902 for details.
1667  if (!FLAG_IS_DEFAULT(SurvivorRatio)) {
1668    if (FLAG_IS_DEFAULT(InitialSurvivorRatio)) {
1669       FLAG_SET_DEFAULT(InitialSurvivorRatio, SurvivorRatio + 2);
1670    }
1671    if (FLAG_IS_DEFAULT(MinSurvivorRatio)) {
1672      FLAG_SET_DEFAULT(MinSurvivorRatio, SurvivorRatio + 2);
1673    }
1674  }
1675
1676  if (UseParallelOldGC) {
1677    // Par compact uses lower default values since they are treated as
1678    // minimums.  These are different defaults because of the different
1679    // interpretation and are not ergonomically set.
1680    if (FLAG_IS_DEFAULT(MarkSweepDeadRatio)) {
1681      FLAG_SET_DEFAULT(MarkSweepDeadRatio, 1);
1682    }
1683  }
1684}
1685
1686void Arguments::set_g1_gc_flags() {
1687  assert(UseG1GC, "Error");
1688#ifdef COMPILER1
1689  FastTLABRefill = false;
1690#endif
1691  FLAG_SET_DEFAULT(ParallelGCThreads, Abstract_VM_Version::parallel_worker_threads());
1692  if (ParallelGCThreads == 0) {
1693    assert(!FLAG_IS_DEFAULT(ParallelGCThreads), "The default value for ParallelGCThreads should not be 0.");
1694    vm_exit_during_initialization("The flag -XX:+UseG1GC can not be combined with -XX:ParallelGCThreads=0", NULL);
1695  }
1696
1697#if INCLUDE_ALL_GCS
1698  if (G1ConcRefinementThreads == 0) {
1699    FLAG_SET_DEFAULT(G1ConcRefinementThreads, ParallelGCThreads);
1700  }
1701#endif
1702
1703  // MarkStackSize will be set (if it hasn't been set by the user)
1704  // when concurrent marking is initialized.
1705  // Its value will be based upon the number of parallel marking threads.
1706  // But we do set the maximum mark stack size here.
1707  if (FLAG_IS_DEFAULT(MarkStackSizeMax)) {
1708    FLAG_SET_DEFAULT(MarkStackSizeMax, 128 * TASKQUEUE_SIZE);
1709  }
1710
1711  if (FLAG_IS_DEFAULT(GCTimeRatio) || GCTimeRatio == 0) {
1712    // In G1, we want the default GC overhead goal to be higher than
1713    // say in PS. So we set it here to 10%. Otherwise the heap might
1714    // be expanded more aggressively than we would like it to. In
1715    // fact, even 10% seems to not be high enough in some cases
1716    // (especially small GC stress tests that the main thing they do
1717    // is allocation). We might consider increase it further.
1718    FLAG_SET_DEFAULT(GCTimeRatio, 9);
1719  }
1720
1721  if (PrintGCDetails && Verbose) {
1722    tty->print_cr("MarkStackSize: %uk  MarkStackSizeMax: %uk",
1723      (unsigned int) (MarkStackSize / K), (uint) (MarkStackSizeMax / K));
1724    tty->print_cr("ConcGCThreads: %u", (uint) ConcGCThreads);
1725  }
1726}
1727
1728#if !INCLUDE_ALL_GCS
1729#ifdef ASSERT
1730static bool verify_serial_gc_flags() {
1731  return (UseSerialGC &&
1732        !(UseParNewGC || (UseConcMarkSweepGC) || UseG1GC ||
1733          UseParallelGC || UseParallelOldGC));
1734}
1735#endif // ASSERT
1736#endif // INCLUDE_ALL_GCS
1737
1738void Arguments::set_gc_specific_flags() {
1739#if INCLUDE_ALL_GCS
1740  // Set per-collector flags
1741  if (UseParallelGC || UseParallelOldGC) {
1742    set_parallel_gc_flags();
1743  } else if (UseConcMarkSweepGC) {
1744    set_cms_and_parnew_gc_flags();
1745  } else if (UseG1GC) {
1746    set_g1_gc_flags();
1747  }
1748  check_deprecated_gc_flags();
1749  if (AssumeMP && !UseSerialGC) {
1750    if (FLAG_IS_DEFAULT(ParallelGCThreads) && ParallelGCThreads == 1) {
1751      warning("If the number of processors is expected to increase from one, then"
1752              " you should configure the number of parallel GC threads appropriately"
1753              " using -XX:ParallelGCThreads=N");
1754    }
1755  }
1756  if (MinHeapFreeRatio == 100) {
1757    // Keeping the heap 100% free is hard ;-) so limit it to 99%.
1758    FLAG_SET_ERGO(uintx, MinHeapFreeRatio, 99);
1759  }
1760#else // INCLUDE_ALL_GCS
1761  assert(verify_serial_gc_flags(), "SerialGC unset");
1762#endif // INCLUDE_ALL_GCS
1763}
1764
1765julong Arguments::limit_by_allocatable_memory(julong limit) {
1766  julong max_allocatable;
1767  julong result = limit;
1768  if (os::has_allocatable_memory_limit(&max_allocatable)) {
1769    result = MIN2(result, max_allocatable / MaxVirtMemFraction);
1770  }
1771  return result;
1772}
1773
1774// Use static initialization to get the default before parsing
1775static const uintx DefaultHeapBaseMinAddress = HeapBaseMinAddress;
1776
1777void Arguments::set_heap_size() {
1778  if (!FLAG_IS_DEFAULT(DefaultMaxRAMFraction)) {
1779    // Deprecated flag
1780    FLAG_SET_CMDLINE(uintx, MaxRAMFraction, DefaultMaxRAMFraction);
1781  }
1782
1783  const julong phys_mem =
1784    FLAG_IS_DEFAULT(MaxRAM) ? MIN2(os::physical_memory(), (julong)MaxRAM)
1785                            : (julong)MaxRAM;
1786
1787  // If the maximum heap size has not been set with -Xmx,
1788  // then set it as fraction of the size of physical memory,
1789  // respecting the maximum and minimum sizes of the heap.
1790  if (FLAG_IS_DEFAULT(MaxHeapSize)) {
1791    julong reasonable_max = phys_mem / MaxRAMFraction;
1792
1793    if (phys_mem <= MaxHeapSize * MinRAMFraction) {
1794      // Small physical memory, so use a minimum fraction of it for the heap
1795      reasonable_max = phys_mem / MinRAMFraction;
1796    } else {
1797      // Not-small physical memory, so require a heap at least
1798      // as large as MaxHeapSize
1799      reasonable_max = MAX2(reasonable_max, (julong)MaxHeapSize);
1800    }
1801    if (!FLAG_IS_DEFAULT(ErgoHeapSizeLimit) && ErgoHeapSizeLimit != 0) {
1802      // Limit the heap size to ErgoHeapSizeLimit
1803      reasonable_max = MIN2(reasonable_max, (julong)ErgoHeapSizeLimit);
1804    }
1805    if (UseCompressedOops) {
1806      // Limit the heap size to the maximum possible when using compressed oops
1807      julong max_coop_heap = (julong)max_heap_for_compressed_oops();
1808
1809      // HeapBaseMinAddress can be greater than default but not less than.
1810      if (!FLAG_IS_DEFAULT(HeapBaseMinAddress)) {
1811        if (HeapBaseMinAddress < DefaultHeapBaseMinAddress) {
1812          // matches compressed oops printing flags
1813          if (PrintCompressedOopsMode || (PrintMiscellaneous && Verbose)) {
1814            jio_fprintf(defaultStream::error_stream(),
1815                        "HeapBaseMinAddress must be at least " UINTX_FORMAT
1816                        " (" UINTX_FORMAT "G) which is greater than value given "
1817                        UINTX_FORMAT "\n",
1818                        DefaultHeapBaseMinAddress,
1819                        DefaultHeapBaseMinAddress/G,
1820                        HeapBaseMinAddress);
1821          }
1822          FLAG_SET_ERGO(uintx, HeapBaseMinAddress, DefaultHeapBaseMinAddress);
1823        }
1824      }
1825
1826      if (HeapBaseMinAddress + MaxHeapSize < max_coop_heap) {
1827        // Heap should be above HeapBaseMinAddress to get zero based compressed oops
1828        // but it should be not less than default MaxHeapSize.
1829        max_coop_heap -= HeapBaseMinAddress;
1830      }
1831      reasonable_max = MIN2(reasonable_max, max_coop_heap);
1832    }
1833    reasonable_max = limit_by_allocatable_memory(reasonable_max);
1834
1835    if (!FLAG_IS_DEFAULT(InitialHeapSize)) {
1836      // An initial heap size was specified on the command line,
1837      // so be sure that the maximum size is consistent.  Done
1838      // after call to limit_by_allocatable_memory because that
1839      // method might reduce the allocation size.
1840      reasonable_max = MAX2(reasonable_max, (julong)InitialHeapSize);
1841    }
1842
1843    if (PrintGCDetails && Verbose) {
1844      // Cannot use gclog_or_tty yet.
1845      tty->print_cr("  Maximum heap size " SIZE_FORMAT, (size_t) reasonable_max);
1846    }
1847    FLAG_SET_ERGO(uintx, MaxHeapSize, (uintx)reasonable_max);
1848  }
1849
1850  // If the minimum or initial heap_size have not been set or requested to be set
1851  // ergonomically, set them accordingly.
1852  if (InitialHeapSize == 0 || min_heap_size() == 0) {
1853    julong reasonable_minimum = (julong)(OldSize + NewSize);
1854
1855    reasonable_minimum = MIN2(reasonable_minimum, (julong)MaxHeapSize);
1856
1857    reasonable_minimum = limit_by_allocatable_memory(reasonable_minimum);
1858
1859    if (InitialHeapSize == 0) {
1860      julong reasonable_initial = phys_mem / InitialRAMFraction;
1861
1862      reasonable_initial = MAX3(reasonable_initial, reasonable_minimum, (julong)min_heap_size());
1863      reasonable_initial = MIN2(reasonable_initial, (julong)MaxHeapSize);
1864
1865      reasonable_initial = limit_by_allocatable_memory(reasonable_initial);
1866
1867      if (PrintGCDetails && Verbose) {
1868        // Cannot use gclog_or_tty yet.
1869        tty->print_cr("  Initial heap size " SIZE_FORMAT, (uintx)reasonable_initial);
1870      }
1871      FLAG_SET_ERGO(uintx, InitialHeapSize, (uintx)reasonable_initial);
1872    }
1873    // If the minimum heap size has not been set (via -Xms),
1874    // synchronize with InitialHeapSize to avoid errors with the default value.
1875    if (min_heap_size() == 0) {
1876      set_min_heap_size(MIN2((uintx)reasonable_minimum, InitialHeapSize));
1877      if (PrintGCDetails && Verbose) {
1878        // Cannot use gclog_or_tty yet.
1879        tty->print_cr("  Minimum heap size " SIZE_FORMAT, min_heap_size());
1880      }
1881    }
1882  }
1883}
1884
1885// This must be called after ergonomics because we want bytecode rewriting
1886// if the server compiler is used, or if UseSharedSpaces is disabled.
1887void Arguments::set_bytecode_flags() {
1888  // Better not attempt to store into a read-only space.
1889  if (UseSharedSpaces) {
1890    FLAG_SET_DEFAULT(RewriteBytecodes, false);
1891    FLAG_SET_DEFAULT(RewriteFrequentPairs, false);
1892  }
1893
1894  if (!RewriteBytecodes) {
1895    FLAG_SET_DEFAULT(RewriteFrequentPairs, false);
1896  }
1897}
1898
1899// Aggressive optimization flags  -XX:+AggressiveOpts
1900void Arguments::set_aggressive_opts_flags() {
1901#ifdef COMPILER2
1902  if (AggressiveUnboxing) {
1903    if (FLAG_IS_DEFAULT(EliminateAutoBox)) {
1904      FLAG_SET_DEFAULT(EliminateAutoBox, true);
1905    } else if (!EliminateAutoBox) {
1906      // warning("AggressiveUnboxing is disabled because EliminateAutoBox is disabled");
1907      AggressiveUnboxing = false;
1908    }
1909    if (FLAG_IS_DEFAULT(DoEscapeAnalysis)) {
1910      FLAG_SET_DEFAULT(DoEscapeAnalysis, true);
1911    } else if (!DoEscapeAnalysis) {
1912      // warning("AggressiveUnboxing is disabled because DoEscapeAnalysis is disabled");
1913      AggressiveUnboxing = false;
1914    }
1915  }
1916  if (AggressiveOpts || !FLAG_IS_DEFAULT(AutoBoxCacheMax)) {
1917    if (FLAG_IS_DEFAULT(EliminateAutoBox)) {
1918      FLAG_SET_DEFAULT(EliminateAutoBox, true);
1919    }
1920    if (FLAG_IS_DEFAULT(AutoBoxCacheMax)) {
1921      FLAG_SET_DEFAULT(AutoBoxCacheMax, 20000);
1922    }
1923
1924    // Feed the cache size setting into the JDK
1925    char buffer[1024];
1926    sprintf(buffer, "java.lang.Integer.IntegerCache.high=" INTX_FORMAT, AutoBoxCacheMax);
1927    add_property(buffer);
1928  }
1929  if (AggressiveOpts && FLAG_IS_DEFAULT(BiasedLockingStartupDelay)) {
1930    FLAG_SET_DEFAULT(BiasedLockingStartupDelay, 500);
1931  }
1932#endif
1933
1934  if (AggressiveOpts) {
1935// Sample flag setting code
1936//    if (FLAG_IS_DEFAULT(EliminateZeroing)) {
1937//      FLAG_SET_DEFAULT(EliminateZeroing, true);
1938//    }
1939  }
1940}
1941
1942//===========================================================================================================
1943// Parsing of java.compiler property
1944
1945void Arguments::process_java_compiler_argument(char* arg) {
1946  // For backwards compatibility, Djava.compiler=NONE or ""
1947  // causes us to switch to -Xint mode UNLESS -Xdebug
1948  // is also specified.
1949  if (strlen(arg) == 0 || strcasecmp(arg, "NONE") == 0) {
1950    set_java_compiler(true);    // "-Djava.compiler[=...]" most recently seen.
1951  }
1952}
1953
1954void Arguments::process_java_launcher_argument(const char* launcher, void* extra_info) {
1955  _sun_java_launcher = os::strdup_check_oom(launcher);
1956}
1957
1958bool Arguments::created_by_java_launcher() {
1959  assert(_sun_java_launcher != NULL, "property must have value");
1960  return strcmp(DEFAULT_JAVA_LAUNCHER, _sun_java_launcher) != 0;
1961}
1962
1963bool Arguments::sun_java_launcher_is_altjvm() {
1964  return _sun_java_launcher_is_altjvm;
1965}
1966
1967//===========================================================================================================
1968// Parsing of main arguments
1969
1970bool Arguments::verify_interval(uintx val, uintx min,
1971                                uintx max, const char* name) {
1972  // Returns true iff value is in the inclusive interval [min..max]
1973  // false, otherwise.
1974  if (val >= min && val <= max) {
1975    return true;
1976  }
1977  jio_fprintf(defaultStream::error_stream(),
1978              "%s of " UINTX_FORMAT " is invalid; must be between " UINTX_FORMAT
1979              " and " UINTX_FORMAT "\n",
1980              name, val, min, max);
1981  return false;
1982}
1983
1984bool Arguments::verify_min_value(intx val, intx min, const char* name) {
1985  // Returns true if given value is at least specified min threshold
1986  // false, otherwise.
1987  if (val >= min ) {
1988      return true;
1989  }
1990  jio_fprintf(defaultStream::error_stream(),
1991              "%s of " INTX_FORMAT " is invalid; must be at least " INTX_FORMAT "\n",
1992              name, val, min);
1993  return false;
1994}
1995
1996bool Arguments::verify_percentage(uintx value, const char* name) {
1997  if (is_percentage(value)) {
1998    return true;
1999  }
2000  jio_fprintf(defaultStream::error_stream(),
2001              "%s of " UINTX_FORMAT " is invalid; must be between 0 and 100\n",
2002              name, value);
2003  return false;
2004}
2005
2006// check if do gclog rotation
2007// +UseGCLogFileRotation is a must,
2008// no gc log rotation when log file not supplied or
2009// NumberOfGCLogFiles is 0
2010void check_gclog_consistency() {
2011  if (UseGCLogFileRotation) {
2012    if ((Arguments::gc_log_filename() == NULL) || (NumberOfGCLogFiles == 0)) {
2013      jio_fprintf(defaultStream::output_stream(),
2014                  "To enable GC log rotation, use -Xloggc:<filename> -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=<num_of_files>\n"
2015                  "where num_of_file > 0\n"
2016                  "GC log rotation is turned off\n");
2017      UseGCLogFileRotation = false;
2018    }
2019  }
2020
2021  if (UseGCLogFileRotation && (GCLogFileSize != 0) && (GCLogFileSize < 8*K)) {
2022    FLAG_SET_CMDLINE(uintx, GCLogFileSize, 8*K);
2023    jio_fprintf(defaultStream::output_stream(),
2024                "GCLogFileSize changed to minimum 8K\n");
2025  }
2026}
2027
2028// This function is called for -Xloggc:<filename>, it can be used
2029// to check if a given file name(or string) conforms to the following
2030// specification:
2031// A valid string only contains "[A-Z][a-z][0-9].-_%[p|t]"
2032// %p and %t only allowed once. We only limit usage of filename not path
2033bool is_filename_valid(const char *file_name) {
2034  const char* p = file_name;
2035  char file_sep = os::file_separator()[0];
2036  const char* cp;
2037  // skip prefix path
2038  for (cp = file_name; *cp != '\0'; cp++) {
2039    if (*cp == '/' || *cp == file_sep) {
2040      p = cp + 1;
2041    }
2042  }
2043
2044  int count_p = 0;
2045  int count_t = 0;
2046  while (*p != '\0') {
2047    if ((*p >= '0' && *p <= '9') ||
2048        (*p >= 'A' && *p <= 'Z') ||
2049        (*p >= 'a' && *p <= 'z') ||
2050         *p == '-'               ||
2051         *p == '_'               ||
2052         *p == '.') {
2053       p++;
2054       continue;
2055    }
2056    if (*p == '%') {
2057      if(*(p + 1) == 'p') {
2058        p += 2;
2059        count_p ++;
2060        continue;
2061      }
2062      if (*(p + 1) == 't') {
2063        p += 2;
2064        count_t ++;
2065        continue;
2066      }
2067    }
2068    return false;
2069  }
2070  return count_p < 2 && count_t < 2;
2071}
2072
2073bool Arguments::verify_MinHeapFreeRatio(FormatBuffer<80>& err_msg, uintx min_heap_free_ratio) {
2074  if (!is_percentage(min_heap_free_ratio)) {
2075    err_msg.print("MinHeapFreeRatio must have a value between 0 and 100");
2076    return false;
2077  }
2078  if (min_heap_free_ratio > MaxHeapFreeRatio) {
2079    err_msg.print("MinHeapFreeRatio (" UINTX_FORMAT ") must be less than or "
2080                  "equal to MaxHeapFreeRatio (" UINTX_FORMAT ")", min_heap_free_ratio,
2081                  MaxHeapFreeRatio);
2082    return false;
2083  }
2084  // This does not set the flag itself, but stores the value in a safe place for later usage.
2085  _min_heap_free_ratio = min_heap_free_ratio;
2086  return true;
2087}
2088
2089bool Arguments::verify_MaxHeapFreeRatio(FormatBuffer<80>& err_msg, uintx max_heap_free_ratio) {
2090  if (!is_percentage(max_heap_free_ratio)) {
2091    err_msg.print("MaxHeapFreeRatio must have a value between 0 and 100");
2092    return false;
2093  }
2094  if (max_heap_free_ratio < MinHeapFreeRatio) {
2095    err_msg.print("MaxHeapFreeRatio (" UINTX_FORMAT ") must be greater than or "
2096                  "equal to MinHeapFreeRatio (" UINTX_FORMAT ")", max_heap_free_ratio,
2097                  MinHeapFreeRatio);
2098    return false;
2099  }
2100  // This does not set the flag itself, but stores the value in a safe place for later usage.
2101  _max_heap_free_ratio = max_heap_free_ratio;
2102  return true;
2103}
2104
2105// Check consistency of GC selection
2106bool Arguments::check_gc_consistency_user() {
2107  check_gclog_consistency();
2108  // Ensure that the user has not selected conflicting sets
2109  // of collectors.
2110  uint i = 0;
2111  if (UseSerialGC)                       i++;
2112  if (UseConcMarkSweepGC)                i++;
2113  if (UseParallelGC || UseParallelOldGC) i++;
2114  if (UseG1GC)                           i++;
2115  if (i > 1) {
2116    jio_fprintf(defaultStream::error_stream(),
2117                "Conflicting collector combinations in option list; "
2118                "please refer to the release notes for the combinations "
2119                "allowed\n");
2120    return false;
2121  }
2122
2123  if (UseConcMarkSweepGC && !UseParNewGC) {
2124    jio_fprintf(defaultStream::error_stream(),
2125        "It is not possible to combine the DefNew young collector with the CMS collector.\n");
2126    return false;
2127  }
2128
2129  if (UseParNewGC && !UseConcMarkSweepGC) {
2130    // !UseConcMarkSweepGC means that we are using serial old gc. Unfortunately we don't
2131    // set up UseSerialGC properly, so that can't be used in the check here.
2132    jio_fprintf(defaultStream::error_stream(),
2133        "It is not possible to combine the ParNew young collector with the Serial old collector.\n");
2134    return false;
2135  }
2136
2137  return true;
2138}
2139
2140void Arguments::check_deprecated_gc_flags() {
2141  if (FLAG_IS_CMDLINE(UseParNewGC)) {
2142    warning("The UseParNewGC flag is deprecated and will likely be removed in a future release");
2143  }
2144  if (FLAG_IS_CMDLINE(MaxGCMinorPauseMillis)) {
2145    warning("Using MaxGCMinorPauseMillis as minor pause goal is deprecated"
2146            "and will likely be removed in future release");
2147  }
2148  if (FLAG_IS_CMDLINE(DefaultMaxRAMFraction)) {
2149    warning("DefaultMaxRAMFraction is deprecated and will likely be removed in a future release. "
2150        "Use MaxRAMFraction instead.");
2151  }
2152}
2153
2154// Check stack pages settings
2155bool Arguments::check_stack_pages()
2156{
2157  bool status = true;
2158  status = status && verify_min_value(StackYellowPages, 1, "StackYellowPages");
2159  status = status && verify_min_value(StackRedPages, 1, "StackRedPages");
2160  // greater stack shadow pages can't generate instruction to bang stack
2161  status = status && verify_interval(StackShadowPages, 1, 50, "StackShadowPages");
2162  return status;
2163}
2164
2165// Check the consistency of vm_init_args
2166bool Arguments::check_vm_args_consistency() {
2167  // Method for adding checks for flag consistency.
2168  // The intent is to warn the user of all possible conflicts,
2169  // before returning an error.
2170  // Note: Needs platform-dependent factoring.
2171  bool status = true;
2172
2173  if (TLABRefillWasteFraction == 0) {
2174    jio_fprintf(defaultStream::error_stream(),
2175                "TLABRefillWasteFraction should be a denominator, "
2176                "not " SIZE_FORMAT "\n",
2177                TLABRefillWasteFraction);
2178    status = false;
2179  }
2180
2181  status = status && verify_interval(AdaptiveSizePolicyWeight, 0, 100,
2182                              "AdaptiveSizePolicyWeight");
2183  status = status && verify_percentage(ThresholdTolerance, "ThresholdTolerance");
2184
2185  // Divide by bucket size to prevent a large size from causing rollover when
2186  // calculating amount of memory needed to be allocated for the String table.
2187  status = status && verify_interval(StringTableSize, minimumStringTableSize,
2188    (max_uintx / StringTable::bucket_size()), "StringTable size");
2189
2190  status = status && verify_interval(SymbolTableSize, minimumSymbolTableSize,
2191    (max_uintx / SymbolTable::bucket_size()), "SymbolTable size");
2192
2193  {
2194    // Using "else if" below to avoid printing two error messages if min > max.
2195    // This will also prevent us from reporting both min>100 and max>100 at the
2196    // same time, but that is less annoying than printing two identical errors IMHO.
2197    FormatBuffer<80> err_msg("%s","");
2198    if (!verify_MinHeapFreeRatio(err_msg, MinHeapFreeRatio)) {
2199      jio_fprintf(defaultStream::error_stream(), "%s\n", err_msg.buffer());
2200      status = false;
2201    } else if (!verify_MaxHeapFreeRatio(err_msg, MaxHeapFreeRatio)) {
2202      jio_fprintf(defaultStream::error_stream(), "%s\n", err_msg.buffer());
2203      status = false;
2204    }
2205  }
2206
2207  // Min/MaxMetaspaceFreeRatio
2208  status = status && verify_percentage(MinMetaspaceFreeRatio, "MinMetaspaceFreeRatio");
2209  status = status && verify_percentage(MaxMetaspaceFreeRatio, "MaxMetaspaceFreeRatio");
2210
2211  if (MinMetaspaceFreeRatio > MaxMetaspaceFreeRatio) {
2212    jio_fprintf(defaultStream::error_stream(),
2213                "MinMetaspaceFreeRatio (%s" UINTX_FORMAT ") must be less than or "
2214                "equal to MaxMetaspaceFreeRatio (%s" UINTX_FORMAT ")\n",
2215                FLAG_IS_DEFAULT(MinMetaspaceFreeRatio) ? "Default: " : "",
2216                MinMetaspaceFreeRatio,
2217                FLAG_IS_DEFAULT(MaxMetaspaceFreeRatio) ? "Default: " : "",
2218                MaxMetaspaceFreeRatio);
2219    status = false;
2220  }
2221
2222  // Trying to keep 100% free is not practical
2223  MinMetaspaceFreeRatio = MIN2(MinMetaspaceFreeRatio, (uintx) 99);
2224
2225  if (FullGCALot && FLAG_IS_DEFAULT(MarkSweepAlwaysCompactCount)) {
2226    MarkSweepAlwaysCompactCount = 1;  // Move objects every gc.
2227  }
2228
2229  if (UseParallelOldGC && ParallelOldGCSplitALot) {
2230    // Settings to encourage splitting.
2231    if (!FLAG_IS_CMDLINE(NewRatio)) {
2232      FLAG_SET_CMDLINE(uintx, NewRatio, 2);
2233    }
2234    if (!FLAG_IS_CMDLINE(ScavengeBeforeFullGC)) {
2235      FLAG_SET_CMDLINE(bool, ScavengeBeforeFullGC, false);
2236    }
2237  }
2238
2239  if (!(UseParallelGC || UseParallelOldGC) && FLAG_IS_DEFAULT(ScavengeBeforeFullGC)) {
2240    FLAG_SET_DEFAULT(ScavengeBeforeFullGC, false);
2241  }
2242
2243  status = status && verify_percentage(GCHeapFreeLimit, "GCHeapFreeLimit");
2244  status = status && verify_percentage(GCTimeLimit, "GCTimeLimit");
2245  if (GCTimeLimit == 100) {
2246    // Turn off gc-overhead-limit-exceeded checks
2247    FLAG_SET_DEFAULT(UseGCOverheadLimit, false);
2248  }
2249
2250  status = status && check_gc_consistency_user();
2251  status = status && check_stack_pages();
2252
2253  status = status && verify_percentage(CMSIncrementalSafetyFactor,
2254                                    "CMSIncrementalSafetyFactor");
2255
2256  // CMS space iteration, which FLSVerifyAllHeapreferences entails,
2257  // insists that we hold the requisite locks so that the iteration is
2258  // MT-safe. For the verification at start-up and shut-down, we don't
2259  // yet have a good way of acquiring and releasing these locks,
2260  // which are not visible at the CollectedHeap level. We want to
2261  // be able to acquire these locks and then do the iteration rather
2262  // than just disable the lock verification. This will be fixed under
2263  // bug 4788986.
2264  if (UseConcMarkSweepGC && FLSVerifyAllHeapReferences) {
2265    if (VerifyDuringStartup) {
2266      warning("Heap verification at start-up disabled "
2267              "(due to current incompatibility with FLSVerifyAllHeapReferences)");
2268      VerifyDuringStartup = false; // Disable verification at start-up
2269    }
2270
2271    if (VerifyBeforeExit) {
2272      warning("Heap verification at shutdown disabled "
2273              "(due to current incompatibility with FLSVerifyAllHeapReferences)");
2274      VerifyBeforeExit = false; // Disable verification at shutdown
2275    }
2276  }
2277
2278  // Note: only executed in non-PRODUCT mode
2279  if (!UseAsyncConcMarkSweepGC &&
2280      (ExplicitGCInvokesConcurrent ||
2281       ExplicitGCInvokesConcurrentAndUnloadsClasses)) {
2282    jio_fprintf(defaultStream::error_stream(),
2283                "error: +ExplicitGCInvokesConcurrent[AndUnloadsClasses] conflicts"
2284                " with -UseAsyncConcMarkSweepGC");
2285    status = false;
2286  }
2287
2288  status = status && verify_min_value(ParGCArrayScanChunk, 1, "ParGCArrayScanChunk");
2289
2290#if INCLUDE_ALL_GCS
2291  if (UseG1GC) {
2292    status = status && verify_percentage(G1NewSizePercent, "G1NewSizePercent");
2293    status = status && verify_percentage(G1MaxNewSizePercent, "G1MaxNewSizePercent");
2294    status = status && verify_interval(G1NewSizePercent, 0, G1MaxNewSizePercent, "G1NewSizePercent");
2295
2296    status = status && verify_percentage(InitiatingHeapOccupancyPercent,
2297                                         "InitiatingHeapOccupancyPercent");
2298    status = status && verify_min_value(G1RefProcDrainInterval, 1,
2299                                        "G1RefProcDrainInterval");
2300    status = status && verify_min_value((intx)G1ConcMarkStepDurationMillis, 1,
2301                                        "G1ConcMarkStepDurationMillis");
2302    status = status && verify_interval(G1ConcRSHotCardLimit, 0, max_jubyte,
2303                                       "G1ConcRSHotCardLimit");
2304    status = status && verify_interval(G1ConcRSLogCacheSize, 0, 31,
2305                                       "G1ConcRSLogCacheSize");
2306    status = status && verify_interval(StringDeduplicationAgeThreshold, 1, markOopDesc::max_age,
2307                                       "StringDeduplicationAgeThreshold");
2308  }
2309  if (UseConcMarkSweepGC) {
2310    status = status && verify_min_value(CMSOldPLABNumRefills, 1, "CMSOldPLABNumRefills");
2311    status = status && verify_min_value(CMSOldPLABToleranceFactor, 1, "CMSOldPLABToleranceFactor");
2312    status = status && verify_min_value(CMSOldPLABMax, 1, "CMSOldPLABMax");
2313    status = status && verify_interval(CMSOldPLABMin, 1, CMSOldPLABMax, "CMSOldPLABMin");
2314
2315    status = status && verify_min_value(CMSYoungGenPerWorker, 1, "CMSYoungGenPerWorker");
2316
2317    status = status && verify_min_value(CMSSamplingGrain, 1, "CMSSamplingGrain");
2318    status = status && verify_interval(CMS_SweepWeight, 0, 100, "CMS_SweepWeight");
2319    status = status && verify_interval(CMS_FLSWeight, 0, 100, "CMS_FLSWeight");
2320
2321    status = status && verify_interval(FLSCoalescePolicy, 0, 4, "FLSCoalescePolicy");
2322
2323    status = status && verify_min_value(CMSRescanMultiple, 1, "CMSRescanMultiple");
2324    status = status && verify_min_value(CMSConcMarkMultiple, 1, "CMSConcMarkMultiple");
2325
2326    status = status && verify_interval(CMSPrecleanIter, 0, 9, "CMSPrecleanIter");
2327    status = status && verify_min_value(CMSPrecleanDenominator, 1, "CMSPrecleanDenominator");
2328    status = status && verify_interval(CMSPrecleanNumerator, 0, CMSPrecleanDenominator - 1, "CMSPrecleanNumerator");
2329
2330    status = status && verify_percentage(CMSBootstrapOccupancy, "CMSBootstrapOccupancy");
2331
2332    status = status && verify_min_value(CMSPrecleanThreshold, 100, "CMSPrecleanThreshold");
2333
2334    status = status && verify_percentage(CMSScheduleRemarkEdenPenetration, "CMSScheduleRemarkEdenPenetration");
2335    status = status && verify_min_value(CMSScheduleRemarkSamplingRatio, 1, "CMSScheduleRemarkSamplingRatio");
2336    status = status && verify_min_value(CMSBitMapYieldQuantum, 1, "CMSBitMapYieldQuantum");
2337    status = status && verify_percentage(CMSTriggerRatio, "CMSTriggerRatio");
2338    status = status && verify_percentage(CMSIsTooFullPercentage, "CMSIsTooFullPercentage");
2339  }
2340
2341  if (UseParallelGC || UseParallelOldGC) {
2342    status = status && verify_interval(ParallelOldDeadWoodLimiterMean, 0, 100, "ParallelOldDeadWoodLimiterMean");
2343    status = status && verify_interval(ParallelOldDeadWoodLimiterStdDev, 0, 100, "ParallelOldDeadWoodLimiterStdDev");
2344
2345    status = status && verify_percentage(YoungGenerationSizeIncrement, "YoungGenerationSizeIncrement");
2346    status = status && verify_percentage(TenuredGenerationSizeIncrement, "TenuredGenerationSizeIncrement");
2347
2348    status = status && verify_min_value(YoungGenerationSizeSupplementDecay, 1, "YoungGenerationSizeSupplementDecay");
2349    status = status && verify_min_value(TenuredGenerationSizeSupplementDecay, 1, "TenuredGenerationSizeSupplementDecay");
2350
2351    status = status && verify_min_value(ParGCCardsPerStrideChunk, 1, "ParGCCardsPerStrideChunk");
2352
2353    status = status && verify_min_value(ParallelOldGCSplitInterval, 0, "ParallelOldGCSplitInterval");
2354  }
2355#endif // INCLUDE_ALL_GCS
2356
2357  status = status && verify_interval(RefDiscoveryPolicy,
2358                                     ReferenceProcessor::DiscoveryPolicyMin,
2359                                     ReferenceProcessor::DiscoveryPolicyMax,
2360                                     "RefDiscoveryPolicy");
2361
2362  // Limit the lower bound of this flag to 1 as it is used in a division
2363  // expression.
2364  status = status && verify_interval(TLABWasteTargetPercent,
2365                                     1, 100, "TLABWasteTargetPercent");
2366
2367  status = status && verify_object_alignment();
2368
2369  status = status && verify_interval(CompressedClassSpaceSize, 1*M, 3*G,
2370                                      "CompressedClassSpaceSize");
2371
2372  status = status && verify_interval(MarkStackSizeMax,
2373                                  1, (max_jint - 1), "MarkStackSizeMax");
2374  status = status && verify_interval(NUMAChunkResizeWeight, 0, 100, "NUMAChunkResizeWeight");
2375
2376  status = status && verify_min_value(LogEventsBufferEntries, 1, "LogEventsBufferEntries");
2377
2378  status = status && verify_min_value(HeapSizePerGCThread, (uintx) os::vm_page_size(), "HeapSizePerGCThread");
2379
2380  status = status && verify_min_value(GCTaskTimeStampEntries, 1, "GCTaskTimeStampEntries");
2381
2382  status = status && verify_percentage(ParallelGCBufferWastePct, "ParallelGCBufferWastePct");
2383  status = status && verify_interval(TargetPLABWastePct, 1, 100, "TargetPLABWastePct");
2384
2385  status = status && verify_min_value(ParGCStridesPerThread, 1, "ParGCStridesPerThread");
2386
2387  status = status && verify_min_value(MinRAMFraction, 1, "MinRAMFraction");
2388  status = status && verify_min_value(InitialRAMFraction, 1, "InitialRAMFraction");
2389  status = status && verify_min_value(MaxRAMFraction, 1, "MaxRAMFraction");
2390  status = status && verify_min_value(DefaultMaxRAMFraction, 1, "DefaultMaxRAMFraction");
2391
2392  status = status && verify_interval(AdaptiveTimeWeight, 0, 100, "AdaptiveTimeWeight");
2393  status = status && verify_min_value(AdaptiveSizeDecrementScaleFactor, 1, "AdaptiveSizeDecrementScaleFactor");
2394
2395  status = status && verify_interval(TLABAllocationWeight, 0, 100, "TLABAllocationWeight");
2396  status = status && verify_min_value(MinTLABSize, 1, "MinTLABSize");
2397  status = status && verify_min_value(TLABRefillWasteFraction, 1, "TLABRefillWasteFraction");
2398
2399  status = status && verify_percentage(YoungGenerationSizeSupplement, "YoungGenerationSizeSupplement");
2400  status = status && verify_percentage(TenuredGenerationSizeSupplement, "TenuredGenerationSizeSupplement");
2401
2402  status = status && verify_interval(MaxTenuringThreshold, 0, markOopDesc::max_age + 1, "MaxTenuringThreshold");
2403  status = status && verify_interval(InitialTenuringThreshold, 0, MaxTenuringThreshold, "InitialTenuringThreshold");
2404  status = status && verify_percentage(TargetSurvivorRatio, "TargetSurvivorRatio");
2405  status = status && verify_percentage(MarkSweepDeadRatio, "MarkSweepDeadRatio");
2406
2407  status = status && verify_min_value(MarkSweepAlwaysCompactCount, 1, "MarkSweepAlwaysCompactCount");
2408#ifdef COMPILER1
2409  status = status && verify_min_value(ValueMapInitialSize, 1, "ValueMapInitialSize");
2410#endif
2411  status = status && verify_min_value(HeapSearchSteps, 1, "HeapSearchSteps");
2412
2413  if (PrintNMTStatistics) {
2414#if INCLUDE_NMT
2415    if (MemTracker::tracking_level() == NMT_off) {
2416#endif // INCLUDE_NMT
2417      warning("PrintNMTStatistics is disabled, because native memory tracking is not enabled");
2418      PrintNMTStatistics = false;
2419#if INCLUDE_NMT
2420    }
2421#endif
2422  }
2423
2424  // Need to limit the extent of the padding to reasonable size.
2425  // 8K is well beyond the reasonable HW cache line size, even with the
2426  // aggressive prefetching, while still leaving the room for segregating
2427  // among the distinct pages.
2428  if (ContendedPaddingWidth < 0 || ContendedPaddingWidth > 8192) {
2429    jio_fprintf(defaultStream::error_stream(),
2430                "ContendedPaddingWidth=" INTX_FORMAT " must be in between %d and %d\n",
2431                ContendedPaddingWidth, 0, 8192);
2432    status = false;
2433  }
2434
2435  // Need to enforce the padding not to break the existing field alignments.
2436  // It is sufficient to check against the largest type size.
2437  if ((ContendedPaddingWidth % BytesPerLong) != 0) {
2438    jio_fprintf(defaultStream::error_stream(),
2439                "ContendedPaddingWidth=" INTX_FORMAT " must be a multiple of %d\n",
2440                ContendedPaddingWidth, BytesPerLong);
2441    status = false;
2442  }
2443
2444  // Check lower bounds of the code cache
2445  // Template Interpreter code is approximately 3X larger in debug builds.
2446  uint min_code_cache_size = CodeCacheMinimumUseSpace DEBUG_ONLY(* 3);
2447  if (InitialCodeCacheSize < (uintx)os::vm_page_size()) {
2448    jio_fprintf(defaultStream::error_stream(),
2449                "Invalid InitialCodeCacheSize=%dK. Must be at least %dK.\n", InitialCodeCacheSize/K,
2450                os::vm_page_size()/K);
2451    status = false;
2452  } else if (ReservedCodeCacheSize < InitialCodeCacheSize) {
2453    jio_fprintf(defaultStream::error_stream(),
2454                "Invalid ReservedCodeCacheSize: %dK. Must be at least InitialCodeCacheSize=%dK.\n",
2455                ReservedCodeCacheSize/K, InitialCodeCacheSize/K);
2456    status = false;
2457  } else if (ReservedCodeCacheSize < min_code_cache_size) {
2458    jio_fprintf(defaultStream::error_stream(),
2459                "Invalid ReservedCodeCacheSize=%dK. Must be at least %uK.\n", ReservedCodeCacheSize/K,
2460                min_code_cache_size/K);
2461    status = false;
2462  } else if (ReservedCodeCacheSize > CODE_CACHE_SIZE_LIMIT) {
2463    // Code cache size larger than CODE_CACHE_SIZE_LIMIT is not supported.
2464    jio_fprintf(defaultStream::error_stream(),
2465                "Invalid ReservedCodeCacheSize=%dM. Must be at most %uM.\n", ReservedCodeCacheSize/M,
2466                CODE_CACHE_SIZE_LIMIT/M);
2467    status = false;
2468  } else if (NonNMethodCodeHeapSize < min_code_cache_size){
2469    jio_fprintf(defaultStream::error_stream(),
2470                "Invalid NonNMethodCodeHeapSize=%dK. Must be at least %uK.\n", NonNMethodCodeHeapSize/K,
2471                min_code_cache_size/K);
2472    status = false;
2473  } else if ((!FLAG_IS_DEFAULT(NonNMethodCodeHeapSize) || !FLAG_IS_DEFAULT(ProfiledCodeHeapSize) || !FLAG_IS_DEFAULT(NonProfiledCodeHeapSize))
2474             && (NonNMethodCodeHeapSize + NonProfiledCodeHeapSize + ProfiledCodeHeapSize) != ReservedCodeCacheSize) {
2475    jio_fprintf(defaultStream::error_stream(),
2476                "Invalid code heap sizes: NonNMethodCodeHeapSize(%dK) + ProfiledCodeHeapSize(%dK) + NonProfiledCodeHeapSize(%dK) = %dK. Must be equal to ReservedCodeCacheSize = %uK.\n",
2477                NonNMethodCodeHeapSize/K, ProfiledCodeHeapSize/K, NonProfiledCodeHeapSize/K,
2478                (NonNMethodCodeHeapSize + ProfiledCodeHeapSize + NonProfiledCodeHeapSize)/K, ReservedCodeCacheSize/K);
2479    status = false;
2480  }
2481
2482  status &= verify_interval(NmethodSweepActivity, 0, 2000, "NmethodSweepActivity");
2483  status &= verify_interval(CodeCacheMinBlockLength, 1, 100, "CodeCacheMinBlockLength");
2484  status &= verify_interval(CodeCacheSegmentSize, 1, 1024, "CodeCacheSegmentSize");
2485  status &= verify_interval(StartAggressiveSweepingAt, 0, 100, "StartAggressiveSweepingAt");
2486
2487
2488  int min_number_of_compiler_threads = get_min_number_of_compiler_threads();
2489  // The default CICompilerCount's value is CI_COMPILER_COUNT.
2490  assert(min_number_of_compiler_threads <= CI_COMPILER_COUNT, "minimum should be less or equal default number");
2491  // Check the minimum number of compiler threads
2492  status &=verify_min_value(CICompilerCount, min_number_of_compiler_threads, "CICompilerCount");
2493
2494  if (!FLAG_IS_DEFAULT(CICompilerCount) && !FLAG_IS_DEFAULT(CICompilerCountPerCPU) && CICompilerCountPerCPU) {
2495    warning("The VM option CICompilerCountPerCPU overrides CICompilerCount.");
2496  }
2497
2498  return status;
2499}
2500
2501bool Arguments::is_bad_option(const JavaVMOption* option, jboolean ignore,
2502  const char* option_type) {
2503  if (ignore) return false;
2504
2505  const char* spacer = " ";
2506  if (option_type == NULL) {
2507    option_type = ++spacer; // Set both to the empty string.
2508  }
2509
2510  if (os::obsolete_option(option)) {
2511    jio_fprintf(defaultStream::error_stream(),
2512                "Obsolete %s%soption: %s\n", option_type, spacer,
2513      option->optionString);
2514    return false;
2515  } else {
2516    jio_fprintf(defaultStream::error_stream(),
2517                "Unrecognized %s%soption: %s\n", option_type, spacer,
2518      option->optionString);
2519    return true;
2520  }
2521}
2522
2523static const char* user_assertion_options[] = {
2524  "-da", "-ea", "-disableassertions", "-enableassertions", 0
2525};
2526
2527static const char* system_assertion_options[] = {
2528  "-dsa", "-esa", "-disablesystemassertions", "-enablesystemassertions", 0
2529};
2530
2531bool Arguments::parse_uintx(const char* value,
2532                            uintx* uintx_arg,
2533                            uintx min_size) {
2534
2535  // Check the sign first since atomull() parses only unsigned values.
2536  bool value_is_positive = !(*value == '-');
2537
2538  if (value_is_positive) {
2539    julong n;
2540    bool good_return = atomull(value, &n);
2541    if (good_return) {
2542      bool above_minimum = n >= min_size;
2543      bool value_is_too_large = n > max_uintx;
2544
2545      if (above_minimum && !value_is_too_large) {
2546        *uintx_arg = n;
2547        return true;
2548      }
2549    }
2550  }
2551  return false;
2552}
2553
2554Arguments::ArgsRange Arguments::parse_memory_size(const char* s,
2555                                                  julong* long_arg,
2556                                                  julong min_size) {
2557  if (!atomull(s, long_arg)) return arg_unreadable;
2558  return check_memory_size(*long_arg, min_size);
2559}
2560
2561// Parse JavaVMInitArgs structure
2562
2563jint Arguments::parse_vm_init_args(const JavaVMInitArgs* args) {
2564  // For components of the system classpath.
2565  SysClassPath scp(Arguments::get_sysclasspath());
2566  bool scp_assembly_required = false;
2567
2568  // Save default settings for some mode flags
2569  Arguments::_AlwaysCompileLoopMethods = AlwaysCompileLoopMethods;
2570  Arguments::_UseOnStackReplacement    = UseOnStackReplacement;
2571  Arguments::_ClipInlining             = ClipInlining;
2572  Arguments::_BackgroundCompilation    = BackgroundCompilation;
2573
2574  // Setup flags for mixed which is the default
2575  set_mode_flags(_mixed);
2576
2577  // Parse JAVA_TOOL_OPTIONS environment variable (if present)
2578  jint result = parse_java_tool_options_environment_variable(&scp, &scp_assembly_required);
2579  if (result != JNI_OK) {
2580    return result;
2581  }
2582
2583  // Parse JavaVMInitArgs structure passed in
2584  result = parse_each_vm_init_arg(args, &scp, &scp_assembly_required, Flag::COMMAND_LINE);
2585  if (result != JNI_OK) {
2586    return result;
2587  }
2588
2589  // Parse _JAVA_OPTIONS environment variable (if present) (mimics classic VM)
2590  result = parse_java_options_environment_variable(&scp, &scp_assembly_required);
2591  if (result != JNI_OK) {
2592    return result;
2593  }
2594
2595  // Do final processing now that all arguments have been parsed
2596  result = finalize_vm_init_args(&scp, scp_assembly_required);
2597  if (result != JNI_OK) {
2598    return result;
2599  }
2600
2601  return JNI_OK;
2602}
2603
2604// Checks if name in command-line argument -agent{lib,path}:name[=options]
2605// represents a valid HPROF of JDWP agent.  is_path==true denotes that we
2606// are dealing with -agentpath (case where name is a path), otherwise with
2607// -agentlib
2608bool valid_hprof_or_jdwp_agent(char *name, bool is_path) {
2609  char *_name;
2610  const char *_hprof = "hprof", *_jdwp = "jdwp";
2611  size_t _len_hprof, _len_jdwp, _len_prefix;
2612
2613  if (is_path) {
2614    if ((_name = strrchr(name, (int) *os::file_separator())) == NULL) {
2615      return false;
2616    }
2617
2618    _name++;  // skip past last path separator
2619    _len_prefix = strlen(JNI_LIB_PREFIX);
2620
2621    if (strncmp(_name, JNI_LIB_PREFIX, _len_prefix) != 0) {
2622      return false;
2623    }
2624
2625    _name += _len_prefix;
2626    _len_hprof = strlen(_hprof);
2627    _len_jdwp = strlen(_jdwp);
2628
2629    if (strncmp(_name, _hprof, _len_hprof) == 0) {
2630      _name += _len_hprof;
2631    }
2632    else if (strncmp(_name, _jdwp, _len_jdwp) == 0) {
2633      _name += _len_jdwp;
2634    }
2635    else {
2636      return false;
2637    }
2638
2639    if (strcmp(_name, JNI_LIB_SUFFIX) != 0) {
2640      return false;
2641    }
2642
2643    return true;
2644  }
2645
2646  if (strcmp(name, _hprof) == 0 || strcmp(name, _jdwp) == 0) {
2647    return true;
2648  }
2649
2650  return false;
2651}
2652
2653jint Arguments::parse_each_vm_init_arg(const JavaVMInitArgs* args,
2654                                       SysClassPath* scp_p,
2655                                       bool* scp_assembly_required_p,
2656                                       Flag::Flags origin) {
2657  // Remaining part of option string
2658  const char* tail;
2659
2660  // iterate over arguments
2661  for (int index = 0; index < args->nOptions; index++) {
2662    bool is_absolute_path = false;  // for -agentpath vs -agentlib
2663
2664    const JavaVMOption* option = args->options + index;
2665
2666    if (!match_option(option, "-Djava.class.path", &tail) &&
2667        !match_option(option, "-Dsun.java.command", &tail) &&
2668        !match_option(option, "-Dsun.java.launcher", &tail)) {
2669
2670        // add all jvm options to the jvm_args string. This string
2671        // is used later to set the java.vm.args PerfData string constant.
2672        // the -Djava.class.path and the -Dsun.java.command options are
2673        // omitted from jvm_args string as each have their own PerfData
2674        // string constant object.
2675        build_jvm_args(option->optionString);
2676    }
2677
2678    // -verbose:[class/gc/jni]
2679    if (match_option(option, "-verbose", &tail)) {
2680      if (!strcmp(tail, ":class") || !strcmp(tail, "")) {
2681        FLAG_SET_CMDLINE(bool, TraceClassLoading, true);
2682        FLAG_SET_CMDLINE(bool, TraceClassUnloading, true);
2683      } else if (!strcmp(tail, ":gc")) {
2684        FLAG_SET_CMDLINE(bool, PrintGC, true);
2685      } else if (!strcmp(tail, ":jni")) {
2686        FLAG_SET_CMDLINE(bool, PrintJNIResolving, true);
2687      }
2688    // -da / -ea / -disableassertions / -enableassertions
2689    // These accept an optional class/package name separated by a colon, e.g.,
2690    // -da:java.lang.Thread.
2691    } else if (match_option(option, user_assertion_options, &tail, true)) {
2692      bool enable = option->optionString[1] == 'e';     // char after '-' is 'e'
2693      if (*tail == '\0') {
2694        JavaAssertions::setUserClassDefault(enable);
2695      } else {
2696        assert(*tail == ':', "bogus match by match_option()");
2697        JavaAssertions::addOption(tail + 1, enable);
2698      }
2699    // -dsa / -esa / -disablesystemassertions / -enablesystemassertions
2700    } else if (match_option(option, system_assertion_options, &tail, false)) {
2701      bool enable = option->optionString[1] == 'e';     // char after '-' is 'e'
2702      JavaAssertions::setSystemClassDefault(enable);
2703    // -bootclasspath:
2704    } else if (match_option(option, "-Xbootclasspath:", &tail)) {
2705      scp_p->reset_path(tail);
2706      *scp_assembly_required_p = true;
2707    // -bootclasspath/a:
2708    } else if (match_option(option, "-Xbootclasspath/a:", &tail)) {
2709      scp_p->add_suffix(tail);
2710      *scp_assembly_required_p = true;
2711    // -bootclasspath/p:
2712    } else if (match_option(option, "-Xbootclasspath/p:", &tail)) {
2713      scp_p->add_prefix(tail);
2714      *scp_assembly_required_p = true;
2715    // -Xrun
2716    } else if (match_option(option, "-Xrun", &tail)) {
2717      if (tail != NULL) {
2718        const char* pos = strchr(tail, ':');
2719        size_t len = (pos == NULL) ? strlen(tail) : pos - tail;
2720        char* name = (char*)memcpy(NEW_C_HEAP_ARRAY(char, len + 1, mtInternal), tail, len);
2721        name[len] = '\0';
2722
2723        char *options = NULL;
2724        if(pos != NULL) {
2725          size_t len2 = strlen(pos+1) + 1; // options start after ':'.  Final zero must be copied.
2726          options = (char*)memcpy(NEW_C_HEAP_ARRAY(char, len2, mtInternal), pos+1, len2);
2727        }
2728#if !INCLUDE_JVMTI
2729        if ((strcmp(name, "hprof") == 0) || (strcmp(name, "jdwp") == 0)) {
2730          jio_fprintf(defaultStream::error_stream(),
2731            "Profiling and debugging agents are not supported in this VM\n");
2732          return JNI_ERR;
2733        }
2734#endif // !INCLUDE_JVMTI
2735        add_init_library(name, options);
2736      }
2737    // -agentlib and -agentpath
2738    } else if (match_option(option, "-agentlib:", &tail) ||
2739          (is_absolute_path = match_option(option, "-agentpath:", &tail))) {
2740      if(tail != NULL) {
2741        const char* pos = strchr(tail, '=');
2742        size_t len = (pos == NULL) ? strlen(tail) : pos - tail;
2743        char* name = strncpy(NEW_C_HEAP_ARRAY(char, len + 1, mtInternal), tail, len);
2744        name[len] = '\0';
2745
2746        char *options = NULL;
2747        if(pos != NULL) {
2748          options = strcpy(NEW_C_HEAP_ARRAY(char, strlen(pos + 1) + 1, mtInternal), pos + 1);
2749        }
2750#if !INCLUDE_JVMTI
2751        if (valid_hprof_or_jdwp_agent(name, is_absolute_path)) {
2752          jio_fprintf(defaultStream::error_stream(),
2753            "Profiling and debugging agents are not supported in this VM\n");
2754          return JNI_ERR;
2755        }
2756#endif // !INCLUDE_JVMTI
2757        add_init_agent(name, options, is_absolute_path);
2758      }
2759    // -javaagent
2760    } else if (match_option(option, "-javaagent:", &tail)) {
2761#if !INCLUDE_JVMTI
2762      jio_fprintf(defaultStream::error_stream(),
2763        "Instrumentation agents are not supported in this VM\n");
2764      return JNI_ERR;
2765#else
2766      if(tail != NULL) {
2767        char *options = strcpy(NEW_C_HEAP_ARRAY(char, strlen(tail) + 1, mtInternal), tail);
2768        add_init_agent("instrument", options, false);
2769      }
2770#endif // !INCLUDE_JVMTI
2771    // -Xnoclassgc
2772    } else if (match_option(option, "-Xnoclassgc")) {
2773      FLAG_SET_CMDLINE(bool, ClassUnloading, false);
2774    // -Xconcgc
2775    } else if (match_option(option, "-Xconcgc")) {
2776      FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, true);
2777    // -Xnoconcgc
2778    } else if (match_option(option, "-Xnoconcgc")) {
2779      FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, false);
2780    // -Xbatch
2781    } else if (match_option(option, "-Xbatch")) {
2782      FLAG_SET_CMDLINE(bool, BackgroundCompilation, false);
2783    // -Xmn for compatibility with other JVM vendors
2784    } else if (match_option(option, "-Xmn", &tail)) {
2785      julong long_initial_young_size = 0;
2786      ArgsRange errcode = parse_memory_size(tail, &long_initial_young_size, 1);
2787      if (errcode != arg_in_range) {
2788        jio_fprintf(defaultStream::error_stream(),
2789                    "Invalid initial young generation size: %s\n", option->optionString);
2790        describe_range_error(errcode);
2791        return JNI_EINVAL;
2792      }
2793      FLAG_SET_CMDLINE(uintx, MaxNewSize, (uintx)long_initial_young_size);
2794      FLAG_SET_CMDLINE(uintx, NewSize, (uintx)long_initial_young_size);
2795    // -Xms
2796    } else if (match_option(option, "-Xms", &tail)) {
2797      julong long_initial_heap_size = 0;
2798      // an initial heap size of 0 means automatically determine
2799      ArgsRange errcode = parse_memory_size(tail, &long_initial_heap_size, 0);
2800      if (errcode != arg_in_range) {
2801        jio_fprintf(defaultStream::error_stream(),
2802                    "Invalid initial heap size: %s\n", option->optionString);
2803        describe_range_error(errcode);
2804        return JNI_EINVAL;
2805      }
2806      set_min_heap_size((uintx)long_initial_heap_size);
2807      // Currently the minimum size and the initial heap sizes are the same.
2808      // Can be overridden with -XX:InitialHeapSize.
2809      FLAG_SET_CMDLINE(uintx, InitialHeapSize, (uintx)long_initial_heap_size);
2810    // -Xmx
2811    } else if (match_option(option, "-Xmx", &tail) || match_option(option, "-XX:MaxHeapSize=", &tail)) {
2812      julong long_max_heap_size = 0;
2813      ArgsRange errcode = parse_memory_size(tail, &long_max_heap_size, 1);
2814      if (errcode != arg_in_range) {
2815        jio_fprintf(defaultStream::error_stream(),
2816                    "Invalid maximum heap size: %s\n", option->optionString);
2817        describe_range_error(errcode);
2818        return JNI_EINVAL;
2819      }
2820      FLAG_SET_CMDLINE(uintx, MaxHeapSize, (uintx)long_max_heap_size);
2821    // Xmaxf
2822    } else if (match_option(option, "-Xmaxf", &tail)) {
2823      char* err;
2824      int maxf = (int)(strtod(tail, &err) * 100);
2825      if (*err != '\0' || *tail == '\0' || maxf < 0 || maxf > 100) {
2826        jio_fprintf(defaultStream::error_stream(),
2827                    "Bad max heap free percentage size: %s\n",
2828                    option->optionString);
2829        return JNI_EINVAL;
2830      } else {
2831        FLAG_SET_CMDLINE(uintx, MaxHeapFreeRatio, maxf);
2832      }
2833    // Xminf
2834    } else if (match_option(option, "-Xminf", &tail)) {
2835      char* err;
2836      int minf = (int)(strtod(tail, &err) * 100);
2837      if (*err != '\0' || *tail == '\0' || minf < 0 || minf > 100) {
2838        jio_fprintf(defaultStream::error_stream(),
2839                    "Bad min heap free percentage size: %s\n",
2840                    option->optionString);
2841        return JNI_EINVAL;
2842      } else {
2843        FLAG_SET_CMDLINE(uintx, MinHeapFreeRatio, minf);
2844      }
2845    // -Xss
2846    } else if (match_option(option, "-Xss", &tail)) {
2847      julong long_ThreadStackSize = 0;
2848      ArgsRange errcode = parse_memory_size(tail, &long_ThreadStackSize, 1000);
2849      if (errcode != arg_in_range) {
2850        jio_fprintf(defaultStream::error_stream(),
2851                    "Invalid thread stack size: %s\n", option->optionString);
2852        describe_range_error(errcode);
2853        return JNI_EINVAL;
2854      }
2855      // Internally track ThreadStackSize in units of 1024 bytes.
2856      FLAG_SET_CMDLINE(intx, ThreadStackSize,
2857                              round_to((int)long_ThreadStackSize, K) / K);
2858    // -Xoss
2859    } else if (match_option(option, "-Xoss", &tail)) {
2860          // HotSpot does not have separate native and Java stacks, ignore silently for compatibility
2861    } else if (match_option(option, "-XX:CodeCacheExpansionSize=", &tail)) {
2862      julong long_CodeCacheExpansionSize = 0;
2863      ArgsRange errcode = parse_memory_size(tail, &long_CodeCacheExpansionSize, os::vm_page_size());
2864      if (errcode != arg_in_range) {
2865        jio_fprintf(defaultStream::error_stream(),
2866                   "Invalid argument: %s. Must be at least %luK.\n", option->optionString,
2867                   os::vm_page_size()/K);
2868        return JNI_EINVAL;
2869      }
2870      FLAG_SET_CMDLINE(uintx, CodeCacheExpansionSize, (uintx)long_CodeCacheExpansionSize);
2871    } else if (match_option(option, "-Xmaxjitcodesize", &tail) ||
2872               match_option(option, "-XX:ReservedCodeCacheSize=", &tail)) {
2873      julong long_ReservedCodeCacheSize = 0;
2874
2875      ArgsRange errcode = parse_memory_size(tail, &long_ReservedCodeCacheSize, 1);
2876      if (errcode != arg_in_range) {
2877        jio_fprintf(defaultStream::error_stream(),
2878                    "Invalid maximum code cache size: %s.\n", option->optionString);
2879        return JNI_EINVAL;
2880      }
2881      FLAG_SET_CMDLINE(uintx, ReservedCodeCacheSize, (uintx)long_ReservedCodeCacheSize);
2882      // -XX:NonNMethodCodeHeapSize=
2883    } else if (match_option(option, "-XX:NonNMethodCodeHeapSize=", &tail)) {
2884      julong long_NonNMethodCodeHeapSize = 0;
2885
2886      ArgsRange errcode = parse_memory_size(tail, &long_NonNMethodCodeHeapSize, 1);
2887      if (errcode != arg_in_range) {
2888        jio_fprintf(defaultStream::error_stream(),
2889                    "Invalid maximum non-nmethod code heap size: %s.\n", option->optionString);
2890        return JNI_EINVAL;
2891      }
2892      FLAG_SET_CMDLINE(uintx, NonNMethodCodeHeapSize, (uintx)long_NonNMethodCodeHeapSize);
2893      // -XX:ProfiledCodeHeapSize=
2894    } else if (match_option(option, "-XX:ProfiledCodeHeapSize=", &tail)) {
2895      julong long_ProfiledCodeHeapSize = 0;
2896
2897      ArgsRange errcode = parse_memory_size(tail, &long_ProfiledCodeHeapSize, 1);
2898      if (errcode != arg_in_range) {
2899        jio_fprintf(defaultStream::error_stream(),
2900                    "Invalid maximum profiled code heap size: %s.\n", option->optionString);
2901        return JNI_EINVAL;
2902      }
2903      FLAG_SET_CMDLINE(uintx, ProfiledCodeHeapSize, (uintx)long_ProfiledCodeHeapSize);
2904      // -XX:NonProfiledCodeHeapSizee=
2905    } else if (match_option(option, "-XX:NonProfiledCodeHeapSize=", &tail)) {
2906      julong long_NonProfiledCodeHeapSize = 0;
2907
2908      ArgsRange errcode = parse_memory_size(tail, &long_NonProfiledCodeHeapSize, 1);
2909      if (errcode != arg_in_range) {
2910        jio_fprintf(defaultStream::error_stream(),
2911                    "Invalid maximum non-profiled code heap size: %s.\n", option->optionString);
2912        return JNI_EINVAL;
2913      }
2914      FLAG_SET_CMDLINE(uintx, NonProfiledCodeHeapSize, (uintx)long_NonProfiledCodeHeapSize);
2915      //-XX:IncreaseFirstTierCompileThresholdAt=
2916    } else if (match_option(option, "-XX:IncreaseFirstTierCompileThresholdAt=", &tail)) {
2917        uintx uint_IncreaseFirstTierCompileThresholdAt = 0;
2918        if (!parse_uintx(tail, &uint_IncreaseFirstTierCompileThresholdAt, 0) || uint_IncreaseFirstTierCompileThresholdAt > 99) {
2919          jio_fprintf(defaultStream::error_stream(),
2920                      "Invalid value for IncreaseFirstTierCompileThresholdAt: %s. Should be between 0 and 99.\n",
2921                      option->optionString);
2922          return JNI_EINVAL;
2923        }
2924        FLAG_SET_CMDLINE(uintx, IncreaseFirstTierCompileThresholdAt, (uintx)uint_IncreaseFirstTierCompileThresholdAt);
2925    // -green
2926    } else if (match_option(option, "-green")) {
2927      jio_fprintf(defaultStream::error_stream(),
2928                  "Green threads support not available\n");
2929          return JNI_EINVAL;
2930    // -native
2931    } else if (match_option(option, "-native")) {
2932          // HotSpot always uses native threads, ignore silently for compatibility
2933    // -Xsqnopause
2934    } else if (match_option(option, "-Xsqnopause")) {
2935          // EVM option, ignore silently for compatibility
2936    // -Xrs
2937    } else if (match_option(option, "-Xrs")) {
2938          // Classic/EVM option, new functionality
2939      FLAG_SET_CMDLINE(bool, ReduceSignalUsage, true);
2940    } else if (match_option(option, "-Xusealtsigs")) {
2941          // change default internal VM signals used - lower case for back compat
2942      FLAG_SET_CMDLINE(bool, UseAltSigs, true);
2943    // -Xoptimize
2944    } else if (match_option(option, "-Xoptimize")) {
2945          // EVM option, ignore silently for compatibility
2946    // -Xprof
2947    } else if (match_option(option, "-Xprof")) {
2948#if INCLUDE_FPROF
2949      _has_profile = true;
2950#else // INCLUDE_FPROF
2951      jio_fprintf(defaultStream::error_stream(),
2952        "Flat profiling is not supported in this VM.\n");
2953      return JNI_ERR;
2954#endif // INCLUDE_FPROF
2955    // -Xconcurrentio
2956    } else if (match_option(option, "-Xconcurrentio")) {
2957      FLAG_SET_CMDLINE(bool, UseLWPSynchronization, true);
2958      FLAG_SET_CMDLINE(bool, BackgroundCompilation, false);
2959      FLAG_SET_CMDLINE(intx, DeferThrSuspendLoopCount, 1);
2960      FLAG_SET_CMDLINE(bool, UseTLAB, false);
2961      FLAG_SET_CMDLINE(uintx, NewSizeThreadIncrease, 16 * K);  // 20Kb per thread added to new generation
2962
2963      // -Xinternalversion
2964    } else if (match_option(option, "-Xinternalversion")) {
2965      jio_fprintf(defaultStream::output_stream(), "%s\n",
2966                  VM_Version::internal_vm_info_string());
2967      vm_exit(0);
2968#ifndef PRODUCT
2969    // -Xprintflags
2970    } else if (match_option(option, "-Xprintflags")) {
2971      CommandLineFlags::printFlags(tty, false);
2972      vm_exit(0);
2973#endif
2974    // -D
2975    } else if (match_option(option, "-D", &tail)) {
2976      const char* value;
2977      if (match_option(option, "-Djava.endorsed.dirs=", &value) &&
2978            *value!= '\0' && strcmp(value, "\"\"") != 0) {
2979        // abort if -Djava.endorsed.dirs is set
2980        jio_fprintf(defaultStream::output_stream(),
2981          "-Djava.endorsed.dirs=%s is not supported. Endorsed standards and standalone APIs\n"
2982          "in modular form will be supported via the concept of upgradeable modules.\n", value);
2983        return JNI_EINVAL;
2984      }
2985      if (match_option(option, "-Djava.ext.dirs=", &value) &&
2986            *value != '\0' && strcmp(value, "\"\"") != 0) {
2987        // abort if -Djava.ext.dirs is set
2988        jio_fprintf(defaultStream::output_stream(),
2989          "-Djava.ext.dirs=%s is not supported.  Use -classpath instead.\n", value);
2990        return JNI_EINVAL;
2991      }
2992
2993      if (!add_property(tail)) {
2994        return JNI_ENOMEM;
2995      }
2996      // Out of the box management support
2997      if (match_option(option, "-Dcom.sun.management", &tail)) {
2998#if INCLUDE_MANAGEMENT
2999        FLAG_SET_CMDLINE(bool, ManagementServer, true);
3000#else
3001        jio_fprintf(defaultStream::output_stream(),
3002          "-Dcom.sun.management is not supported in this VM.\n");
3003        return JNI_ERR;
3004#endif
3005      }
3006    // -Xint
3007    } else if (match_option(option, "-Xint")) {
3008          set_mode_flags(_int);
3009    // -Xmixed
3010    } else if (match_option(option, "-Xmixed")) {
3011          set_mode_flags(_mixed);
3012    // -Xcomp
3013    } else if (match_option(option, "-Xcomp")) {
3014      // for testing the compiler; turn off all flags that inhibit compilation
3015          set_mode_flags(_comp);
3016    // -Xshare:dump
3017    } else if (match_option(option, "-Xshare:dump")) {
3018      FLAG_SET_CMDLINE(bool, DumpSharedSpaces, true);
3019      set_mode_flags(_int);     // Prevent compilation, which creates objects
3020    // -Xshare:on
3021    } else if (match_option(option, "-Xshare:on")) {
3022      FLAG_SET_CMDLINE(bool, UseSharedSpaces, true);
3023      FLAG_SET_CMDLINE(bool, RequireSharedSpaces, true);
3024    // -Xshare:auto
3025    } else if (match_option(option, "-Xshare:auto")) {
3026      FLAG_SET_CMDLINE(bool, UseSharedSpaces, true);
3027      FLAG_SET_CMDLINE(bool, RequireSharedSpaces, false);
3028    // -Xshare:off
3029    } else if (match_option(option, "-Xshare:off")) {
3030      FLAG_SET_CMDLINE(bool, UseSharedSpaces, false);
3031      FLAG_SET_CMDLINE(bool, RequireSharedSpaces, false);
3032    // -Xverify
3033    } else if (match_option(option, "-Xverify", &tail)) {
3034      if (strcmp(tail, ":all") == 0 || strcmp(tail, "") == 0) {
3035        FLAG_SET_CMDLINE(bool, BytecodeVerificationLocal, true);
3036        FLAG_SET_CMDLINE(bool, BytecodeVerificationRemote, true);
3037      } else if (strcmp(tail, ":remote") == 0) {
3038        FLAG_SET_CMDLINE(bool, BytecodeVerificationLocal, false);
3039        FLAG_SET_CMDLINE(bool, BytecodeVerificationRemote, true);
3040      } else if (strcmp(tail, ":none") == 0) {
3041        FLAG_SET_CMDLINE(bool, BytecodeVerificationLocal, false);
3042        FLAG_SET_CMDLINE(bool, BytecodeVerificationRemote, false);
3043      } else if (is_bad_option(option, args->ignoreUnrecognized, "verification")) {
3044        return JNI_EINVAL;
3045      }
3046    // -Xdebug
3047    } else if (match_option(option, "-Xdebug")) {
3048      // note this flag has been used, then ignore
3049      set_xdebug_mode(true);
3050    // -Xnoagent
3051    } else if (match_option(option, "-Xnoagent")) {
3052      // For compatibility with classic. HotSpot refuses to load the old style agent.dll.
3053    } else if (match_option(option, "-Xboundthreads")) {
3054      // Bind user level threads to kernel threads (Solaris only)
3055      FLAG_SET_CMDLINE(bool, UseBoundThreads, true);
3056    } else if (match_option(option, "-Xloggc:", &tail)) {
3057      // Redirect GC output to the file. -Xloggc:<filename>
3058      // ostream_init_log(), when called will use this filename
3059      // to initialize a fileStream.
3060      _gc_log_filename = os::strdup_check_oom(tail);
3061     if (!is_filename_valid(_gc_log_filename)) {
3062       jio_fprintf(defaultStream::output_stream(),
3063                  "Invalid file name for use with -Xloggc: Filename can only contain the "
3064                  "characters [A-Z][a-z][0-9]-_.%%[p|t] but it has been %s\n"
3065                  "Note %%p or %%t can only be used once\n", _gc_log_filename);
3066        return JNI_EINVAL;
3067      }
3068      FLAG_SET_CMDLINE(bool, PrintGC, true);
3069      FLAG_SET_CMDLINE(bool, PrintGCTimeStamps, true);
3070
3071    // JNI hooks
3072    } else if (match_option(option, "-Xcheck", &tail)) {
3073      if (!strcmp(tail, ":jni")) {
3074#if !INCLUDE_JNI_CHECK
3075        warning("JNI CHECKING is not supported in this VM");
3076#else
3077        CheckJNICalls = true;
3078#endif // INCLUDE_JNI_CHECK
3079      } else if (is_bad_option(option, args->ignoreUnrecognized,
3080                                     "check")) {
3081        return JNI_EINVAL;
3082      }
3083    } else if (match_option(option, "vfprintf")) {
3084      _vfprintf_hook = CAST_TO_FN_PTR(vfprintf_hook_t, option->extraInfo);
3085    } else if (match_option(option, "exit")) {
3086      _exit_hook = CAST_TO_FN_PTR(exit_hook_t, option->extraInfo);
3087    } else if (match_option(option, "abort")) {
3088      _abort_hook = CAST_TO_FN_PTR(abort_hook_t, option->extraInfo);
3089    // -XX:+AggressiveHeap
3090    } else if (match_option(option, "-XX:+AggressiveHeap")) {
3091
3092      // This option inspects the machine and attempts to set various
3093      // parameters to be optimal for long-running, memory allocation
3094      // intensive jobs.  It is intended for machines with large
3095      // amounts of cpu and memory.
3096
3097      // initHeapSize is needed since _initial_heap_size is 4 bytes on a 32 bit
3098      // VM, but we may not be able to represent the total physical memory
3099      // available (like having 8gb of memory on a box but using a 32bit VM).
3100      // Thus, we need to make sure we're using a julong for intermediate
3101      // calculations.
3102      julong initHeapSize;
3103      julong total_memory = os::physical_memory();
3104
3105      if (total_memory < (julong)256*M) {
3106        jio_fprintf(defaultStream::error_stream(),
3107                    "You need at least 256mb of memory to use -XX:+AggressiveHeap\n");
3108        vm_exit(1);
3109      }
3110
3111      // The heap size is half of available memory, or (at most)
3112      // all of possible memory less 160mb (leaving room for the OS
3113      // when using ISM).  This is the maximum; because adaptive sizing
3114      // is turned on below, the actual space used may be smaller.
3115
3116      initHeapSize = MIN2(total_memory / (julong)2,
3117                          total_memory - (julong)160*M);
3118
3119      initHeapSize = limit_by_allocatable_memory(initHeapSize);
3120
3121      if (FLAG_IS_DEFAULT(MaxHeapSize)) {
3122         FLAG_SET_CMDLINE(uintx, MaxHeapSize, initHeapSize);
3123         FLAG_SET_CMDLINE(uintx, InitialHeapSize, initHeapSize);
3124         // Currently the minimum size and the initial heap sizes are the same.
3125         set_min_heap_size(initHeapSize);
3126      }
3127      if (FLAG_IS_DEFAULT(NewSize)) {
3128         // Make the young generation 3/8ths of the total heap.
3129         FLAG_SET_CMDLINE(uintx, NewSize,
3130                                ((julong)MaxHeapSize / (julong)8) * (julong)3);
3131         FLAG_SET_CMDLINE(uintx, MaxNewSize, NewSize);
3132      }
3133
3134#ifndef _ALLBSD_SOURCE  // UseLargePages is not yet supported on BSD.
3135      FLAG_SET_DEFAULT(UseLargePages, true);
3136#endif
3137
3138      // Increase some data structure sizes for efficiency
3139      FLAG_SET_CMDLINE(uintx, BaseFootPrintEstimate, MaxHeapSize);
3140      FLAG_SET_CMDLINE(bool, ResizeTLAB, false);
3141      FLAG_SET_CMDLINE(uintx, TLABSize, 256*K);
3142
3143      // See the OldPLABSize comment below, but replace 'after promotion'
3144      // with 'after copying'.  YoungPLABSize is the size of the survivor
3145      // space per-gc-thread buffers.  The default is 4kw.
3146      FLAG_SET_CMDLINE(uintx, YoungPLABSize, 256*K);      // Note: this is in words
3147
3148      // OldPLABSize is the size of the buffers in the old gen that
3149      // UseParallelGC uses to promote live data that doesn't fit in the
3150      // survivor spaces.  At any given time, there's one for each gc thread.
3151      // The default size is 1kw. These buffers are rarely used, since the
3152      // survivor spaces are usually big enough.  For specjbb, however, there
3153      // are occasions when there's lots of live data in the young gen
3154      // and we end up promoting some of it.  We don't have a definite
3155      // explanation for why bumping OldPLABSize helps, but the theory
3156      // is that a bigger PLAB results in retaining something like the
3157      // original allocation order after promotion, which improves mutator
3158      // locality.  A minor effect may be that larger PLABs reduce the
3159      // number of PLAB allocation events during gc.  The value of 8kw
3160      // was arrived at by experimenting with specjbb.
3161      FLAG_SET_CMDLINE(uintx, OldPLABSize, 8*K);  // Note: this is in words
3162
3163      // Enable parallel GC and adaptive generation sizing
3164      FLAG_SET_CMDLINE(bool, UseParallelGC, true);
3165      FLAG_SET_DEFAULT(ParallelGCThreads,
3166                       Abstract_VM_Version::parallel_worker_threads());
3167
3168      // Encourage steady state memory management
3169      FLAG_SET_CMDLINE(uintx, ThresholdTolerance, 100);
3170
3171      // This appears to improve mutator locality
3172      FLAG_SET_CMDLINE(bool, ScavengeBeforeFullGC, false);
3173
3174      // Get around early Solaris scheduling bug
3175      // (affinity vs other jobs on system)
3176      // but disallow DR and offlining (5008695).
3177      FLAG_SET_CMDLINE(bool, BindGCTaskThreadsToCPUs, true);
3178
3179    // Need to keep consistency of MaxTenuringThreshold and AlwaysTenure/NeverTenure;
3180    // and the last option wins.
3181    } else if (match_option(option, "-XX:+NeverTenure")) {
3182      FLAG_SET_CMDLINE(bool, NeverTenure, true);
3183      FLAG_SET_CMDLINE(bool, AlwaysTenure, false);
3184      FLAG_SET_CMDLINE(uintx, MaxTenuringThreshold, markOopDesc::max_age + 1);
3185    } else if (match_option(option, "-XX:+AlwaysTenure")) {
3186      FLAG_SET_CMDLINE(bool, NeverTenure, false);
3187      FLAG_SET_CMDLINE(bool, AlwaysTenure, true);
3188      FLAG_SET_CMDLINE(uintx, MaxTenuringThreshold, 0);
3189    } else if (match_option(option, "-XX:MaxTenuringThreshold=", &tail)) {
3190      uintx max_tenuring_thresh = 0;
3191      if(!parse_uintx(tail, &max_tenuring_thresh, 0)) {
3192        jio_fprintf(defaultStream::error_stream(),
3193                    "Invalid MaxTenuringThreshold: %s\n", option->optionString);
3194      }
3195      FLAG_SET_CMDLINE(uintx, MaxTenuringThreshold, max_tenuring_thresh);
3196
3197      if (MaxTenuringThreshold == 0) {
3198        FLAG_SET_CMDLINE(bool, NeverTenure, false);
3199        FLAG_SET_CMDLINE(bool, AlwaysTenure, true);
3200      } else {
3201        FLAG_SET_CMDLINE(bool, NeverTenure, false);
3202        FLAG_SET_CMDLINE(bool, AlwaysTenure, false);
3203      }
3204    } else if (match_option(option, "-XX:+DisplayVMOutputToStderr")) {
3205      FLAG_SET_CMDLINE(bool, DisplayVMOutputToStdout, false);
3206      FLAG_SET_CMDLINE(bool, DisplayVMOutputToStderr, true);
3207    } else if (match_option(option, "-XX:+DisplayVMOutputToStdout")) {
3208      FLAG_SET_CMDLINE(bool, DisplayVMOutputToStderr, false);
3209      FLAG_SET_CMDLINE(bool, DisplayVMOutputToStdout, true);
3210    } else if (match_option(option, "-XX:+ExtendedDTraceProbes")) {
3211#if defined(DTRACE_ENABLED)
3212      FLAG_SET_CMDLINE(bool, ExtendedDTraceProbes, true);
3213      FLAG_SET_CMDLINE(bool, DTraceMethodProbes, true);
3214      FLAG_SET_CMDLINE(bool, DTraceAllocProbes, true);
3215      FLAG_SET_CMDLINE(bool, DTraceMonitorProbes, true);
3216#else // defined(DTRACE_ENABLED)
3217      jio_fprintf(defaultStream::error_stream(),
3218                  "ExtendedDTraceProbes flag is not applicable for this configuration\n");
3219      return JNI_EINVAL;
3220#endif // defined(DTRACE_ENABLED)
3221#ifdef ASSERT
3222    } else if (match_option(option, "-XX:+FullGCALot")) {
3223      FLAG_SET_CMDLINE(bool, FullGCALot, true);
3224      // disable scavenge before parallel mark-compact
3225      FLAG_SET_CMDLINE(bool, ScavengeBeforeFullGC, false);
3226#endif
3227    } else if (match_option(option, "-XX:CMSMarkStackSize=", &tail) ||
3228               match_option(option, "-XX:G1MarkStackSize=", &tail)) {
3229      julong stack_size = 0;
3230      ArgsRange errcode = parse_memory_size(tail, &stack_size, 1);
3231      if (errcode != arg_in_range) {
3232        jio_fprintf(defaultStream::error_stream(),
3233                    "Invalid mark stack size: %s\n", option->optionString);
3234        describe_range_error(errcode);
3235        return JNI_EINVAL;
3236      }
3237      jio_fprintf(defaultStream::error_stream(),
3238        "Please use -XX:MarkStackSize in place of "
3239        "-XX:CMSMarkStackSize or -XX:G1MarkStackSize in the future\n");
3240      FLAG_SET_CMDLINE(uintx, MarkStackSize, stack_size);
3241    } else if (match_option(option, "-XX:CMSMarkStackSizeMax=", &tail)) {
3242      julong max_stack_size = 0;
3243      ArgsRange errcode = parse_memory_size(tail, &max_stack_size, 1);
3244      if (errcode != arg_in_range) {
3245        jio_fprintf(defaultStream::error_stream(),
3246                    "Invalid maximum mark stack size: %s\n",
3247                    option->optionString);
3248        describe_range_error(errcode);
3249        return JNI_EINVAL;
3250      }
3251      jio_fprintf(defaultStream::error_stream(),
3252         "Please use -XX:MarkStackSizeMax in place of "
3253         "-XX:CMSMarkStackSizeMax in the future\n");
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;
3262      }
3263      jio_fprintf(defaultStream::error_stream(),
3264        "Please use -XX:ConcGCThreads in place of "
3265        "-XX:ParallelMarkingThreads or -XX:ParallelCMSThreads in the future\n");
3266      FLAG_SET_CMDLINE(uintx, ConcGCThreads, conc_threads);
3267    } else if (match_option(option, "-XX:MaxDirectMemorySize=", &tail)) {
3268      julong max_direct_memory_size = 0;
3269      ArgsRange errcode = parse_memory_size(tail, &max_direct_memory_size, 0);
3270      if (errcode != arg_in_range) {
3271        jio_fprintf(defaultStream::error_stream(),
3272                    "Invalid maximum direct memory size: %s\n",
3273                    option->optionString);
3274        describe_range_error(errcode);
3275        return JNI_EINVAL;
3276      }
3277      FLAG_SET_CMDLINE(uintx, MaxDirectMemorySize, max_direct_memory_size);
3278#if !INCLUDE_MANAGEMENT
3279    } else if (match_option(option, "-XX:+ManagementServer")) {
3280        jio_fprintf(defaultStream::error_stream(),
3281          "ManagementServer is not supported in this VM.\n");
3282        return JNI_ERR;
3283#endif // INCLUDE_MANAGEMENT
3284    } else if (match_option(option, "-XX:", &tail)) { // -XX:xxxx
3285      // Skip -XX:Flags= since that case has already been handled
3286      if (strncmp(tail, "Flags=", strlen("Flags=")) != 0) {
3287        if (!process_argument(tail, args->ignoreUnrecognized, origin)) {
3288          return JNI_EINVAL;
3289        }
3290      }
3291    // Unknown option
3292    } else if (is_bad_option(option, args->ignoreUnrecognized)) {
3293      return JNI_ERR;
3294    }
3295  }
3296
3297  // PrintSharedArchiveAndExit will turn on
3298  //   -Xshare:on
3299  //   -XX:+TraceClassPaths
3300  if (PrintSharedArchiveAndExit) {
3301    FLAG_SET_CMDLINE(bool, UseSharedSpaces, true);
3302    FLAG_SET_CMDLINE(bool, RequireSharedSpaces, true);
3303    FLAG_SET_CMDLINE(bool, TraceClassPaths, true);
3304  }
3305
3306  // Change the default value for flags  which have different default values
3307  // when working with older JDKs.
3308#ifdef LINUX
3309 if (JDK_Version::current().compare_major(6) <= 0 &&
3310      FLAG_IS_DEFAULT(UseLinuxPosixThreadCPUClocks)) {
3311    FLAG_SET_DEFAULT(UseLinuxPosixThreadCPUClocks, false);
3312  }
3313#endif // LINUX
3314  fix_appclasspath();
3315  return JNI_OK;
3316}
3317
3318// Remove all empty paths from the app classpath (if IgnoreEmptyClassPaths is enabled)
3319//
3320// This is necessary because some apps like to specify classpath like -cp foo.jar:${XYZ}:bar.jar
3321// in their start-up scripts. If XYZ is empty, the classpath will look like "-cp foo.jar::bar.jar".
3322// Java treats such empty paths as if the user specified "-cp foo.jar:.:bar.jar". I.e., an empty
3323// path is treated as the current directory.
3324//
3325// This causes problems with CDS, which requires that all directories specified in the classpath
3326// must be empty. In most cases, applications do NOT want to load classes from the current
3327// directory anyway. Adding -XX:+IgnoreEmptyClassPaths will make these applications' start-up
3328// scripts compatible with CDS.
3329void Arguments::fix_appclasspath() {
3330  if (IgnoreEmptyClassPaths) {
3331    const char separator = *os::path_separator();
3332    const char* src = _java_class_path->value();
3333
3334    // skip over all the leading empty paths
3335    while (*src == separator) {
3336      src ++;
3337    }
3338
3339    char* copy = AllocateHeap(strlen(src) + 1, mtInternal);
3340    strncpy(copy, src, strlen(src) + 1);
3341
3342    // trim all trailing empty paths
3343    for (char* tail = copy + strlen(copy) - 1; tail >= copy && *tail == separator; tail--) {
3344      *tail = '\0';
3345    }
3346
3347    char from[3] = {separator, separator, '\0'};
3348    char to  [2] = {separator, '\0'};
3349    while (StringUtils::replace_no_expand(copy, from, to) > 0) {
3350      // Keep replacing "::" -> ":" until we have no more "::" (non-windows)
3351      // Keep replacing ";;" -> ";" until we have no more ";;" (windows)
3352    }
3353
3354    _java_class_path->set_value(copy);
3355    FreeHeap(copy); // a copy was made by set_value, so don't need this anymore
3356  }
3357
3358  if (!PrintSharedArchiveAndExit) {
3359    ClassLoader::trace_class_path("[classpath: ", _java_class_path->value());
3360  }
3361}
3362
3363static bool has_jar_files(const char* directory) {
3364  DIR* dir = os::opendir(directory);
3365  if (dir == NULL) return false;
3366
3367  struct dirent *entry;
3368  char *dbuf = NEW_C_HEAP_ARRAY(char, os::readdir_buf_size(directory), mtInternal);
3369  bool hasJarFile = false;
3370  while (!hasJarFile && (entry = os::readdir(dir, (dirent *) dbuf)) != NULL) {
3371    const char* name = entry->d_name;
3372    const char* ext = name + strlen(name) - 4;
3373    hasJarFile = ext > name && (os::file_name_strcmp(ext, ".jar") == 0);
3374  }
3375  FREE_C_HEAP_ARRAY(char, dbuf);
3376  os::closedir(dir);
3377  return hasJarFile ;
3378}
3379
3380static int check_non_empty_dirs(const char* path) {
3381  const char separator = *os::path_separator();
3382  const char* const end = path + strlen(path);
3383  int nonEmptyDirs = 0;
3384  while (path < end) {
3385    const char* tmp_end = strchr(path, separator);
3386    if (tmp_end == NULL) {
3387      if (has_jar_files(path)) {
3388        nonEmptyDirs++;
3389        jio_fprintf(defaultStream::output_stream(),
3390          "Non-empty directory: %s\n", path);
3391      }
3392      path = end;
3393    } else {
3394      char* dirpath = NEW_C_HEAP_ARRAY(char, tmp_end - path + 1, mtInternal);
3395      memcpy(dirpath, path, tmp_end - path);
3396      dirpath[tmp_end - path] = '\0';
3397      if (has_jar_files(dirpath)) {
3398        nonEmptyDirs++;
3399        jio_fprintf(defaultStream::output_stream(),
3400          "Non-empty directory: %s\n", dirpath);
3401      }
3402      FREE_C_HEAP_ARRAY(char, dirpath);
3403      path = tmp_end + 1;
3404    }
3405  }
3406  return nonEmptyDirs;
3407}
3408
3409jint Arguments::finalize_vm_init_args(SysClassPath* scp_p, bool scp_assembly_required) {
3410  // check if the default lib/endorsed directory exists; if so, error
3411  char path[JVM_MAXPATHLEN];
3412  const char* fileSep = os::file_separator();
3413  sprintf(path, "%s%slib%sendorsed", Arguments::get_java_home(), fileSep, fileSep);
3414
3415  if (CheckEndorsedAndExtDirs) {
3416    int nonEmptyDirs = 0;
3417    // check endorsed directory
3418    nonEmptyDirs += check_non_empty_dirs(path);
3419    // check the extension directories
3420    nonEmptyDirs += check_non_empty_dirs(Arguments::get_ext_dirs());
3421    if (nonEmptyDirs > 0) {
3422      return JNI_ERR;
3423    }
3424  }
3425
3426  DIR* dir = os::opendir(path);
3427  if (dir != NULL) {
3428    jio_fprintf(defaultStream::output_stream(),
3429      "<JAVA_HOME>/lib/endorsed is not supported. Endorsed standards and standalone APIs\n"
3430      "in modular form will be supported via the concept of upgradeable modules.\n");
3431    os::closedir(dir);
3432    return JNI_ERR;
3433  }
3434
3435  sprintf(path, "%s%slib%sext", Arguments::get_java_home(), fileSep, fileSep);
3436  dir = os::opendir(path);
3437  if (dir != NULL) {
3438    jio_fprintf(defaultStream::output_stream(),
3439      "<JAVA_HOME>/lib/ext exists, extensions mechanism no longer supported; "
3440      "Use -classpath instead.\n.");
3441    os::closedir(dir);
3442    return JNI_ERR;
3443  }
3444
3445  if (scp_assembly_required) {
3446    // Assemble the bootclasspath elements into the final path.
3447    Arguments::set_sysclasspath(scp_p->combined_path());
3448  }
3449
3450  // This must be done after all arguments have been processed.
3451  // java_compiler() true means set to "NONE" or empty.
3452  if (java_compiler() && !xdebug_mode()) {
3453    // For backwards compatibility, we switch to interpreted mode if
3454    // -Djava.compiler="NONE" or "" is specified AND "-Xdebug" was
3455    // not specified.
3456    set_mode_flags(_int);
3457  }
3458
3459  if ((TieredCompilation && CompileThresholdScaling == 0)
3460      || (!TieredCompilation && get_scaled_compile_threshold(CompileThreshold) == 0)) {
3461    set_mode_flags(_int);
3462  }
3463
3464  // eventually fix up InitialTenuringThreshold if only MaxTenuringThreshold is set
3465  if (FLAG_IS_DEFAULT(InitialTenuringThreshold) && (InitialTenuringThreshold > MaxTenuringThreshold)) {
3466    FLAG_SET_ERGO(uintx, InitialTenuringThreshold, MaxTenuringThreshold);
3467  }
3468
3469#ifndef COMPILER2
3470  // Don't degrade server performance for footprint
3471  if (FLAG_IS_DEFAULT(UseLargePages) &&
3472      MaxHeapSize < LargePageHeapSizeThreshold) {
3473    // No need for large granularity pages w/small heaps.
3474    // Note that large pages are enabled/disabled for both the
3475    // Java heap and the code cache.
3476    FLAG_SET_DEFAULT(UseLargePages, false);
3477  }
3478
3479#else
3480  if (!FLAG_IS_DEFAULT(OptoLoopAlignment) && FLAG_IS_DEFAULT(MaxLoopPad)) {
3481    FLAG_SET_DEFAULT(MaxLoopPad, OptoLoopAlignment-1);
3482  }
3483#endif
3484
3485#ifndef TIERED
3486  // Tiered compilation is undefined.
3487  UNSUPPORTED_OPTION(TieredCompilation, "TieredCompilation");
3488#endif
3489
3490  // If we are running in a headless jre, force java.awt.headless property
3491  // to be true unless the property has already been set.
3492  // Also allow the OS environment variable JAVA_AWT_HEADLESS to set headless state.
3493  if (os::is_headless_jre()) {
3494    const char* headless = Arguments::get_property("java.awt.headless");
3495    if (headless == NULL) {
3496      char envbuffer[128];
3497      if (!os::getenv("JAVA_AWT_HEADLESS", envbuffer, sizeof(envbuffer))) {
3498        if (!add_property("java.awt.headless=true")) {
3499          return JNI_ENOMEM;
3500        }
3501      } else {
3502        char buffer[256];
3503        strcpy(buffer, "java.awt.headless=");
3504        strcat(buffer, envbuffer);
3505        if (!add_property(buffer)) {
3506          return JNI_ENOMEM;
3507        }
3508      }
3509    }
3510  }
3511
3512  if (UseConcMarkSweepGC && FLAG_IS_DEFAULT(UseParNewGC) && !UseParNewGC) {
3513    // CMS can only be used with ParNew
3514    FLAG_SET_ERGO(bool, UseParNewGC, true);
3515  }
3516
3517  if (!check_vm_args_consistency()) {
3518    return JNI_ERR;
3519  }
3520
3521  return JNI_OK;
3522}
3523
3524jint Arguments::parse_java_options_environment_variable(SysClassPath* scp_p, bool* scp_assembly_required_p) {
3525  return parse_options_environment_variable("_JAVA_OPTIONS", scp_p,
3526                                            scp_assembly_required_p);
3527}
3528
3529jint Arguments::parse_java_tool_options_environment_variable(SysClassPath* scp_p, bool* scp_assembly_required_p) {
3530  return parse_options_environment_variable("JAVA_TOOL_OPTIONS", scp_p,
3531                                            scp_assembly_required_p);
3532}
3533
3534jint Arguments::parse_options_environment_variable(const char* name, SysClassPath* scp_p, bool* scp_assembly_required_p) {
3535  const int N_MAX_OPTIONS = 64;
3536  const int OPTION_BUFFER_SIZE = 1024;
3537  char buffer[OPTION_BUFFER_SIZE];
3538
3539  // The variable will be ignored if it exceeds the length of the buffer.
3540  // Don't check this variable if user has special privileges
3541  // (e.g. unix su command).
3542  if (os::getenv(name, buffer, sizeof(buffer)) &&
3543      !os::have_special_privileges()) {
3544    JavaVMOption options[N_MAX_OPTIONS];      // Construct option array
3545    jio_fprintf(defaultStream::error_stream(),
3546                "Picked up %s: %s\n", name, buffer);
3547    char* rd = buffer;                        // pointer to the input string (rd)
3548    int i;
3549    for (i = 0; i < N_MAX_OPTIONS;) {         // repeat for all options in the input string
3550      while (isspace(*rd)) rd++;              // skip whitespace
3551      if (*rd == 0) break;                    // we re done when the input string is read completely
3552
3553      // The output, option string, overwrites the input string.
3554      // Because of quoting, the pointer to the option string (wrt) may lag the pointer to
3555      // input string (rd).
3556      char* wrt = rd;
3557
3558      options[i++].optionString = wrt;        // Fill in option
3559      while (*rd != 0 && !isspace(*rd)) {     // unquoted strings terminate with a space or NULL
3560        if (*rd == '\'' || *rd == '"') {      // handle a quoted string
3561          int quote = *rd;                    // matching quote to look for
3562          rd++;                               // don't copy open quote
3563          while (*rd != quote) {              // include everything (even spaces) up until quote
3564            if (*rd == 0) {                   // string termination means unmatched string
3565              jio_fprintf(defaultStream::error_stream(),
3566                          "Unmatched quote in %s\n", name);
3567              return JNI_ERR;
3568            }
3569            *wrt++ = *rd++;                   // copy to option string
3570          }
3571          rd++;                               // don't copy close quote
3572        } else {
3573          *wrt++ = *rd++;                     // copy to option string
3574        }
3575      }
3576      // Need to check if we're done before writing a NULL,
3577      // because the write could be to the byte that rd is pointing to.
3578      if (*rd++ == 0) {
3579        *wrt = 0;
3580        break;
3581      }
3582      *wrt = 0;                               // Zero terminate option
3583    }
3584    // Construct JavaVMInitArgs structure and parse as if it was part of the command line
3585    JavaVMInitArgs vm_args;
3586    vm_args.version = JNI_VERSION_1_2;
3587    vm_args.options = options;
3588    vm_args.nOptions = i;
3589    vm_args.ignoreUnrecognized = IgnoreUnrecognizedVMOptions;
3590
3591    if (PrintVMOptions) {
3592      const char* tail;
3593      for (int i = 0; i < vm_args.nOptions; i++) {
3594        const JavaVMOption *option = vm_args.options + i;
3595        if (match_option(option, "-XX:", &tail)) {
3596          logOption(tail);
3597        }
3598      }
3599    }
3600
3601    return(parse_each_vm_init_arg(&vm_args, scp_p, scp_assembly_required_p, Flag::ENVIRON_VAR));
3602  }
3603  return JNI_OK;
3604}
3605
3606void Arguments::set_shared_spaces_flags() {
3607  if (DumpSharedSpaces) {
3608    if (RequireSharedSpaces) {
3609      warning("cannot dump shared archive while using shared archive");
3610    }
3611    UseSharedSpaces = false;
3612#ifdef _LP64
3613    if (!UseCompressedOops || !UseCompressedClassPointers) {
3614      vm_exit_during_initialization(
3615        "Cannot dump shared archive when UseCompressedOops or UseCompressedClassPointers is off.", NULL);
3616    }
3617  } else {
3618    if (!UseCompressedOops || !UseCompressedClassPointers) {
3619      no_shared_spaces("UseCompressedOops and UseCompressedClassPointers must be on for UseSharedSpaces.");
3620    }
3621#endif
3622  }
3623}
3624
3625#if !INCLUDE_ALL_GCS
3626static void force_serial_gc() {
3627  FLAG_SET_DEFAULT(UseSerialGC, true);
3628  UNSUPPORTED_GC_OPTION(UseG1GC);
3629  UNSUPPORTED_GC_OPTION(UseParallelGC);
3630  UNSUPPORTED_GC_OPTION(UseParallelOldGC);
3631  UNSUPPORTED_GC_OPTION(UseConcMarkSweepGC);
3632  UNSUPPORTED_GC_OPTION(UseParNewGC);
3633}
3634#endif // INCLUDE_ALL_GCS
3635
3636// Sharing support
3637// Construct the path to the archive
3638static char* get_shared_archive_path() {
3639  char *shared_archive_path;
3640  if (SharedArchiveFile == NULL) {
3641    char jvm_path[JVM_MAXPATHLEN];
3642    os::jvm_path(jvm_path, sizeof(jvm_path));
3643    char *end = strrchr(jvm_path, *os::file_separator());
3644    if (end != NULL) *end = '\0';
3645    size_t jvm_path_len = strlen(jvm_path);
3646    size_t file_sep_len = strlen(os::file_separator());
3647    shared_archive_path = NEW_C_HEAP_ARRAY(char, jvm_path_len +
3648        file_sep_len + 20, mtInternal);
3649    if (shared_archive_path != NULL) {
3650      strncpy(shared_archive_path, jvm_path, jvm_path_len + 1);
3651      strncat(shared_archive_path, os::file_separator(), file_sep_len);
3652      strncat(shared_archive_path, "classes.jsa", 11);
3653    }
3654  } else {
3655    shared_archive_path = NEW_C_HEAP_ARRAY(char, strlen(SharedArchiveFile) + 1, mtInternal);
3656    if (shared_archive_path != NULL) {
3657      strncpy(shared_archive_path, SharedArchiveFile, strlen(SharedArchiveFile) + 1);
3658    }
3659  }
3660  return shared_archive_path;
3661}
3662
3663#ifndef PRODUCT
3664// Determine whether LogVMOutput should be implicitly turned on.
3665static bool use_vm_log() {
3666  if (LogCompilation || !FLAG_IS_DEFAULT(LogFile) ||
3667      PrintCompilation || PrintInlining || PrintDependencies || PrintNativeNMethods ||
3668      PrintDebugInfo || PrintRelocations || PrintNMethods || PrintExceptionHandlers ||
3669      PrintAssembly || TraceDeoptimization || TraceDependencies ||
3670      (VerifyDependencies && FLAG_IS_CMDLINE(VerifyDependencies))) {
3671    return true;
3672  }
3673
3674#ifdef COMPILER1
3675  if (PrintC1Statistics) {
3676    return true;
3677  }
3678#endif // COMPILER1
3679
3680#ifdef COMPILER2
3681  if (PrintOptoAssembly || PrintOptoStatistics) {
3682    return true;
3683  }
3684#endif // COMPILER2
3685
3686  return false;
3687}
3688#endif // PRODUCT
3689
3690// Parse entry point called from JNI_CreateJavaVM
3691
3692jint Arguments::parse(const JavaVMInitArgs* args) {
3693
3694  // Remaining part of option string
3695  const char* tail;
3696
3697  // If flag "-XX:Flags=flags-file" is used it will be the first option to be processed.
3698  const char* hotspotrc = ".hotspotrc";
3699  bool settings_file_specified = false;
3700  bool needs_hotspotrc_warning = false;
3701
3702  const char* flags_file;
3703  int index;
3704  for (index = 0; index < args->nOptions; index++) {
3705    const JavaVMOption *option = args->options + index;
3706    if (ArgumentsExt::process_options(option)) {
3707      continue;
3708    }
3709    if (match_option(option, "-XX:Flags=", &tail)) {
3710      flags_file = tail;
3711      settings_file_specified = true;
3712      continue;
3713    }
3714    if (match_option(option, "-XX:+PrintVMOptions")) {
3715      PrintVMOptions = true;
3716      continue;
3717    }
3718    if (match_option(option, "-XX:-PrintVMOptions")) {
3719      PrintVMOptions = false;
3720      continue;
3721    }
3722    if (match_option(option, "-XX:+IgnoreUnrecognizedVMOptions")) {
3723      IgnoreUnrecognizedVMOptions = true;
3724      continue;
3725    }
3726    if (match_option(option, "-XX:-IgnoreUnrecognizedVMOptions")) {
3727      IgnoreUnrecognizedVMOptions = false;
3728      continue;
3729    }
3730    if (match_option(option, "-XX:+PrintFlagsInitial")) {
3731      CommandLineFlags::printFlags(tty, false);
3732      vm_exit(0);
3733    }
3734#if INCLUDE_NMT
3735    if (match_option(option, "-XX:NativeMemoryTracking", &tail)) {
3736      // The launcher did not setup nmt environment variable properly.
3737      if (!MemTracker::check_launcher_nmt_support(tail)) {
3738        warning("Native Memory Tracking did not setup properly, using wrong launcher?");
3739      }
3740
3741      // Verify if nmt option is valid.
3742      if (MemTracker::verify_nmt_option()) {
3743        // Late initialization, still in single-threaded mode.
3744        if (MemTracker::tracking_level() >= NMT_summary) {
3745          MemTracker::init();
3746        }
3747      } else {
3748        vm_exit_during_initialization("Syntax error, expecting -XX:NativeMemoryTracking=[off|summary|detail]", NULL);
3749      }
3750      continue;
3751    }
3752#endif
3753
3754
3755#ifndef PRODUCT
3756    if (match_option(option, "-XX:+PrintFlagsWithComments")) {
3757      CommandLineFlags::printFlags(tty, true);
3758      vm_exit(0);
3759    }
3760#endif
3761  }
3762
3763  if (IgnoreUnrecognizedVMOptions) {
3764    // uncast const to modify the flag args->ignoreUnrecognized
3765    *(jboolean*)(&args->ignoreUnrecognized) = true;
3766  }
3767
3768  // Parse specified settings file
3769  if (settings_file_specified) {
3770    if (!process_settings_file(flags_file, true, args->ignoreUnrecognized)) {
3771      return JNI_EINVAL;
3772    }
3773  } else {
3774#ifdef ASSERT
3775    // Parse default .hotspotrc settings file
3776    if (!process_settings_file(".hotspotrc", false, args->ignoreUnrecognized)) {
3777      return JNI_EINVAL;
3778    }
3779#else
3780    struct stat buf;
3781    if (os::stat(hotspotrc, &buf) == 0) {
3782      needs_hotspotrc_warning = true;
3783    }
3784#endif
3785  }
3786
3787  if (PrintVMOptions) {
3788    for (index = 0; index < args->nOptions; index++) {
3789      const JavaVMOption *option = args->options + index;
3790      if (match_option(option, "-XX:", &tail)) {
3791        logOption(tail);
3792      }
3793    }
3794  }
3795
3796  // Parse JavaVMInitArgs structure passed in, as well as JAVA_TOOL_OPTIONS and _JAVA_OPTIONS
3797  jint result = parse_vm_init_args(args);
3798  if (result != JNI_OK) {
3799    return result;
3800  }
3801
3802  // Call get_shared_archive_path() here, after possible SharedArchiveFile option got parsed.
3803  SharedArchivePath = get_shared_archive_path();
3804  if (SharedArchivePath == NULL) {
3805    return JNI_ENOMEM;
3806  }
3807
3808  // Set up VerifySharedSpaces
3809  if (FLAG_IS_DEFAULT(VerifySharedSpaces) && SharedArchiveFile != NULL) {
3810    VerifySharedSpaces = true;
3811  }
3812
3813  // Delay warning until here so that we've had a chance to process
3814  // the -XX:-PrintWarnings flag
3815  if (needs_hotspotrc_warning) {
3816    warning("%s file is present but has been ignored.  "
3817            "Run with -XX:Flags=%s to load the file.",
3818            hotspotrc, hotspotrc);
3819  }
3820
3821#ifdef _ALLBSD_SOURCE  // UseLargePages is not yet supported on BSD.
3822  UNSUPPORTED_OPTION(UseLargePages, "-XX:+UseLargePages");
3823#endif
3824
3825#if INCLUDE_ALL_GCS
3826  #if (defined JAVASE_EMBEDDED || defined ARM)
3827    UNSUPPORTED_OPTION(UseG1GC, "G1 GC");
3828  #endif
3829#endif
3830
3831#ifndef PRODUCT
3832  if (TraceBytecodesAt != 0) {
3833    TraceBytecodes = true;
3834  }
3835  if (CountCompiledCalls) {
3836    if (UseCounterDecay) {
3837      warning("UseCounterDecay disabled because CountCalls is set");
3838      UseCounterDecay = false;
3839    }
3840  }
3841#endif // PRODUCT
3842
3843  if (ScavengeRootsInCode == 0) {
3844    if (!FLAG_IS_DEFAULT(ScavengeRootsInCode)) {
3845      warning("forcing ScavengeRootsInCode non-zero");
3846    }
3847    ScavengeRootsInCode = 1;
3848  }
3849
3850  if (PrintGCDetails) {
3851    // Turn on -verbose:gc options as well
3852    PrintGC = true;
3853  }
3854
3855  // Set object alignment values.
3856  set_object_alignment();
3857
3858#if !INCLUDE_ALL_GCS
3859  force_serial_gc();
3860#endif // INCLUDE_ALL_GCS
3861#if !INCLUDE_CDS
3862  if (DumpSharedSpaces || RequireSharedSpaces) {
3863    jio_fprintf(defaultStream::error_stream(),
3864      "Shared spaces are not supported in this VM\n");
3865    return JNI_ERR;
3866  }
3867  if ((UseSharedSpaces && FLAG_IS_CMDLINE(UseSharedSpaces)) || PrintSharedSpaces) {
3868    warning("Shared spaces are not supported in this VM");
3869    FLAG_SET_DEFAULT(UseSharedSpaces, false);
3870    FLAG_SET_DEFAULT(PrintSharedSpaces, false);
3871  }
3872  no_shared_spaces("CDS Disabled");
3873#endif // INCLUDE_CDS
3874
3875  return JNI_OK;
3876}
3877
3878jint Arguments::apply_ergo() {
3879
3880  // Set flags based on ergonomics.
3881  set_ergonomics_flags();
3882
3883  set_shared_spaces_flags();
3884
3885  // Check the GC selections again.
3886  if (!ArgumentsExt::check_gc_consistency_ergo()) {
3887    return JNI_EINVAL;
3888  }
3889
3890  if (TieredCompilation) {
3891    set_tiered_flags();
3892  } else {
3893    // Check if the policy is valid. Policies 0 and 1 are valid for non-tiered setup.
3894    if (CompilationPolicyChoice >= 2) {
3895      vm_exit_during_initialization(
3896        "Incompatible compilation policy selected", NULL);
3897    }
3898    // Scale CompileThreshold
3899    if (!FLAG_IS_DEFAULT(CompileThresholdScaling)) {
3900      FLAG_SET_ERGO(intx, CompileThreshold, get_scaled_compile_threshold(CompileThreshold));
3901    }
3902  }
3903
3904#ifdef COMPILER2
3905#ifndef PRODUCT
3906  if (PrintIdealGraphLevel > 0) {
3907    FLAG_SET_ERGO(bool, PrintIdealGraph, true);
3908  }
3909#endif
3910#endif
3911
3912  // Set heap size based on available physical memory
3913  set_heap_size();
3914
3915  ArgumentsExt::set_gc_specific_flags();
3916
3917  // Initialize Metaspace flags and alignments
3918  Metaspace::ergo_initialize();
3919
3920  // Set bytecode rewriting flags
3921  set_bytecode_flags();
3922
3923  // Set flags if Aggressive optimization flags (-XX:+AggressiveOpts) enabled
3924  set_aggressive_opts_flags();
3925
3926  // Turn off biased locking for locking debug mode flags,
3927  // which are subtly different from each other but neither works with
3928  // biased locking
3929  if (UseHeavyMonitors
3930#ifdef COMPILER1
3931      || !UseFastLocking
3932#endif // COMPILER1
3933    ) {
3934    if (!FLAG_IS_DEFAULT(UseBiasedLocking) && UseBiasedLocking) {
3935      // flag set to true on command line; warn the user that they
3936      // can't enable biased locking here
3937      warning("Biased Locking is not supported with locking debug flags"
3938              "; ignoring UseBiasedLocking flag." );
3939    }
3940    UseBiasedLocking = false;
3941  }
3942
3943#ifdef ZERO
3944  // Clear flags not supported on zero.
3945  FLAG_SET_DEFAULT(ProfileInterpreter, false);
3946  FLAG_SET_DEFAULT(UseBiasedLocking, false);
3947  LP64_ONLY(FLAG_SET_DEFAULT(UseCompressedOops, false));
3948  LP64_ONLY(FLAG_SET_DEFAULT(UseCompressedClassPointers, false));
3949#endif // CC_INTERP
3950
3951#ifdef COMPILER2
3952  if (!EliminateLocks) {
3953    EliminateNestedLocks = false;
3954  }
3955  if (!Inline) {
3956    IncrementalInline = false;
3957  }
3958#ifndef PRODUCT
3959  if (!IncrementalInline) {
3960    AlwaysIncrementalInline = false;
3961  }
3962#endif
3963  if (!UseTypeSpeculation && FLAG_IS_DEFAULT(TypeProfileLevel)) {
3964    // nothing to use the profiling, turn if off
3965    FLAG_SET_DEFAULT(TypeProfileLevel, 0);
3966  }
3967#endif
3968
3969  if (PrintAssembly && FLAG_IS_DEFAULT(DebugNonSafepoints)) {
3970    warning("PrintAssembly is enabled; turning on DebugNonSafepoints to gain additional output");
3971    DebugNonSafepoints = true;
3972  }
3973
3974  if (FLAG_IS_CMDLINE(CompressedClassSpaceSize) && !UseCompressedClassPointers) {
3975    warning("Setting CompressedClassSpaceSize has no effect when compressed class pointers are not used");
3976  }
3977
3978#ifndef PRODUCT
3979  if (!LogVMOutput && FLAG_IS_DEFAULT(LogVMOutput)) {
3980    if (use_vm_log()) {
3981      LogVMOutput = true;
3982    }
3983  }
3984#endif // PRODUCT
3985
3986  if (PrintCommandLineFlags) {
3987    CommandLineFlags::printSetFlags(tty);
3988  }
3989
3990  // Apply CPU specific policy for the BiasedLocking
3991  if (UseBiasedLocking) {
3992    if (!VM_Version::use_biased_locking() &&
3993        !(FLAG_IS_CMDLINE(UseBiasedLocking))) {
3994      UseBiasedLocking = false;
3995    }
3996  }
3997#ifdef COMPILER2
3998  if (!UseBiasedLocking || EmitSync != 0) {
3999    UseOptoBiasInlining = false;
4000  }
4001#endif
4002
4003  return JNI_OK;
4004}
4005
4006jint Arguments::adjust_after_os() {
4007  if (UseNUMA) {
4008    if (UseParallelGC || UseParallelOldGC) {
4009      if (FLAG_IS_DEFAULT(MinHeapDeltaBytes)) {
4010         FLAG_SET_DEFAULT(MinHeapDeltaBytes, 64*M);
4011      }
4012    }
4013    // UseNUMAInterleaving is set to ON for all collectors and
4014    // platforms when UseNUMA is set to ON. NUMA-aware collectors
4015    // such as the parallel collector for Linux and Solaris will
4016    // interleave old gen and survivor spaces on top of NUMA
4017    // allocation policy for the eden space.
4018    // Non NUMA-aware collectors such as CMS, G1 and Serial-GC on
4019    // all platforms and ParallelGC on Windows will interleave all
4020    // of the heap spaces across NUMA nodes.
4021    if (FLAG_IS_DEFAULT(UseNUMAInterleaving)) {
4022      FLAG_SET_ERGO(bool, UseNUMAInterleaving, true);
4023    }
4024  }
4025  return JNI_OK;
4026}
4027
4028int Arguments::PropertyList_count(SystemProperty* pl) {
4029  int count = 0;
4030  while(pl != NULL) {
4031    count++;
4032    pl = pl->next();
4033  }
4034  return count;
4035}
4036
4037const char* Arguments::PropertyList_get_value(SystemProperty *pl, const char* key) {
4038  assert(key != NULL, "just checking");
4039  SystemProperty* prop;
4040  for (prop = pl; prop != NULL; prop = prop->next()) {
4041    if (strcmp(key, prop->key()) == 0) return prop->value();
4042  }
4043  return NULL;
4044}
4045
4046const char* Arguments::PropertyList_get_key_at(SystemProperty *pl, int index) {
4047  int count = 0;
4048  const char* ret_val = NULL;
4049
4050  while(pl != NULL) {
4051    if(count >= index) {
4052      ret_val = pl->key();
4053      break;
4054    }
4055    count++;
4056    pl = pl->next();
4057  }
4058
4059  return ret_val;
4060}
4061
4062char* Arguments::PropertyList_get_value_at(SystemProperty* pl, int index) {
4063  int count = 0;
4064  char* ret_val = NULL;
4065
4066  while(pl != NULL) {
4067    if(count >= index) {
4068      ret_val = pl->value();
4069      break;
4070    }
4071    count++;
4072    pl = pl->next();
4073  }
4074
4075  return ret_val;
4076}
4077
4078void Arguments::PropertyList_add(SystemProperty** plist, SystemProperty *new_p) {
4079  SystemProperty* p = *plist;
4080  if (p == NULL) {
4081    *plist = new_p;
4082  } else {
4083    while (p->next() != NULL) {
4084      p = p->next();
4085    }
4086    p->set_next(new_p);
4087  }
4088}
4089
4090void Arguments::PropertyList_add(SystemProperty** plist, const char* k, char* v) {
4091  if (plist == NULL)
4092    return;
4093
4094  SystemProperty* new_p = new SystemProperty(k, v, true);
4095  PropertyList_add(plist, new_p);
4096}
4097
4098void Arguments::PropertyList_add(SystemProperty *element) {
4099  PropertyList_add(&_system_properties, element);
4100}
4101
4102// This add maintains unique property key in the list.
4103void Arguments::PropertyList_unique_add(SystemProperty** plist, const char* k, char* v, jboolean append) {
4104  if (plist == NULL)
4105    return;
4106
4107  // If property key exist then update with new value.
4108  SystemProperty* prop;
4109  for (prop = *plist; prop != NULL; prop = prop->next()) {
4110    if (strcmp(k, prop->key()) == 0) {
4111      if (append) {
4112        prop->append_value(v);
4113      } else {
4114        prop->set_value(v);
4115      }
4116      return;
4117    }
4118  }
4119
4120  PropertyList_add(plist, k, v);
4121}
4122
4123// Copies src into buf, replacing "%%" with "%" and "%p" with pid
4124// Returns true if all of the source pointed by src has been copied over to
4125// the destination buffer pointed by buf. Otherwise, returns false.
4126// Notes:
4127// 1. If the length (buflen) of the destination buffer excluding the
4128// NULL terminator character is not long enough for holding the expanded
4129// pid characters, it also returns false instead of returning the partially
4130// expanded one.
4131// 2. The passed in "buflen" should be large enough to hold the null terminator.
4132bool Arguments::copy_expand_pid(const char* src, size_t srclen,
4133                                char* buf, size_t buflen) {
4134  const char* p = src;
4135  char* b = buf;
4136  const char* src_end = &src[srclen];
4137  char* buf_end = &buf[buflen - 1];
4138
4139  while (p < src_end && b < buf_end) {
4140    if (*p == '%') {
4141      switch (*(++p)) {
4142      case '%':         // "%%" ==> "%"
4143        *b++ = *p++;
4144        break;
4145      case 'p':  {       //  "%p" ==> current process id
4146        // buf_end points to the character before the last character so
4147        // that we could write '\0' to the end of the buffer.
4148        size_t buf_sz = buf_end - b + 1;
4149        int ret = jio_snprintf(b, buf_sz, "%d", os::current_process_id());
4150
4151        // if jio_snprintf fails or the buffer is not long enough to hold
4152        // the expanded pid, returns false.
4153        if (ret < 0 || ret >= (int)buf_sz) {
4154          return false;
4155        } else {
4156          b += ret;
4157          assert(*b == '\0', "fail in copy_expand_pid");
4158          if (p == src_end && b == buf_end + 1) {
4159            // reach the end of the buffer.
4160            return true;
4161          }
4162        }
4163        p++;
4164        break;
4165      }
4166      default :
4167        *b++ = '%';
4168      }
4169    } else {
4170      *b++ = *p++;
4171    }
4172  }
4173  *b = '\0';
4174  return (p == src_end); // return false if not all of the source was copied
4175}
4176