src/share/vm/runtime/arguments.cpp

Wed, 15 Feb 2012 16:29:40 -0800

author
iveresov
date
Wed, 15 Feb 2012 16:29:40 -0800
changeset 3573
69333a2fbae2
parent 3506
24cae3e4cbaa
child 3579
15085a6eb50c
permissions
-rw-r--r--

7142680: default GC affected by jvm path
Summary: Removed old tiered code
Reviewed-by: never, kvn

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

mercurial