src/share/vm/runtime/arguments.cpp

Thu, 02 Aug 2012 14:29:12 -0700

author
asaha
date
Thu, 02 Aug 2012 14:29:12 -0700
changeset 4213
6b5a3d18fe0e
parent 4212
fe4a4ea5bed9
parent 3907
90d5a592ea8f
child 4216
e4d10261499c
permissions
-rw-r--r--

Merge

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

mercurial