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