src/share/vm/runtime/arguments.cpp

Fri, 12 Nov 2010 09:51:43 -0800

author
kvn
date
Fri, 12 Nov 2010 09:51:43 -0800
changeset 2305
0ac62b4d6507
parent 2278
2db84614f61d
child 2308
4110c3e0c50d
permissions
-rw-r--r--

6999491: non-zero COOPs are used when they should not
Summary: HeapBaseMinAddress should be used only for a default heap size calculation.
Reviewed-by: iveresov, jcoomes, dholmes

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

mercurial