src/share/vm/runtime/arguments.cpp

Tue, 20 Nov 2012 11:40:11 +0100

author
brutisso
date
Tue, 20 Nov 2012 11:40:11 +0100
changeset 4296
53715fb1597d
parent 4277
e4f764ddb06a
child 4333
442f942757c0
child 4392
7d42f3b08300
permissions
-rw-r--r--

7198334: UseNUMA modifies system parameters on non-NUMA system
Summary: The flags MinHeapDeltaBytes and UseNUMAInterleaving must be adjusted after the OS have adjusted the UseNUMA flag in the method os::init_2.
Reviewed-by: dholmes, brutisso
Contributed-by: erik.helin@oracle.com

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

mercurial