src/share/vm/runtime/arguments.cpp

Fri, 05 Nov 2010 09:32:08 -0400

author
kamg
date
Fri, 05 Nov 2010 09:32:08 -0400
changeset 2298
35f885165c69
parent 2230
4e22405d98d6
child 2299
9752a6549f2e
permissions
-rw-r--r--

6981737: The java.vm.specification.version property is 1.0, seems like it should be 2.0
Summary: Change property value to 1.<major_version> for major_version >= 7
Reviewed-by: dholmes, acorn

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

mercurial