src/share/vm/runtime/arguments.cpp

Sat, 19 Jul 2008 17:38:22 -0400

author
coleenp
date
Sat, 19 Jul 2008 17:38:22 -0400
changeset 672
1fdb98a17101
parent 631
d1605aabd0a1
child 674
b727c32788a9
child 677
d95b224e9f17
child 690
ef72a36b968e
permissions
-rw-r--r--

6716785: implicit null checks not triggering with CompressedOops
Summary: allocate alignment-sized page(s) below java heap so that memory accesses at heap_base+1page give signal and cause an implicit null check
Reviewed-by: kvn, jmasa, phh, jcoomes

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

mercurial