1 /*
2 * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 *
23 */
24
25 #include "precompiled.hpp"
26 #include "classfile/classLoader.hpp"
27 #include "classfile/javaAssertions.hpp"
28 #include "classfile/stringTable.hpp"
29 #include "classfile/symbolTable.hpp"
30 #include "code/codeCacheExtensions.hpp"
31 #include "gc/shared/cardTableRS.hpp"
32 #include "gc/shared/genCollectedHeap.hpp"
33 #include "gc/shared/referenceProcessor.hpp"
34 #include "gc/shared/taskqueue.hpp"
35 #include "logging/log.hpp"
36 #include "logging/logTag.hpp"
37 #include "logging/logConfiguration.hpp"
38 #include "memory/allocation.inline.hpp"
39 #include "memory/universe.inline.hpp"
40 #include "oops/oop.inline.hpp"
41 #include "prims/jvmtiExport.hpp"
42 #include "runtime/arguments.hpp"
43 #include "runtime/arguments_ext.hpp"
44 #include "runtime/commandLineFlagConstraintList.hpp"
45 #include "runtime/commandLineFlagRangeList.hpp"
46 #include "runtime/globals.hpp"
47 #include "runtime/globals_extension.hpp"
48 #include "runtime/java.hpp"
49 #include "runtime/os.hpp"
50 #include "runtime/vm_version.hpp"
51 #include "services/management.hpp"
52 #include "services/memTracker.hpp"
53 #include "utilities/defaultStream.hpp"
54 #include "utilities/macros.hpp"
55 #include "utilities/stringUtils.hpp"
56 #if INCLUDE_JVMCI
57 #include "jvmci/jvmciRuntime.hpp"
58 #endif
59 #if INCLUDE_ALL_GCS
60 #include "gc/cms/compactibleFreeListSpace.hpp"
61 #include "gc/g1/g1CollectedHeap.inline.hpp"
62 #include "gc/parallel/parallelScavengeHeap.hpp"
63 #endif // INCLUDE_ALL_GCS
64
65 // Note: This is a special bug reporting site for the JVM
66 #define DEFAULT_VENDOR_URL_BUG "http://bugreport.java.com/bugreport/crash.jsp"
67 #define DEFAULT_JAVA_LAUNCHER "generic"
68
69 #define UNSUPPORTED_GC_OPTION(gc) \
70 do { \
71 if (gc) { \
72 if (FLAG_IS_CMDLINE(gc)) { \
73 warning(#gc " is not supported in this VM. Using Serial GC."); \
74 } \
75 FLAG_SET_DEFAULT(gc, false); \
76 } \
77 } while(0)
78
79 char* Arguments::_jvm_flags_file = NULL;
80 char** Arguments::_jvm_flags_array = NULL;
81 int Arguments::_num_jvm_flags = 0;
82 char** Arguments::_jvm_args_array = NULL;
83 int Arguments::_num_jvm_args = 0;
84 char* Arguments::_java_command = NULL;
85 SystemProperty* Arguments::_system_properties = NULL;
86 const char* Arguments::_gc_log_filename = NULL;
87 bool Arguments::_has_profile = false;
88 size_t Arguments::_conservative_max_heap_alignment = 0;
89 size_t Arguments::_min_heap_size = 0;
90 Arguments::Mode Arguments::_mode = _mixed;
91 bool Arguments::_java_compiler = false;
92 bool Arguments::_xdebug_mode = false;
93 const char* Arguments::_java_vendor_url_bug = DEFAULT_VENDOR_URL_BUG;
94 const char* Arguments::_sun_java_launcher = DEFAULT_JAVA_LAUNCHER;
95 int Arguments::_sun_java_launcher_pid = -1;
96 bool Arguments::_sun_java_launcher_is_altjvm = false;
97
98 // These parameters are reset in method parse_vm_init_args()
99 bool Arguments::_AlwaysCompileLoopMethods = AlwaysCompileLoopMethods;
100 bool Arguments::_UseOnStackReplacement = UseOnStackReplacement;
101 bool Arguments::_BackgroundCompilation = BackgroundCompilation;
102 bool Arguments::_ClipInlining = ClipInlining;
103 intx Arguments::_Tier3InvokeNotifyFreqLog = Tier3InvokeNotifyFreqLog;
104 intx Arguments::_Tier4InvocationThreshold = Tier4InvocationThreshold;
105
106 char* Arguments::SharedArchivePath = NULL;
107
108 AgentLibraryList Arguments::_libraryList;
109 AgentLibraryList Arguments::_agentList;
110
111 abort_hook_t Arguments::_abort_hook = NULL;
112 exit_hook_t Arguments::_exit_hook = NULL;
113 vfprintf_hook_t Arguments::_vfprintf_hook = NULL;
114
115
116 SystemProperty *Arguments::_sun_boot_library_path = NULL;
117 SystemProperty *Arguments::_java_library_path = NULL;
118 SystemProperty *Arguments::_java_home = NULL;
119 SystemProperty *Arguments::_java_class_path = NULL;
120 SystemProperty *Arguments::_sun_boot_class_path = NULL;
121
122 char* Arguments::_ext_dirs = NULL;
123
124 // Check if head of 'option' matches 'name', and sets 'tail' to the remaining
125 // part of the option string.
126 static bool match_option(const JavaVMOption *option, const char* name,
127 const char** tail) {
128 size_t len = strlen(name);
129 if (strncmp(option->optionString, name, len) == 0) {
130 *tail = option->optionString + len;
131 return true;
132 } else {
133 return false;
134 }
135 }
136
137 // Check if 'option' matches 'name'. No "tail" is allowed.
138 static bool match_option(const JavaVMOption *option, const char* name) {
139 const char* tail = NULL;
140 bool result = match_option(option, name, &tail);
141 if (tail != NULL && *tail == '\0') {
142 return result;
143 } else {
144 return false;
145 }
146 }
147
148 // Return true if any of the strings in null-terminated array 'names' matches.
149 // If tail_allowed is true, then the tail must begin with a colon; otherwise,
150 // the option must match exactly.
151 static bool match_option(const JavaVMOption* option, const char** names, const char** tail,
152 bool tail_allowed) {
153 for (/* empty */; *names != NULL; ++names) {
154 if (match_option(option, *names, tail)) {
155 if (**tail == '\0' || tail_allowed && **tail == ':') {
156 return true;
157 }
158 }
159 }
160 return false;
161 }
162
163 static void logOption(const char* opt) {
164 if (PrintVMOptions) {
165 jio_fprintf(defaultStream::output_stream(), "VM option '%s'\n", opt);
166 }
167 }
168
169 // Process java launcher properties.
170 void Arguments::process_sun_java_launcher_properties(JavaVMInitArgs* args) {
171 // See if sun.java.launcher, sun.java.launcher.is_altjvm or
172 // sun.java.launcher.pid is defined.
173 // Must do this before setting up other system properties,
174 // as some of them may depend on launcher type.
175 for (int index = 0; index < args->nOptions; index++) {
176 const JavaVMOption* option = args->options + index;
177 const char* tail;
178
179 if (match_option(option, "-Dsun.java.launcher=", &tail)) {
180 process_java_launcher_argument(tail, option->extraInfo);
181 continue;
182 }
183 if (match_option(option, "-Dsun.java.launcher.is_altjvm=", &tail)) {
184 if (strcmp(tail, "true") == 0) {
185 _sun_java_launcher_is_altjvm = true;
186 }
187 continue;
188 }
189 if (match_option(option, "-Dsun.java.launcher.pid=", &tail)) {
190 _sun_java_launcher_pid = atoi(tail);
191 continue;
192 }
193 }
194 }
195
196 // Initialize system properties key and value.
197 void Arguments::init_system_properties() {
198 PropertyList_add(&_system_properties, new SystemProperty("java.vm.specification.name",
199 "Java Virtual Machine Specification", false));
200 PropertyList_add(&_system_properties, new SystemProperty("java.vm.version", VM_Version::vm_release(), false));
201 PropertyList_add(&_system_properties, new SystemProperty("java.vm.name", VM_Version::vm_name(), false));
202 PropertyList_add(&_system_properties, new SystemProperty("java.vm.info", VM_Version::vm_info_string(), true));
203 PropertyList_add(&_system_properties, new SystemProperty("jdk.debug", VM_Version::jdk_debug_level(), false));
204
205 // Following are JVMTI agent writable properties.
206 // Properties values are set to NULL and they are
207 // os specific they are initialized in os::init_system_properties_values().
208 _sun_boot_library_path = new SystemProperty("sun.boot.library.path", NULL, true);
209 _java_library_path = new SystemProperty("java.library.path", NULL, true);
210 _java_home = new SystemProperty("java.home", NULL, true);
211 _sun_boot_class_path = new SystemProperty("sun.boot.class.path", NULL, true);
212
213 _java_class_path = new SystemProperty("java.class.path", "", true);
214
215 // Add to System Property list.
216 PropertyList_add(&_system_properties, _sun_boot_library_path);
217 PropertyList_add(&_system_properties, _java_library_path);
218 PropertyList_add(&_system_properties, _java_home);
219 PropertyList_add(&_system_properties, _java_class_path);
220 PropertyList_add(&_system_properties, _sun_boot_class_path);
221
222 // Set OS specific system properties values
223 os::init_system_properties_values();
224
225 JVMCI_ONLY(JVMCIRuntime::init_system_properties(&_system_properties);)
226 }
227
228 // Update/Initialize System properties after JDK version number is known
229 void Arguments::init_version_specific_system_properties() {
230 enum { bufsz = 16 };
231 char buffer[bufsz];
232 const char* spec_vendor = "Oracle Corporation";
233 uint32_t spec_version = JDK_Version::current().major_version();
234
235 jio_snprintf(buffer, bufsz, UINT32_FORMAT, spec_version);
236
237 PropertyList_add(&_system_properties,
238 new SystemProperty("java.vm.specification.vendor", spec_vendor, false));
239 PropertyList_add(&_system_properties,
240 new SystemProperty("java.vm.specification.version", buffer, false));
241 PropertyList_add(&_system_properties,
242 new SystemProperty("java.vm.vendor", VM_Version::vm_vendor(), false));
243 }
244
245 /*
246 * -XX argument processing:
247 *
248 * -XX arguments are defined in several places, such as:
249 * globals.hpp, globals_<cpu>.hpp, globals_<os>.hpp, <compiler>_globals.hpp, or <gc>_globals.hpp.
250 * -XX arguments are parsed in parse_argument().
251 * -XX argument bounds checking is done in check_vm_args_consistency().
252 *
253 * Over time -XX arguments may change. There are mechanisms to handle common cases:
254 *
255 * ALIASED: An option that is simply another name for another option. This is often
256 * part of the process of deprecating a flag, but not all aliases need
257 * to be deprecated.
258 *
259 * Create an alias for an option by adding the old and new option names to the
260 * "aliased_jvm_flags" table. Delete the old variable from globals.hpp (etc).
261 *
262 * DEPRECATED: An option that is supported, but a warning is printed to let the user know that
263 * support may be removed in the future. Both regular and aliased options may be
264 * deprecated.
265 *
266 * Add a deprecation warning for an option (or alias) by adding an entry in the
267 * "special_jvm_flags" table and setting the "deprecated_in" field.
268 * Often an option "deprecated" in one major release will
269 * be made "obsolete" in the next. In this case the entry should also have it's
270 * "obsolete_in" field set.
271 *
272 * OBSOLETE: An option that has been removed (and deleted from globals.hpp), but is still accepted
273 * on the command line. A warning is printed to let the user know that option might not
274 * be accepted in the future.
275 *
276 * Add an obsolete warning for an option by adding an entry in the "special_jvm_flags"
277 * table and setting the "obsolete_in" field.
278 *
279 * EXPIRED: A deprecated or obsolete option that has an "accept_until" version less than or equal
280 * to the current JDK version. The system will flatly refuse to admit the existence of
281 * the flag. This allows a flag to die automatically over JDK releases.
282 *
283 * Note that manual cleanup of expired options should be done at major JDK version upgrades:
284 * - Newly expired options should be removed from the special_jvm_flags and aliased_jvm_flags tables.
285 * - Newly obsolete or expired deprecated options should have their global variable
286 * definitions removed (from globals.hpp, etc) and related implementations removed.
287 *
288 * Recommended approach for removing options:
289 *
290 * To remove options commonly used by customers (e.g. product, commercial -XX options), use
291 * the 3-step model adding major release numbers to the deprecate, obsolete and expire columns.
292 *
293 * To remove internal options (e.g. diagnostic, experimental, develop options), use
294 * a 2-step model adding major release numbers to the obsolete and expire columns.
295 *
296 * To change the name of an option, use the alias table as well as a 2-step
297 * model adding major release numbers to the deprecate and expire columns.
298 * Think twice about aliasing commonly used customer options.
299 *
300 * There are times when it is appropriate to leave a future release number as undefined.
301 *
302 * Tests: Aliases should be tested in VMAliasOptions.java.
303 * Deprecated options should be tested in VMDeprecatedOptions.java.
304 */
305
306 // Obsolete or deprecated -XX flag.
307 typedef struct {
308 const char* name;
309 JDK_Version deprecated_in; // When the deprecation warning started (or "undefined").
310 JDK_Version obsolete_in; // When the obsolete warning started (or "undefined").
311 JDK_Version expired_in; // When the option expires (or "undefined").
312 } SpecialFlag;
313
314 // The special_jvm_flags table declares options that are being deprecated and/or obsoleted. The
315 // "deprecated_in" or "obsolete_in" fields may be set to "undefined", but not both.
316 // When the JDK version reaches 'deprecated_in' limit, the JVM will process this flag on
317 // the command-line as usual, but will issue a warning.
318 // When the JDK version reaches 'obsolete_in' limit, the JVM will continue accepting this flag on
319 // the command-line, while issuing a warning and ignoring the flag value.
320 // Once the JDK version reaches 'expired_in' limit, the JVM will flatly refuse to admit the
321 // existence of the flag.
322 //
323 // MANUAL CLEANUP ON JDK VERSION UPDATES:
324 // This table ensures that the handling of options will update automatically when the JDK
325 // version is incremented, but the source code needs to be cleanup up manually:
326 // - As "deprecated" options age into "obsolete" or "expired" options, the associated "globals"
327 // variable should be removed, as well as users of the variable.
328 // - As "deprecated" options age into "obsolete" options, move the entry into the
329 // "Obsolete Flags" section of the table.
330 // - All expired options should be removed from the table.
331 static SpecialFlag const special_jvm_flags[] = {
332 // -------------- Deprecated Flags --------------
333 // --- Non-alias flags - sorted by obsolete_in then expired_in:
334 { "MaxGCMinorPauseMillis", JDK_Version::jdk(8), JDK_Version::undefined(), JDK_Version::undefined() },
335 { "UseParNewGC", JDK_Version::jdk(9), JDK_Version::undefined(), JDK_Version::jdk(10) },
336 { "ConvertSleepToYield", JDK_Version::jdk(9), JDK_Version::jdk(10), JDK_Version::jdk(11) },
337 { "ConvertYieldToSleep", JDK_Version::jdk(9), JDK_Version::jdk(10), JDK_Version::jdk(11) },
338
339 // --- Deprecated alias flags (see also aliased_jvm_flags) - sorted by obsolete_in then expired_in:
340 { "DefaultMaxRAMFraction", JDK_Version::jdk(8), JDK_Version::undefined(), JDK_Version::undefined() },
341 { "CreateMinidumpOnCrash", JDK_Version::jdk(9), JDK_Version::undefined(), JDK_Version::undefined() },
342 { "CMSMarkStackSizeMax", JDK_Version::jdk(9), JDK_Version::undefined(), JDK_Version::jdk(10) },
343 { "CMSMarkStackSize", JDK_Version::jdk(9), JDK_Version::undefined(), JDK_Version::jdk(10) },
344 { "G1MarkStackSize", JDK_Version::jdk(9), JDK_Version::undefined(), JDK_Version::jdk(10) },
345 { "ParallelMarkingThreads", JDK_Version::jdk(9), JDK_Version::undefined(), JDK_Version::jdk(10) },
346 { "ParallelCMSThreads", JDK_Version::jdk(9), JDK_Version::undefined(), JDK_Version::jdk(10) },
347
348 // -------------- Obsolete Flags - sorted by expired_in --------------
349 { "UseOldInlining", JDK_Version::undefined(), JDK_Version::jdk(9), JDK_Version::jdk(10) },
350 { "SafepointPollOffset", JDK_Version::undefined(), JDK_Version::jdk(9), JDK_Version::jdk(10) },
351 { "UseBoundThreads", JDK_Version::undefined(), JDK_Version::jdk(9), JDK_Version::jdk(10) },
352 { "DefaultThreadPriority", JDK_Version::undefined(), JDK_Version::jdk(9), JDK_Version::jdk(10) },
353 { "NoYieldsInMicrolock", JDK_Version::undefined(), JDK_Version::jdk(9), JDK_Version::jdk(10) },
354 { "BackEdgeThreshold", JDK_Version::undefined(), JDK_Version::jdk(9), JDK_Version::jdk(10) },
355 { "UseNewReflection", JDK_Version::undefined(), JDK_Version::jdk(9), JDK_Version::jdk(10) },
356 { "ReflectionWrapResolutionErrors",JDK_Version::undefined(), JDK_Version::jdk(9), JDK_Version::jdk(10) },
357 { "VerifyReflectionBytecodes", JDK_Version::undefined(), JDK_Version::jdk(9), JDK_Version::jdk(10) },
358 { "AutoShutdownNMT", JDK_Version::undefined(), JDK_Version::jdk(9), JDK_Version::jdk(10) },
359 { "NmethodSweepFraction", JDK_Version::undefined(), JDK_Version::jdk(9), JDK_Version::jdk(10) },
360 { "NmethodSweepCheckInterval", JDK_Version::undefined(), JDK_Version::jdk(9), JDK_Version::jdk(10) },
361 { "CodeCacheMinimumFreeSpace", JDK_Version::undefined(), JDK_Version::jdk(9), JDK_Version::jdk(10) },
362 #ifndef ZERO
363 { "UseFastAccessorMethods", JDK_Version::undefined(), JDK_Version::jdk(9), JDK_Version::jdk(10) },
364 { "UseFastEmptyMethods", JDK_Version::undefined(), JDK_Version::jdk(9), JDK_Version::jdk(10) },
365 #endif // ZERO
366 { "UseCompilerSafepoints", JDK_Version::undefined(), JDK_Version::jdk(9), JDK_Version::jdk(10) },
367 { "AdaptiveSizePausePolicy", JDK_Version::undefined(), JDK_Version::jdk(9), JDK_Version::jdk(10) },
368 { "ParallelGCRetainPLAB", JDK_Version::undefined(), JDK_Version::jdk(9), JDK_Version::jdk(10) },
369 { "ThreadSafetyMargin", JDK_Version::undefined(), JDK_Version::jdk(9), JDK_Version::jdk(10) },
370 { "LazyBootClassLoader", JDK_Version::undefined(), JDK_Version::jdk(9), JDK_Version::jdk(10) },
371 { "StarvationMonitorInterval", JDK_Version::undefined(), JDK_Version::jdk(9), JDK_Version::jdk(10) },
372 { "PreInflateSpin", JDK_Version::undefined(), JDK_Version::jdk(9), JDK_Version::jdk(10) },
373 { "JNIDetachReleasesMonitors", JDK_Version::undefined(), JDK_Version::jdk(9), JDK_Version::jdk(10) },
374 { "UseAltSigs", JDK_Version::undefined(), JDK_Version::jdk(9), JDK_Version::jdk(10) },
375
376 #ifdef TEST_VERIFY_SPECIAL_JVM_FLAGS
377 { "dep > obs", JDK_Version::jdk(9), JDK_Version::jdk(8), JDK_Version::undefined() },
378 { "dep > exp ", JDK_Version::jdk(9), JDK_Version::undefined(), JDK_Version::jdk(8) },
379 { "obs > exp ", JDK_Version::undefined(), JDK_Version::jdk(9), JDK_Version::jdk(8) },
380 { "not deprecated or obsolete", JDK_Version::undefined(), JDK_Version::undefined(), JDK_Version::jdk(9) },
381 { "dup option", JDK_Version::jdk(9), JDK_Version::undefined(), JDK_Version::undefined() },
382 { "dup option", JDK_Version::jdk(9), JDK_Version::undefined(), JDK_Version::undefined() },
383 { "BytecodeVerificationRemote", JDK_Version::undefined(), JDK_Version::jdk(9), JDK_Version::undefined() },
384 #endif
385
386 { NULL, JDK_Version(0), JDK_Version(0) }
387 };
388
389 // Flags that are aliases for other flags.
390 typedef struct {
391 const char* alias_name;
392 const char* real_name;
393 } AliasedFlag;
394
395 static AliasedFlag const aliased_jvm_flags[] = {
396 { "DefaultMaxRAMFraction", "MaxRAMFraction" },
397 { "CMSMarkStackSizeMax", "MarkStackSizeMax" },
398 { "CMSMarkStackSize", "MarkStackSize" },
399 { "G1MarkStackSize", "MarkStackSize" },
400 { "ParallelMarkingThreads", "ConcGCThreads" },
401 { "ParallelCMSThreads", "ConcGCThreads" },
402 { "CreateMinidumpOnCrash", "CreateCoredumpOnCrash" },
403 { NULL, NULL}
404 };
405
406 static AliasedLoggingFlag const aliased_logging_flags[] = {
407 { "TraceClassLoading", LogLevel::Info, true, LogTag::_classload },
408 { "TraceClassPaths", LogLevel::Info, true, LogTag::_classpath },
409 { "TraceClassResolution", LogLevel::Info, true, LogTag::_classresolve },
410 { "TraceClassUnloading", LogLevel::Info, true, LogTag::_classunload },
411 { "TraceExceptions", LogLevel::Info, true, LogTag::_exceptions },
412 { "TraceMonitorInflation", LogLevel::Debug, true, LogTag::_monitorinflation },
413 { NULL, LogLevel::Off, false, LogTag::__NO_TAG }
414 };
415
416 // Return true if "v" is less than "other", where "other" may be "undefined".
417 static bool version_less_than(JDK_Version v, JDK_Version other) {
418 assert(!v.is_undefined(), "must be defined");
419 if (!other.is_undefined() && v.compare(other) >= 0) {
420 return false;
421 } else {
422 return true;
423 }
424 }
425
426 static bool lookup_special_flag(const char *flag_name, SpecialFlag& flag) {
427 for (size_t i = 0; special_jvm_flags[i].name != NULL; i++) {
428 if ((strcmp(special_jvm_flags[i].name, flag_name) == 0)) {
429 flag = special_jvm_flags[i];
430 return true;
431 }
432 }
433 return false;
434 }
435
436 bool Arguments::is_obsolete_flag(const char *flag_name, JDK_Version* version) {
437 assert(version != NULL, "Must provide a version buffer");
438 SpecialFlag flag;
439 if (lookup_special_flag(flag_name, flag)) {
440 if (!flag.obsolete_in.is_undefined()) {
441 if (version_less_than(JDK_Version::current(), flag.expired_in)) {
442 *version = flag.obsolete_in;
443 return true;
444 }
445 }
446 }
447 return false;
448 }
449
450 int Arguments::is_deprecated_flag(const char *flag_name, JDK_Version* version) {
451 assert(version != NULL, "Must provide a version buffer");
452 SpecialFlag flag;
453 if (lookup_special_flag(flag_name, flag)) {
454 if (!flag.deprecated_in.is_undefined()) {
455 if (version_less_than(JDK_Version::current(), flag.obsolete_in) &&
456 version_less_than(JDK_Version::current(), flag.expired_in)) {
457 *version = flag.deprecated_in;
458 return 1;
459 } else {
460 return -1;
461 }
462 }
463 }
464 return 0;
465 }
466
467 const char* Arguments::real_flag_name(const char *flag_name) {
468 for (size_t i = 0; aliased_jvm_flags[i].alias_name != NULL; i++) {
469 const AliasedFlag& flag_status = aliased_jvm_flags[i];
470 if (strcmp(flag_status.alias_name, flag_name) == 0) {
471 return flag_status.real_name;
472 }
473 }
474 return flag_name;
475 }
476
477 #ifdef ASSERT
478 static bool lookup_special_flag(const char *flag_name, size_t skip_index) {
479 for (size_t i = 0; special_jvm_flags[i].name != NULL; i++) {
480 if ((i != skip_index) && (strcmp(special_jvm_flags[i].name, flag_name) == 0)) {
481 return true;
482 }
483 }
484 return false;
485 }
486
487 static bool verify_special_jvm_flags() {
488 bool success = true;
489 for (size_t i = 0; special_jvm_flags[i].name != NULL; i++) {
490 const SpecialFlag& flag = special_jvm_flags[i];
491 if (lookup_special_flag(flag.name, i)) {
492 warning("Duplicate special flag declaration \"%s\"", flag.name);
493 success = false;
494 }
495 if (flag.deprecated_in.is_undefined() &&
496 flag.obsolete_in.is_undefined()) {
497 warning("Special flag entry \"%s\" must declare version deprecated and/or obsoleted in.", flag.name);
498 success = false;
499 }
500
501 if (!flag.deprecated_in.is_undefined()) {
502 if (!version_less_than(flag.deprecated_in, flag.obsolete_in)) {
503 warning("Special flag entry \"%s\" must be deprecated before obsoleted.", flag.name);
504 success = false;
505 }
506
507 if (!version_less_than(flag.deprecated_in, flag.expired_in)) {
508 warning("Special flag entry \"%s\" must be deprecated before expired.", flag.name);
509 success = false;
510 }
511 }
512
513 if (!flag.obsolete_in.is_undefined()) {
514 if (!version_less_than(flag.obsolete_in, flag.expired_in)) {
515 warning("Special flag entry \"%s\" must be obsoleted before expired.", flag.name);
516 success = false;
517 }
518
519 // if flag has become obsolete it should not have a "globals" flag defined anymore.
520 if (!version_less_than(JDK_Version::current(), flag.obsolete_in)) {
521 if (Flag::find_flag(flag.name) != NULL) {
522 warning("Global variable for obsolete special flag entry \"%s\" should be removed", flag.name);
523 success = false;
524 }
525 }
526 }
527
528 if (!flag.expired_in.is_undefined()) {
529 // if flag has become expired it should not have a "globals" flag defined anymore.
530 if (!version_less_than(JDK_Version::current(), flag.expired_in)) {
531 if (Flag::find_flag(flag.name) != NULL) {
532 warning("Global variable for expired flag entry \"%s\" should be removed", flag.name);
533 success = false;
534 }
535 }
536 }
537
538 }
539 return success;
540 }
541 #endif
542
543 // Constructs the system class path (aka boot class path) from the following
544 // components, in order:
545 //
546 // prefix // from -Xbootclasspath/p:...
547 // base // from os::get_system_properties() or -Xbootclasspath=
548 // suffix // from -Xbootclasspath/a:...
549 //
550 // This could be AllStatic, but it isn't needed after argument processing is
551 // complete.
552 class SysClassPath: public StackObj {
553 public:
554 SysClassPath(const char* base);
555 ~SysClassPath();
556
557 inline void set_base(const char* base);
558 inline void add_prefix(const char* prefix);
559 inline void add_suffix_to_prefix(const char* suffix);
560 inline void add_suffix(const char* suffix);
561 inline void reset_path(const char* base);
562
563 inline const char* get_base() const { return _items[_scp_base]; }
564 inline const char* get_prefix() const { return _items[_scp_prefix]; }
565 inline const char* get_suffix() const { return _items[_scp_suffix]; }
566
567 // Combine all the components into a single c-heap-allocated string; caller
568 // must free the string if/when no longer needed.
569 char* combined_path();
570
571 private:
572 // Utility routines.
573 static char* add_to_path(const char* path, const char* str, bool prepend);
574 static char* add_jars_to_path(char* path, const char* directory);
575
576 inline void reset_item_at(int index);
577
578 // Array indices for the items that make up the sysclasspath. All except the
579 // base are allocated in the C heap and freed by this class.
580 enum {
581 _scp_prefix, // from -Xbootclasspath/p:...
582 _scp_base, // the default sysclasspath
583 _scp_suffix, // from -Xbootclasspath/a:...
584 _scp_nitems // the number of items, must be last.
585 };
586
587 const char* _items[_scp_nitems];
588 };
589
590 SysClassPath::SysClassPath(const char* base) {
591 memset(_items, 0, sizeof(_items));
592 _items[_scp_base] = base;
593 }
594
595 SysClassPath::~SysClassPath() {
596 // Free everything except the base.
597 for (int i = 0; i < _scp_nitems; ++i) {
598 if (i != _scp_base) reset_item_at(i);
599 }
600 }
601
602 inline void SysClassPath::set_base(const char* base) {
603 _items[_scp_base] = base;
604 }
605
606 inline void SysClassPath::add_prefix(const char* prefix) {
607 _items[_scp_prefix] = add_to_path(_items[_scp_prefix], prefix, true);
608 }
609
610 inline void SysClassPath::add_suffix_to_prefix(const char* suffix) {
611 _items[_scp_prefix] = add_to_path(_items[_scp_prefix], suffix, false);
612 }
613
614 inline void SysClassPath::add_suffix(const char* suffix) {
615 _items[_scp_suffix] = add_to_path(_items[_scp_suffix], suffix, false);
616 }
617
618 inline void SysClassPath::reset_item_at(int index) {
619 assert(index < _scp_nitems && index != _scp_base, "just checking");
620 if (_items[index] != NULL) {
621 FREE_C_HEAP_ARRAY(char, _items[index]);
622 _items[index] = NULL;
623 }
624 }
625
626 inline void SysClassPath::reset_path(const char* base) {
627 // Clear the prefix and suffix.
628 reset_item_at(_scp_prefix);
629 reset_item_at(_scp_suffix);
630 set_base(base);
631 }
632
633 //------------------------------------------------------------------------------
634
635
636 // Combine the bootclasspath elements, some of which may be null, into a single
637 // c-heap-allocated string.
638 char* SysClassPath::combined_path() {
639 assert(_items[_scp_base] != NULL, "empty default sysclasspath");
640
641 size_t lengths[_scp_nitems];
642 size_t total_len = 0;
643
644 const char separator = *os::path_separator();
645
646 // Get the lengths.
647 int i;
648 for (i = 0; i < _scp_nitems; ++i) {
649 if (_items[i] != NULL) {
650 lengths[i] = strlen(_items[i]);
651 // Include space for the separator char (or a NULL for the last item).
652 total_len += lengths[i] + 1;
653 }
654 }
655 assert(total_len > 0, "empty sysclasspath not allowed");
656
657 // Copy the _items to a single string.
658 char* cp = NEW_C_HEAP_ARRAY(char, total_len, mtInternal);
659 char* cp_tmp = cp;
660 for (i = 0; i < _scp_nitems; ++i) {
661 if (_items[i] != NULL) {
662 memcpy(cp_tmp, _items[i], lengths[i]);
663 cp_tmp += lengths[i];
664 *cp_tmp++ = separator;
665 }
666 }
667 *--cp_tmp = '\0'; // Replace the extra separator.
668 return cp;
669 }
670
671 // Note: path must be c-heap-allocated (or NULL); it is freed if non-null.
672 char*
673 SysClassPath::add_to_path(const char* path, const char* str, bool prepend) {
674 char *cp;
675
676 assert(str != NULL, "just checking");
677 if (path == NULL) {
678 size_t len = strlen(str) + 1;
679 cp = NEW_C_HEAP_ARRAY(char, len, mtInternal);
680 memcpy(cp, str, len); // copy the trailing null
681 } else {
682 const char separator = *os::path_separator();
683 size_t old_len = strlen(path);
684 size_t str_len = strlen(str);
685 size_t len = old_len + str_len + 2;
686
687 if (prepend) {
688 cp = NEW_C_HEAP_ARRAY(char, len, mtInternal);
689 char* cp_tmp = cp;
690 memcpy(cp_tmp, str, str_len);
691 cp_tmp += str_len;
692 *cp_tmp = separator;
693 memcpy(++cp_tmp, path, old_len + 1); // copy the trailing null
694 FREE_C_HEAP_ARRAY(char, path);
695 } else {
696 cp = REALLOC_C_HEAP_ARRAY(char, path, len, mtInternal);
697 char* cp_tmp = cp + old_len;
698 *cp_tmp = separator;
699 memcpy(++cp_tmp, str, str_len + 1); // copy the trailing null
700 }
701 }
702 return cp;
703 }
704
705 // Scan the directory and append any jar or zip files found to path.
706 // Note: path must be c-heap-allocated (or NULL); it is freed if non-null.
707 char* SysClassPath::add_jars_to_path(char* path, const char* directory) {
708 DIR* dir = os::opendir(directory);
709 if (dir == NULL) return path;
710
711 char dir_sep[2] = { '\0', '\0' };
712 size_t directory_len = strlen(directory);
713 const char fileSep = *os::file_separator();
714 if (directory[directory_len - 1] != fileSep) dir_sep[0] = fileSep;
715
716 /* Scan the directory for jars/zips, appending them to path. */
717 struct dirent *entry;
718 char *dbuf = NEW_C_HEAP_ARRAY(char, os::readdir_buf_size(directory), mtInternal);
719 while ((entry = os::readdir(dir, (dirent *) dbuf)) != NULL) {
720 const char* name = entry->d_name;
721 const char* ext = name + strlen(name) - 4;
722 bool isJarOrZip = ext > name &&
723 (os::file_name_strcmp(ext, ".jar") == 0 ||
724 os::file_name_strcmp(ext, ".zip") == 0);
725 if (isJarOrZip) {
726 char* jarpath = NEW_C_HEAP_ARRAY(char, directory_len + 2 + strlen(name), mtInternal);
727 sprintf(jarpath, "%s%s%s", directory, dir_sep, name);
728 path = add_to_path(path, jarpath, false);
729 FREE_C_HEAP_ARRAY(char, jarpath);
730 }
731 }
732 FREE_C_HEAP_ARRAY(char, dbuf);
733 os::closedir(dir);
734 return path;
735 }
736
737 // Parses a memory size specification string.
738 static bool atomull(const char *s, julong* result) {
739 julong n = 0;
740 int args_read = 0;
741 bool is_hex = false;
742 // Skip leading 0[xX] for hexadecimal
743 if (*s =='0' && (*(s+1) == 'x' || *(s+1) == 'X')) {
744 s += 2;
745 is_hex = true;
746 args_read = sscanf(s, JULONG_FORMAT_X, &n);
747 } else {
748 args_read = sscanf(s, JULONG_FORMAT, &n);
749 }
750 if (args_read != 1) {
751 return false;
752 }
753 while (*s != '\0' && (isdigit(*s) || (is_hex && isxdigit(*s)))) {
754 s++;
755 }
756 // 4705540: illegal if more characters are found after the first non-digit
757 if (strlen(s) > 1) {
758 return false;
759 }
760 switch (*s) {
761 case 'T': case 't':
762 *result = n * G * K;
763 // Check for overflow.
764 if (*result/((julong)G * K) != n) return false;
765 return true;
766 case 'G': case 'g':
767 *result = n * G;
768 if (*result/G != n) return false;
769 return true;
770 case 'M': case 'm':
771 *result = n * M;
772 if (*result/M != n) return false;
773 return true;
774 case 'K': case 'k':
775 *result = n * K;
776 if (*result/K != n) return false;
777 return true;
778 case '\0':
779 *result = n;
780 return true;
781 default:
782 return false;
783 }
784 }
785
786 Arguments::ArgsRange Arguments::check_memory_size(julong size, julong min_size) {
787 if (size < min_size) return arg_too_small;
788 // Check that size will fit in a size_t (only relevant on 32-bit)
789 if (size > max_uintx) return arg_too_big;
790 return arg_in_range;
791 }
792
793 // Describe an argument out of range error
794 void Arguments::describe_range_error(ArgsRange errcode) {
795 switch(errcode) {
796 case arg_too_big:
797 jio_fprintf(defaultStream::error_stream(),
798 "The specified size exceeds the maximum "
799 "representable size.\n");
800 break;
801 case arg_too_small:
802 case arg_unreadable:
803 case arg_in_range:
804 // do nothing for now
805 break;
806 default:
807 ShouldNotReachHere();
808 }
809 }
810
811 static bool set_bool_flag(const char* name, bool value, Flag::Flags origin) {
812 if (CommandLineFlags::boolAtPut(name, &value, origin) == Flag::SUCCESS) {
813 return true;
814 } else {
815 return false;
816 }
817 }
818
819 static bool set_fp_numeric_flag(const char* name, char* value, Flag::Flags origin) {
820 char* end;
821 errno = 0;
822 double v = strtod(value, &end);
823 if ((errno != 0) || (*end != 0)) {
824 return false;
825 }
826
827 if (CommandLineFlags::doubleAtPut(name, &v, origin) == Flag::SUCCESS) {
828 return true;
829 }
830 return false;
831 }
832
833 static bool set_numeric_flag(const char* name, char* value, Flag::Flags origin) {
834 julong v;
835 int int_v;
836 intx intx_v;
837 bool is_neg = false;
838 Flag* result = Flag::find_flag(name, strlen(name));
839
840 if (result == NULL) {
841 return false;
842 }
843
844 // Check the sign first since atomull() parses only unsigned values.
845 if (*value == '-') {
846 if (!result->is_intx() && !result->is_int()) {
847 return false;
848 }
849 value++;
850 is_neg = true;
851 }
852 if (!atomull(value, &v)) {
853 return false;
854 }
855 if (result->is_int()) {
856 int_v = (int) v;
857 if (is_neg) {
858 int_v = -int_v;
859 }
860 return CommandLineFlags::intAtPut(result, &int_v, origin) == Flag::SUCCESS;
861 } else if (result->is_uint()) {
862 uint uint_v = (uint) v;
863 return CommandLineFlags::uintAtPut(result, &uint_v, origin) == Flag::SUCCESS;
864 } else if (result->is_intx()) {
865 intx_v = (intx) v;
866 if (is_neg) {
867 intx_v = -intx_v;
868 }
869 return CommandLineFlags::intxAtPut(result, &intx_v, origin) == Flag::SUCCESS;
870 } else if (result->is_uintx()) {
871 uintx uintx_v = (uintx) v;
872 return CommandLineFlags::uintxAtPut(result, &uintx_v, origin) == Flag::SUCCESS;
873 } else if (result->is_uint64_t()) {
874 uint64_t uint64_t_v = (uint64_t) v;
875 return CommandLineFlags::uint64_tAtPut(result, &uint64_t_v, origin) == Flag::SUCCESS;
876 } else if (result->is_size_t()) {
877 size_t size_t_v = (size_t) v;
878 return CommandLineFlags::size_tAtPut(result, &size_t_v, origin) == Flag::SUCCESS;
879 } else {
880 return false;
881 }
882 }
883
884 static bool set_string_flag(const char* name, const char* value, Flag::Flags origin) {
885 if (CommandLineFlags::ccstrAtPut(name, &value, origin) != Flag::SUCCESS) return false;
886 // Contract: CommandLineFlags always returns a pointer that needs freeing.
887 FREE_C_HEAP_ARRAY(char, value);
888 return true;
889 }
890
891 static bool append_to_string_flag(const char* name, const char* new_value, Flag::Flags origin) {
892 const char* old_value = "";
893 if (CommandLineFlags::ccstrAt(name, &old_value) != Flag::SUCCESS) return false;
894 size_t old_len = old_value != NULL ? strlen(old_value) : 0;
895 size_t new_len = strlen(new_value);
896 const char* value;
897 char* free_this_too = NULL;
898 if (old_len == 0) {
899 value = new_value;
900 } else if (new_len == 0) {
901 value = old_value;
902 } else {
903 char* buf = NEW_C_HEAP_ARRAY(char, old_len + 1 + new_len + 1, mtInternal);
904 // each new setting adds another LINE to the switch:
905 sprintf(buf, "%s\n%s", old_value, new_value);
906 value = buf;
907 free_this_too = buf;
908 }
909 (void) CommandLineFlags::ccstrAtPut(name, &value, origin);
910 // CommandLineFlags always returns a pointer that needs freeing.
911 FREE_C_HEAP_ARRAY(char, value);
912 if (free_this_too != NULL) {
913 // CommandLineFlags made its own copy, so I must delete my own temp. buffer.
914 FREE_C_HEAP_ARRAY(char, free_this_too);
915 }
916 return true;
917 }
918
919 const char* Arguments::handle_aliases_and_deprecation(const char* arg, bool warn) {
920 const char* real_name = real_flag_name(arg);
921 JDK_Version since = JDK_Version();
922 switch (is_deprecated_flag(arg, &since)) {
923 case -1:
924 return NULL; // obsolete or expired, don't process normally
925 case 0:
926 return real_name;
927 case 1: {
928 if (warn) {
929 char version[256];
930 since.to_string(version, sizeof(version));
931 if (real_name != arg) {
932 warning("Option %s was deprecated in version %s and will likely be removed in a future release. Use option %s instead.",
933 arg, version, real_name);
934 } else {
935 warning("Option %s was deprecated in version %s and will likely be removed in a future release.",
936 arg, version);
937 }
938 }
939 return real_name;
940 }
941 }
942 ShouldNotReachHere();
943 return NULL;
944 }
945
946 AliasedLoggingFlag Arguments::catch_logging_aliases(const char* name){
947 for (size_t i = 0; aliased_logging_flags[i].alias_name != NULL; i++) {
948 const AliasedLoggingFlag& alf = aliased_logging_flags[i];
949 if (strcmp(alf.alias_name, name) == 0) {
950 return alf;
951 }
952 }
953 AliasedLoggingFlag a = {NULL, LogLevel::Off, false, LogTag::__NO_TAG};
954 return a;
955 }
956
957 bool Arguments::parse_argument(const char* arg, Flag::Flags origin) {
958
959 // range of acceptable characters spelled out for portability reasons
960 #define NAME_RANGE "[abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_]"
961 #define BUFLEN 255
962 char name[BUFLEN+1];
963 char dummy;
964 const char* real_name;
965 bool warn_if_deprecated = true;
966 AliasedLoggingFlag alf;
967
968 if (sscanf(arg, "-%" XSTR(BUFLEN) NAME_RANGE "%c", name, &dummy) == 1) {
969 alf = catch_logging_aliases(name);
970 if (alf.alias_name != NULL){
971 LogConfiguration::configure_stdout(LogLevel::Off, alf.exactMatch, alf.tag, LogTag::__NO_TAG);
972 return true;
973 }
974 real_name = handle_aliases_and_deprecation(name, warn_if_deprecated);
975 if (real_name == NULL) {
976 return false;
977 }
978 return set_bool_flag(real_name, false, origin);
979 }
980 if (sscanf(arg, "+%" XSTR(BUFLEN) NAME_RANGE "%c", name, &dummy) == 1) {
981 alf = catch_logging_aliases(name);
982 if (alf.alias_name != NULL){
983 LogConfiguration::configure_stdout(alf.level, alf.exactMatch, alf.tag, LogTag::__NO_TAG);
984 return true;
985 }
986 real_name = handle_aliases_and_deprecation(name, warn_if_deprecated);
987 if (real_name == NULL) {
988 return false;
989 }
990 return set_bool_flag(real_name, true, origin);
991 }
992
993 char punct;
994 if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "%c", name, &punct) == 2 && punct == '=') {
995 const char* value = strchr(arg, '=') + 1;
996 Flag* flag;
997
998 // this scanf pattern matches both strings (handled here) and numbers (handled later))
999 real_name = handle_aliases_and_deprecation(name, warn_if_deprecated);
1000 if (real_name == NULL) {
1001 return false;
1002 }
1003 flag = Flag::find_flag(real_name);
1004 if (flag != NULL && flag->is_ccstr()) {
1005 if (flag->ccstr_accumulates()) {
1006 return append_to_string_flag(real_name, value, origin);
1007 } else {
1008 if (value[0] == '\0') {
1009 value = NULL;
1010 }
1011 return set_string_flag(real_name, value, origin);
1012 }
1013 } else {
1014 warn_if_deprecated = false; // if arg is deprecated, we've already done warning...
1015 }
1016 }
1017
1018 if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE ":%c", name, &punct) == 2 && punct == '=') {
1019 const char* value = strchr(arg, '=') + 1;
1020 // -XX:Foo:=xxx will reset the string flag to the given value.
1021 if (value[0] == '\0') {
1022 value = NULL;
1023 }
1024 real_name = handle_aliases_and_deprecation(name, warn_if_deprecated);
1025 if (real_name == NULL) {
1026 return false;
1027 }
1028 return set_string_flag(real_name, value, origin);
1029 }
1030
1031 #define SIGNED_FP_NUMBER_RANGE "[-0123456789.eE+]"
1032 #define SIGNED_NUMBER_RANGE "[-0123456789]"
1033 #define NUMBER_RANGE "[0123456789eE+-]"
1034 char value[BUFLEN + 1];
1035 char value2[BUFLEN + 1];
1036 if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "=" "%" XSTR(BUFLEN) SIGNED_NUMBER_RANGE "." "%" XSTR(BUFLEN) NUMBER_RANGE "%c", name, value, value2, &dummy) == 3) {
1037 // Looks like a floating-point number -- try again with more lenient format string
1038 if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "=" "%" XSTR(BUFLEN) SIGNED_FP_NUMBER_RANGE "%c", name, value, &dummy) == 2) {
1039 real_name = handle_aliases_and_deprecation(name, warn_if_deprecated);
1040 if (real_name == NULL) {
1041 return false;
1042 }
1043 return set_fp_numeric_flag(real_name, value, origin);
1044 }
1045 }
1046
1047 #define VALUE_RANGE "[-kmgtxKMGTX0123456789abcdefABCDEF]"
1048 if (sscanf(arg, "%" XSTR(BUFLEN) NAME_RANGE "=" "%" XSTR(BUFLEN) VALUE_RANGE "%c", name, value, &dummy) == 2) {
1049 real_name = handle_aliases_and_deprecation(name, warn_if_deprecated);
1050 if (real_name == NULL) {
1051 return false;
1052 }
1053 return set_numeric_flag(real_name, value, origin);
1054 }
1055
1056 return false;
1057 }
1058
1059 void Arguments::add_string(char*** bldarray, int* count, const char* arg) {
1060 assert(bldarray != NULL, "illegal argument");
1061
1062 if (arg == NULL) {
1063 return;
1064 }
1065
1066 int new_count = *count + 1;
1067
1068 // expand the array and add arg to the last element
1069 if (*bldarray == NULL) {
1070 *bldarray = NEW_C_HEAP_ARRAY(char*, new_count, mtInternal);
1071 } else {
1072 *bldarray = REALLOC_C_HEAP_ARRAY(char*, *bldarray, new_count, mtInternal);
1073 }
1074 (*bldarray)[*count] = os::strdup_check_oom(arg);
1075 *count = new_count;
1076 }
1077
1078 void Arguments::build_jvm_args(const char* arg) {
1079 add_string(&_jvm_args_array, &_num_jvm_args, arg);
1080 }
1081
1082 void Arguments::build_jvm_flags(const char* arg) {
1083 add_string(&_jvm_flags_array, &_num_jvm_flags, arg);
1084 }
1085
1086 // utility function to return a string that concatenates all
1087 // strings in a given char** array
1088 const char* Arguments::build_resource_string(char** args, int count) {
1089 if (args == NULL || count == 0) {
1090 return NULL;
1091 }
1092 size_t length = strlen(args[0]) + 1; // add 1 for the null terminator
1093 for (int i = 1; i < count; i++) {
1094 length += strlen(args[i]) + 1; // add 1 for a space
1095 }
1096 char* s = NEW_RESOURCE_ARRAY(char, length);
1097 strcpy(s, args[0]);
1098 for (int j = 1; j < count; j++) {
1099 strcat(s, " ");
1100 strcat(s, args[j]);
1101 }
1102 return (const char*) s;
1103 }
1104
1105 void Arguments::print_on(outputStream* st) {
1106 st->print_cr("VM Arguments:");
1107 if (num_jvm_flags() > 0) {
1108 st->print("jvm_flags: "); print_jvm_flags_on(st);
1109 st->cr();
1110 }
1111 if (num_jvm_args() > 0) {
1112 st->print("jvm_args: "); print_jvm_args_on(st);
1113 st->cr();
1114 }
1115 st->print_cr("java_command: %s", java_command() ? java_command() : "<unknown>");
1116 if (_java_class_path != NULL) {
1117 char* path = _java_class_path->value();
1118 st->print_cr("java_class_path (initial): %s", strlen(path) == 0 ? "<not set>" : path );
1119 }
1120 st->print_cr("Launcher Type: %s", _sun_java_launcher);
1121 }
1122
1123 void Arguments::print_summary_on(outputStream* st) {
1124 // Print the command line. Environment variables that are helpful for
1125 // reproducing the problem are written later in the hs_err file.
1126 // flags are from setting file
1127 if (num_jvm_flags() > 0) {
1128 st->print_raw("Settings File: ");
1129 print_jvm_flags_on(st);
1130 st->cr();
1131 }
1132 // args are the command line and environment variable arguments.
1133 st->print_raw("Command Line: ");
1134 if (num_jvm_args() > 0) {
1135 print_jvm_args_on(st);
1136 }
1137 // this is the classfile and any arguments to the java program
1138 if (java_command() != NULL) {
1139 st->print("%s", java_command());
1140 }
1141 st->cr();
1142 }
1143
1144 void Arguments::print_jvm_flags_on(outputStream* st) {
1145 if (_num_jvm_flags > 0) {
1146 for (int i=0; i < _num_jvm_flags; i++) {
1147 st->print("%s ", _jvm_flags_array[i]);
1148 }
1149 }
1150 }
1151
1152 void Arguments::print_jvm_args_on(outputStream* st) {
1153 if (_num_jvm_args > 0) {
1154 for (int i=0; i < _num_jvm_args; i++) {
1155 st->print("%s ", _jvm_args_array[i]);
1156 }
1157 }
1158 }
1159
1160 bool Arguments::process_argument(const char* arg,
1161 jboolean ignore_unrecognized,
1162 Flag::Flags origin) {
1163 JDK_Version since = JDK_Version();
1164
1165 if (parse_argument(arg, origin)) {
1166 return true;
1167 }
1168
1169 // Determine if the flag has '+', '-', or '=' characters.
1170 bool has_plus_minus = (*arg == '+' || *arg == '-');
1171 const char* const argname = has_plus_minus ? arg + 1 : arg;
1172
1173 size_t arg_len;
1174 const char* equal_sign = strchr(argname, '=');
1175 if (equal_sign == NULL) {
1176 arg_len = strlen(argname);
1177 } else {
1178 arg_len = equal_sign - argname;
1179 }
1180
1181 // Only make the obsolete check for valid arguments.
1182 if (arg_len <= BUFLEN) {
1183 // Construct a string which consists only of the argument name without '+', '-', or '='.
1184 char stripped_argname[BUFLEN+1];
1185 strncpy(stripped_argname, argname, arg_len);
1186 stripped_argname[arg_len] = '\0'; // strncpy may not null terminate.
1187
1188 if (is_obsolete_flag(stripped_argname, &since)) {
1189 char version[256];
1190 since.to_string(version, sizeof(version));
1191 warning("Ignoring option %s; support was removed in %s", stripped_argname, version);
1192 return true;
1193 }
1194 }
1195
1196 // For locked flags, report a custom error message if available.
1197 // Otherwise, report the standard unrecognized VM option.
1198 Flag* found_flag = Flag::find_flag((const char*)argname, arg_len, true, true);
1199 if (found_flag != NULL) {
1200 char locked_message_buf[BUFLEN];
1201 Flag::MsgType msg_type = found_flag->get_locked_message(locked_message_buf, BUFLEN);
1202 if (strlen(locked_message_buf) == 0) {
1203 if (found_flag->is_bool() && !has_plus_minus) {
1204 jio_fprintf(defaultStream::error_stream(),
1205 "Missing +/- setting for VM option '%s'\n", argname);
1206 } else if (!found_flag->is_bool() && has_plus_minus) {
1207 jio_fprintf(defaultStream::error_stream(),
1208 "Unexpected +/- setting in VM option '%s'\n", argname);
1209 } else {
1210 jio_fprintf(defaultStream::error_stream(),
1211 "Improperly specified VM option '%s'\n", argname);
1212 }
1213 } else {
1214 #ifdef PRODUCT
1215 bool mismatched = ((msg_type == Flag::NOTPRODUCT_FLAG_BUT_PRODUCT_BUILD) ||
1216 (msg_type == Flag::DEVELOPER_FLAG_BUT_PRODUCT_BUILD));
1217 if (ignore_unrecognized && mismatched) {
1218 return true;
1219 }
1220 #endif
1221 jio_fprintf(defaultStream::error_stream(), "%s", locked_message_buf);
1222 }
1223 } else {
1224 if (ignore_unrecognized) {
1225 return true;
1226 }
1227 jio_fprintf(defaultStream::error_stream(),
1228 "Unrecognized VM option '%s'\n", argname);
1229 Flag* fuzzy_matched = Flag::fuzzy_match((const char*)argname, arg_len, true);
1230 if (fuzzy_matched != NULL) {
1231 jio_fprintf(defaultStream::error_stream(),
1232 "Did you mean '%s%s%s'? ",
1233 (fuzzy_matched->is_bool()) ? "(+/-)" : "",
1234 fuzzy_matched->_name,
1235 (fuzzy_matched->is_bool()) ? "" : "=<value>");
1236 }
1237 }
1238
1239 // allow for commandline "commenting out" options like -XX:#+Verbose
1240 return arg[0] == '#';
1241 }
1242
1243 bool Arguments::process_settings_file(const char* file_name, bool should_exist, jboolean ignore_unrecognized) {
1244 FILE* stream = fopen(file_name, "rb");
1245 if (stream == NULL) {
1246 if (should_exist) {
1247 jio_fprintf(defaultStream::error_stream(),
1248 "Could not open settings file %s\n", file_name);
1249 return false;
1250 } else {
1251 return true;
1252 }
1253 }
1254
1255 char token[1024];
1256 int pos = 0;
1257
1258 bool in_white_space = true;
1259 bool in_comment = false;
1260 bool in_quote = false;
1261 char quote_c = 0;
1262 bool result = true;
1263
1264 int c = getc(stream);
1265 while(c != EOF && pos < (int)(sizeof(token)-1)) {
1266 if (in_white_space) {
1267 if (in_comment) {
1268 if (c == '\n') in_comment = false;
1269 } else {
1270 if (c == '#') in_comment = true;
1271 else if (!isspace(c)) {
1272 in_white_space = false;
1273 token[pos++] = c;
1274 }
1275 }
1276 } else {
1277 if (c == '\n' || (!in_quote && isspace(c))) {
1278 // token ends at newline, or at unquoted whitespace
1279 // this allows a way to include spaces in string-valued options
1280 token[pos] = '\0';
1281 logOption(token);
1282 result &= process_argument(token, ignore_unrecognized, Flag::CONFIG_FILE);
1283 build_jvm_flags(token);
1284 pos = 0;
1285 in_white_space = true;
1286 in_quote = false;
1287 } else if (!in_quote && (c == '\'' || c == '"')) {
1288 in_quote = true;
1289 quote_c = c;
1290 } else if (in_quote && (c == quote_c)) {
1291 in_quote = false;
1292 } else {
1293 token[pos++] = c;
1294 }
1295 }
1296 c = getc(stream);
1297 }
1298 if (pos > 0) {
1299 token[pos] = '\0';
1300 result &= process_argument(token, ignore_unrecognized, Flag::CONFIG_FILE);
1301 build_jvm_flags(token);
1302 }
1303 fclose(stream);
1304 return result;
1305 }
1306
1307 //=============================================================================================================
1308 // Parsing of properties (-D)
1309
1310 const char* Arguments::get_property(const char* key) {
1311 return PropertyList_get_value(system_properties(), key);
1312 }
1313
1314 bool Arguments::add_property(const char* prop) {
1315 const char* eq = strchr(prop, '=');
1316 const char* key;
1317 const char* value = "";
1318
1319 if (eq == NULL) {
1320 // property doesn't have a value, thus use passed string
1321 key = prop;
1322 } else {
1323 // property have a value, thus extract it and save to the
1324 // allocated string
1325 size_t key_len = eq - prop;
1326 char* tmp_key = AllocateHeap(key_len + 1, mtInternal);
1327
1328 strncpy(tmp_key, prop, key_len);
1329 tmp_key[key_len] = '\0';
1330 key = tmp_key;
1331
1332 value = &prop[key_len + 1];
1333 }
1334
1335 if (strcmp(key, "java.compiler") == 0) {
1336 process_java_compiler_argument(value);
1337 // Record value in Arguments, but let it get passed to Java.
1338 } else if (strcmp(key, "sun.java.launcher.is_altjvm") == 0 ||
1339 strcmp(key, "sun.java.launcher.pid") == 0) {
1340 // sun.java.launcher.is_altjvm and sun.java.launcher.pid property are
1341 // private and are processed in process_sun_java_launcher_properties();
1342 // the sun.java.launcher property is passed on to the java application
1343 } else if (strcmp(key, "sun.boot.library.path") == 0) {
1344 PropertyList_unique_add(&_system_properties, key, value, true);
1345 } else {
1346 if (strcmp(key, "sun.java.command") == 0) {
1347 char *old_java_command = _java_command;
1348 _java_command = os::strdup_check_oom(value, mtInternal);
1349 if (old_java_command != NULL) {
1350 os::free(old_java_command);
1351 }
1352 } else if (strcmp(key, "java.vendor.url.bug") == 0) {
1353 const char* old_java_vendor_url_bug = _java_vendor_url_bug;
1354 // save it in _java_vendor_url_bug, so JVM fatal error handler can access
1355 // its value without going through the property list or making a Java call.
1356 _java_vendor_url_bug = os::strdup_check_oom(value, mtInternal);
1357 if (old_java_vendor_url_bug != DEFAULT_VENDOR_URL_BUG) {
1358 assert(old_java_vendor_url_bug != NULL, "_java_vendor_url_bug is NULL");
1359 os::free((void *)old_java_vendor_url_bug);
1360 }
1361 }
1362
1363 // Create new property and add at the end of the list
1364 PropertyList_unique_add(&_system_properties, key, value);
1365 }
1366
1367 if (key != prop) {
1368 // SystemProperty copy passed value, thus free previously allocated
1369 // memory
1370 FreeHeap((void *)key);
1371 }
1372
1373 return true;
1374 }
1375
1376 //===========================================================================================================
1377 // Setting int/mixed/comp mode flags
1378
1379 void Arguments::set_mode_flags(Mode mode) {
1380 // Set up default values for all flags.
1381 // If you add a flag to any of the branches below,
1382 // add a default value for it here.
1383 set_java_compiler(false);
1384 _mode = mode;
1385
1386 // Ensure Agent_OnLoad has the correct initial values.
1387 // This may not be the final mode; mode may change later in onload phase.
1388 PropertyList_unique_add(&_system_properties, "java.vm.info",
1389 VM_Version::vm_info_string(), false);
1390
1391 UseInterpreter = true;
1392 UseCompiler = true;
1393 UseLoopCounter = true;
1394
1395 // Default values may be platform/compiler dependent -
1396 // use the saved values
1397 ClipInlining = Arguments::_ClipInlining;
1398 AlwaysCompileLoopMethods = Arguments::_AlwaysCompileLoopMethods;
1399 UseOnStackReplacement = Arguments::_UseOnStackReplacement;
1400 BackgroundCompilation = Arguments::_BackgroundCompilation;
1401 if (TieredCompilation) {
1402 if (FLAG_IS_DEFAULT(Tier3InvokeNotifyFreqLog)) {
1403 Tier3InvokeNotifyFreqLog = Arguments::_Tier3InvokeNotifyFreqLog;
1404 }
1405 if (FLAG_IS_DEFAULT(Tier4InvocationThreshold)) {
1406 Tier4InvocationThreshold = Arguments::_Tier4InvocationThreshold;
1407 }
1408 }
1409
1410 // Change from defaults based on mode
1411 switch (mode) {
1412 default:
1413 ShouldNotReachHere();
1414 break;
1415 case _int:
1416 UseCompiler = false;
1417 UseLoopCounter = false;
1418 AlwaysCompileLoopMethods = false;
1419 UseOnStackReplacement = false;
1420 break;
1421 case _mixed:
1422 // same as default
1423 break;
1424 case _comp:
1425 UseInterpreter = false;
1426 BackgroundCompilation = false;
1427 ClipInlining = false;
1428 // Be much more aggressive in tiered mode with -Xcomp and exercise C2 more.
1429 // We will first compile a level 3 version (C1 with full profiling), then do one invocation of it and
1430 // compile a level 4 (C2) and then continue executing it.
1431 if (TieredCompilation) {
1432 Tier3InvokeNotifyFreqLog = 0;
1433 Tier4InvocationThreshold = 0;
1434 }
1435 break;
1436 }
1437 }
1438
1439 #if defined(COMPILER2) || INCLUDE_JVMCI || defined(_LP64) || !INCLUDE_CDS
1440 // Conflict: required to use shared spaces (-Xshare:on), but
1441 // incompatible command line options were chosen.
1442
1443 static void no_shared_spaces(const char* message) {
1444 if (RequireSharedSpaces) {
1445 jio_fprintf(defaultStream::error_stream(),
1446 "Class data sharing is inconsistent with other specified options.\n");
1447 vm_exit_during_initialization("Unable to use shared archive.", message);
1448 } else {
1449 FLAG_SET_DEFAULT(UseSharedSpaces, false);
1450 }
1451 }
1452 #endif
1453
1454 // Returns threshold scaled with the value of scale.
1455 // If scale < 0.0, threshold is returned without scaling.
1456 intx Arguments::scaled_compile_threshold(intx threshold, double scale) {
1457 if (scale == 1.0 || scale < 0.0) {
1458 return threshold;
1459 } else {
1460 return (intx)(threshold * scale);
1461 }
1462 }
1463
1464 // Returns freq_log scaled with the value of scale.
1465 // Returned values are in the range of [0, InvocationCounter::number_of_count_bits + 1].
1466 // If scale < 0.0, freq_log is returned without scaling.
1467 intx Arguments::scaled_freq_log(intx freq_log, double scale) {
1468 // Check if scaling is necessary or if negative value was specified.
1469 if (scale == 1.0 || scale < 0.0) {
1470 return freq_log;
1471 }
1472 // Check values to avoid calculating log2 of 0.
1473 if (scale == 0.0 || freq_log == 0) {
1474 return 0;
1475 }
1476 // Determine the maximum notification frequency value currently supported.
1477 // The largest mask value that the interpreter/C1 can handle is
1478 // of length InvocationCounter::number_of_count_bits. Mask values are always
1479 // one bit shorter then the value of the notification frequency. Set
1480 // max_freq_bits accordingly.
1481 intx max_freq_bits = InvocationCounter::number_of_count_bits + 1;
1482 intx scaled_freq = scaled_compile_threshold((intx)1 << freq_log, scale);
1483 if (scaled_freq == 0) {
1484 // Return 0 right away to avoid calculating log2 of 0.
1485 return 0;
1486 } else if (scaled_freq > nth_bit(max_freq_bits)) {
1487 return max_freq_bits;
1488 } else {
1489 return log2_intptr(scaled_freq);
1490 }
1491 }
1492
1493 void Arguments::set_tiered_flags() {
1494 // With tiered, set default policy to AdvancedThresholdPolicy, which is 3.
1495 if (FLAG_IS_DEFAULT(CompilationPolicyChoice)) {
1496 FLAG_SET_DEFAULT(CompilationPolicyChoice, 3);
1497 }
1498 if (CompilationPolicyChoice < 2) {
1499 vm_exit_during_initialization(
1500 "Incompatible compilation policy selected", NULL);
1501 }
1502 // Increase the code cache size - tiered compiles a lot more.
1503 if (FLAG_IS_DEFAULT(ReservedCodeCacheSize)) {
1504 FLAG_SET_ERGO(uintx, ReservedCodeCacheSize,
1505 MIN2(CODE_CACHE_DEFAULT_LIMIT, ReservedCodeCacheSize * 5));
1506 }
1507 // Enable SegmentedCodeCache if TieredCompilation is enabled and ReservedCodeCacheSize >= 240M
1508 if (FLAG_IS_DEFAULT(SegmentedCodeCache) && ReservedCodeCacheSize >= 240*M) {
1509 FLAG_SET_ERGO(bool, SegmentedCodeCache, true);
1510 }
1511 if (!UseInterpreter) { // -Xcomp
1512 Tier3InvokeNotifyFreqLog = 0;
1513 Tier4InvocationThreshold = 0;
1514 }
1515
1516 if (CompileThresholdScaling < 0) {
1517 vm_exit_during_initialization("Negative value specified for CompileThresholdScaling", NULL);
1518 }
1519
1520 // Scale tiered compilation thresholds.
1521 // CompileThresholdScaling == 0.0 is equivalent to -Xint and leaves compilation thresholds unchanged.
1522 if (!FLAG_IS_DEFAULT(CompileThresholdScaling) && CompileThresholdScaling > 0.0) {
1523 FLAG_SET_ERGO(intx, Tier0InvokeNotifyFreqLog, scaled_freq_log(Tier0InvokeNotifyFreqLog));
1524 FLAG_SET_ERGO(intx, Tier0BackedgeNotifyFreqLog, scaled_freq_log(Tier0BackedgeNotifyFreqLog));
1525
1526 FLAG_SET_ERGO(intx, Tier3InvocationThreshold, scaled_compile_threshold(Tier3InvocationThreshold));
1527 FLAG_SET_ERGO(intx, Tier3MinInvocationThreshold, scaled_compile_threshold(Tier3MinInvocationThreshold));
1528 FLAG_SET_ERGO(intx, Tier3CompileThreshold, scaled_compile_threshold(Tier3CompileThreshold));
1529 FLAG_SET_ERGO(intx, Tier3BackEdgeThreshold, scaled_compile_threshold(Tier3BackEdgeThreshold));
1530
1531 // Tier2{Invocation,MinInvocation,Compile,Backedge}Threshold should be scaled here
1532 // once these thresholds become supported.
1533
1534 FLAG_SET_ERGO(intx, Tier2InvokeNotifyFreqLog, scaled_freq_log(Tier2InvokeNotifyFreqLog));
1535 FLAG_SET_ERGO(intx, Tier2BackedgeNotifyFreqLog, scaled_freq_log(Tier2BackedgeNotifyFreqLog));
1536
1537 FLAG_SET_ERGO(intx, Tier3InvokeNotifyFreqLog, scaled_freq_log(Tier3InvokeNotifyFreqLog));
1538 FLAG_SET_ERGO(intx, Tier3BackedgeNotifyFreqLog, scaled_freq_log(Tier3BackedgeNotifyFreqLog));
1539
1540 FLAG_SET_ERGO(intx, Tier23InlineeNotifyFreqLog, scaled_freq_log(Tier23InlineeNotifyFreqLog));
1541
1542 FLAG_SET_ERGO(intx, Tier4InvocationThreshold, scaled_compile_threshold(Tier4InvocationThreshold));
1543 FLAG_SET_ERGO(intx, Tier4MinInvocationThreshold, scaled_compile_threshold(Tier4MinInvocationThreshold));
1544 FLAG_SET_ERGO(intx, Tier4CompileThreshold, scaled_compile_threshold(Tier4CompileThreshold));
1545 FLAG_SET_ERGO(intx, Tier4BackEdgeThreshold, scaled_compile_threshold(Tier4BackEdgeThreshold));
1546 }
1547 }
1548
1549 #if INCLUDE_ALL_GCS
1550 static void disable_adaptive_size_policy(const char* collector_name) {
1551 if (UseAdaptiveSizePolicy) {
1552 if (FLAG_IS_CMDLINE(UseAdaptiveSizePolicy)) {
1553 warning("Disabling UseAdaptiveSizePolicy; it is incompatible with %s.",
1554 collector_name);
1555 }
1556 FLAG_SET_DEFAULT(UseAdaptiveSizePolicy, false);
1557 }
1558 }
1559
1560 void Arguments::set_parnew_gc_flags() {
1561 assert(!UseSerialGC && !UseParallelOldGC && !UseParallelGC && !UseG1GC,
1562 "control point invariant");
1563 assert(UseConcMarkSweepGC, "CMS is expected to be on here");
1564 assert(UseParNewGC, "ParNew should always be used with CMS");
1565
1566 if (FLAG_IS_DEFAULT(ParallelGCThreads)) {
1567 FLAG_SET_DEFAULT(ParallelGCThreads, Abstract_VM_Version::parallel_worker_threads());
1568 assert(ParallelGCThreads > 0, "We should always have at least one thread by default");
1569 } else if (ParallelGCThreads == 0) {
1570 jio_fprintf(defaultStream::error_stream(),
1571 "The ParNew GC can not be combined with -XX:ParallelGCThreads=0\n");
1572 vm_exit(1);
1573 }
1574
1575 // By default YoungPLABSize and OldPLABSize are set to 4096 and 1024 respectively,
1576 // these settings are default for Parallel Scavenger. For ParNew+Tenured configuration
1577 // we set them to 1024 and 1024.
1578 // See CR 6362902.
1579 if (FLAG_IS_DEFAULT(YoungPLABSize)) {
1580 FLAG_SET_DEFAULT(YoungPLABSize, (intx)1024);
1581 }
1582 if (FLAG_IS_DEFAULT(OldPLABSize)) {
1583 FLAG_SET_DEFAULT(OldPLABSize, (intx)1024);
1584 }
1585
1586 // When using compressed oops, we use local overflow stacks,
1587 // rather than using a global overflow list chained through
1588 // the klass word of the object's pre-image.
1589 if (UseCompressedOops && !ParGCUseLocalOverflow) {
1590 if (!FLAG_IS_DEFAULT(ParGCUseLocalOverflow)) {
1591 warning("Forcing +ParGCUseLocalOverflow: needed if using compressed references");
1592 }
1593 FLAG_SET_DEFAULT(ParGCUseLocalOverflow, true);
1594 }
1595 assert(ParGCUseLocalOverflow || !UseCompressedOops, "Error");
1596 }
1597
1598 // Adjust some sizes to suit CMS and/or ParNew needs; these work well on
1599 // sparc/solaris for certain applications, but would gain from
1600 // further optimization and tuning efforts, and would almost
1601 // certainly gain from analysis of platform and environment.
1602 void Arguments::set_cms_and_parnew_gc_flags() {
1603 assert(!UseSerialGC && !UseParallelOldGC && !UseParallelGC, "Error");
1604 assert(UseConcMarkSweepGC, "CMS is expected to be on here");
1605 assert(UseParNewGC, "ParNew should always be used with CMS");
1606
1607 // Turn off AdaptiveSizePolicy by default for cms until it is complete.
1608 disable_adaptive_size_policy("UseConcMarkSweepGC");
1609
1610 set_parnew_gc_flags();
1611
1612 size_t max_heap = align_size_down(MaxHeapSize,
1613 CardTableRS::ct_max_alignment_constraint());
1614
1615 // Now make adjustments for CMS
1616 intx tenuring_default = (intx)6;
1617 size_t young_gen_per_worker = CMSYoungGenPerWorker;
1618
1619 // Preferred young gen size for "short" pauses:
1620 // upper bound depends on # of threads and NewRatio.
1621 const size_t preferred_max_new_size_unaligned =
1622 MIN2(max_heap/(NewRatio+1), ScaleForWordSize(young_gen_per_worker * ParallelGCThreads));
1623 size_t preferred_max_new_size =
1624 align_size_up(preferred_max_new_size_unaligned, os::vm_page_size());
1625
1626 // Unless explicitly requested otherwise, size young gen
1627 // for "short" pauses ~ CMSYoungGenPerWorker*ParallelGCThreads
1628
1629 // If either MaxNewSize or NewRatio is set on the command line,
1630 // assume the user is trying to set the size of the young gen.
1631 if (FLAG_IS_DEFAULT(MaxNewSize) && FLAG_IS_DEFAULT(NewRatio)) {
1632
1633 // Set MaxNewSize to our calculated preferred_max_new_size unless
1634 // NewSize was set on the command line and it is larger than
1635 // preferred_max_new_size.
1636 if (!FLAG_IS_DEFAULT(NewSize)) { // NewSize explicitly set at command-line
1637 FLAG_SET_ERGO(size_t, MaxNewSize, MAX2(NewSize, preferred_max_new_size));
1638 } else {
1639 FLAG_SET_ERGO(size_t, MaxNewSize, preferred_max_new_size);
1640 }
1641 log_trace(gc, heap)("CMS ergo set MaxNewSize: " SIZE_FORMAT, MaxNewSize);
1642
1643 // Code along this path potentially sets NewSize and OldSize
1644 log_trace(gc, heap)("CMS set min_heap_size: " SIZE_FORMAT " initial_heap_size: " SIZE_FORMAT " max_heap: " SIZE_FORMAT,
1645 min_heap_size(), InitialHeapSize, max_heap);
1646 size_t min_new = preferred_max_new_size;
1647 if (FLAG_IS_CMDLINE(NewSize)) {
1648 min_new = NewSize;
1649 }
1650 if (max_heap > min_new && min_heap_size() > min_new) {
1651 // Unless explicitly requested otherwise, make young gen
1652 // at least min_new, and at most preferred_max_new_size.
1653 if (FLAG_IS_DEFAULT(NewSize)) {
1654 FLAG_SET_ERGO(size_t, NewSize, MAX2(NewSize, min_new));
1655 FLAG_SET_ERGO(size_t, NewSize, MIN2(preferred_max_new_size, NewSize));
1656 log_trace(gc, heap)("CMS ergo set NewSize: " SIZE_FORMAT, NewSize);
1657 }
1658 // Unless explicitly requested otherwise, size old gen
1659 // so it's NewRatio x of NewSize.
1660 if (FLAG_IS_DEFAULT(OldSize)) {
1661 if (max_heap > NewSize) {
1662 FLAG_SET_ERGO(size_t, OldSize, MIN2(NewRatio*NewSize, max_heap - NewSize));
1663 log_trace(gc, heap)("CMS ergo set OldSize: " SIZE_FORMAT, OldSize);
1664 }
1665 }
1666 }
1667 }
1668 // Unless explicitly requested otherwise, definitely
1669 // promote all objects surviving "tenuring_default" scavenges.
1670 if (FLAG_IS_DEFAULT(MaxTenuringThreshold) &&
1671 FLAG_IS_DEFAULT(SurvivorRatio)) {
1672 FLAG_SET_ERGO(uintx, MaxTenuringThreshold, tenuring_default);
1673 }
1674 // If we decided above (or user explicitly requested)
1675 // `promote all' (via MaxTenuringThreshold := 0),
1676 // prefer minuscule survivor spaces so as not to waste
1677 // space for (non-existent) survivors
1678 if (FLAG_IS_DEFAULT(SurvivorRatio) && MaxTenuringThreshold == 0) {
1679 FLAG_SET_ERGO(uintx, SurvivorRatio, MAX2((uintx)1024, SurvivorRatio));
1680 }
1681
1682 // OldPLABSize is interpreted in CMS as not the size of the PLAB in words,
1683 // but rather the number of free blocks of a given size that are used when
1684 // replenishing the local per-worker free list caches.
1685 if (FLAG_IS_DEFAULT(OldPLABSize)) {
1686 if (!FLAG_IS_DEFAULT(ResizeOldPLAB) && !ResizeOldPLAB) {
1687 // OldPLAB sizing manually turned off: Use a larger default setting,
1688 // unless it was manually specified. This is because a too-low value
1689 // will slow down scavenges.
1690 FLAG_SET_ERGO(size_t, OldPLABSize, CompactibleFreeListSpaceLAB::_default_static_old_plab_size); // default value before 6631166
1691 } else {
1692 FLAG_SET_DEFAULT(OldPLABSize, CompactibleFreeListSpaceLAB::_default_dynamic_old_plab_size); // old CMSParPromoteBlocksToClaim default
1693 }
1694 }
1695
1696 // If either of the static initialization defaults have changed, note this
1697 // modification.
1698 if (!FLAG_IS_DEFAULT(OldPLABSize) || !FLAG_IS_DEFAULT(OldPLABWeight)) {
1699 CompactibleFreeListSpaceLAB::modify_initialization(OldPLABSize, OldPLABWeight);
1700 }
1701
1702 if (!ClassUnloading) {
1703 FLAG_SET_CMDLINE(bool, CMSClassUnloadingEnabled, false);
1704 FLAG_SET_CMDLINE(bool, ExplicitGCInvokesConcurrentAndUnloadsClasses, false);
1705 }
1706
1707 log_trace(gc)("MarkStackSize: %uk MarkStackSizeMax: %uk", (unsigned int) (MarkStackSize / K), (uint) (MarkStackSizeMax / K));
1708 log_trace(gc)("ConcGCThreads: %u", ConcGCThreads);
1709 }
1710 #endif // INCLUDE_ALL_GCS
1711
1712 void set_object_alignment() {
1713 // Object alignment.
1714 assert(is_power_of_2(ObjectAlignmentInBytes), "ObjectAlignmentInBytes must be power of 2");
1715 MinObjAlignmentInBytes = ObjectAlignmentInBytes;
1716 assert(MinObjAlignmentInBytes >= HeapWordsPerLong * HeapWordSize, "ObjectAlignmentInBytes value is too small");
1717 MinObjAlignment = MinObjAlignmentInBytes / HeapWordSize;
1718 assert(MinObjAlignmentInBytes == MinObjAlignment * HeapWordSize, "ObjectAlignmentInBytes value is incorrect");
1719 MinObjAlignmentInBytesMask = MinObjAlignmentInBytes - 1;
1720
1721 LogMinObjAlignmentInBytes = exact_log2(ObjectAlignmentInBytes);
1722 LogMinObjAlignment = LogMinObjAlignmentInBytes - LogHeapWordSize;
1723
1724 // Oop encoding heap max
1725 OopEncodingHeapMax = (uint64_t(max_juint) + 1) << LogMinObjAlignmentInBytes;
1726
1727 if (SurvivorAlignmentInBytes == 0) {
1728 SurvivorAlignmentInBytes = ObjectAlignmentInBytes;
1729 }
1730
1731 #if INCLUDE_ALL_GCS
1732 // Set CMS global values
1733 CompactibleFreeListSpace::set_cms_values();
1734 #endif // INCLUDE_ALL_GCS
1735 }
1736
1737 size_t Arguments::max_heap_for_compressed_oops() {
1738 // Avoid sign flip.
1739 assert(OopEncodingHeapMax > (uint64_t)os::vm_page_size(), "Unusual page size");
1740 // We need to fit both the NULL page and the heap into the memory budget, while
1741 // keeping alignment constraints of the heap. To guarantee the latter, as the
1742 // NULL page is located before the heap, we pad the NULL page to the conservative
1743 // maximum alignment that the GC may ever impose upon the heap.
1744 size_t displacement_due_to_null_page = align_size_up_(os::vm_page_size(),
1745 _conservative_max_heap_alignment);
1746
1747 LP64_ONLY(return OopEncodingHeapMax - displacement_due_to_null_page);
1748 NOT_LP64(ShouldNotReachHere(); return 0);
1749 }
1750
1751 bool Arguments::should_auto_select_low_pause_collector() {
1752 if (UseAutoGCSelectPolicy &&
1753 !FLAG_IS_DEFAULT(MaxGCPauseMillis) &&
1754 (MaxGCPauseMillis <= AutoGCSelectPauseMillis)) {
1755 log_trace(gc)("Automatic selection of the low pause collector based on pause goal of %d (ms)", (int) MaxGCPauseMillis);
1756 return true;
1757 }
1758 return false;
1759 }
1760
1761 void Arguments::set_use_compressed_oops() {
1762 #ifndef ZERO
1763 #ifdef _LP64
1764 // MaxHeapSize is not set up properly at this point, but
1765 // the only value that can override MaxHeapSize if we are
1766 // to use UseCompressedOops is InitialHeapSize.
1767 size_t max_heap_size = MAX2(MaxHeapSize, InitialHeapSize);
1768
1769 if (max_heap_size <= max_heap_for_compressed_oops()) {
1770 #if !defined(COMPILER1) || defined(TIERED)
1771 if (FLAG_IS_DEFAULT(UseCompressedOops)) {
1772 FLAG_SET_ERGO(bool, UseCompressedOops, true);
1773 }
1774 #endif
1775 } else {
1776 if (UseCompressedOops && !FLAG_IS_DEFAULT(UseCompressedOops)) {
1777 warning("Max heap size too large for Compressed Oops");
1778 FLAG_SET_DEFAULT(UseCompressedOops, false);
1779 FLAG_SET_DEFAULT(UseCompressedClassPointers, false);
1780 }
1781 }
1782 #endif // _LP64
1783 #endif // ZERO
1784 }
1785
1786
1787 // NOTE: set_use_compressed_klass_ptrs() must be called after calling
1788 // set_use_compressed_oops().
1789 void Arguments::set_use_compressed_klass_ptrs() {
1790 #ifndef ZERO
1791 #ifdef _LP64
1792 // UseCompressedOops must be on for UseCompressedClassPointers to be on.
1793 if (!UseCompressedOops) {
1794 if (UseCompressedClassPointers) {
1795 warning("UseCompressedClassPointers requires UseCompressedOops");
1796 }
1797 FLAG_SET_DEFAULT(UseCompressedClassPointers, false);
1798 } else {
1799 // Turn on UseCompressedClassPointers too
1800 if (FLAG_IS_DEFAULT(UseCompressedClassPointers)) {
1801 FLAG_SET_ERGO(bool, UseCompressedClassPointers, true);
1802 }
1803 // Check the CompressedClassSpaceSize to make sure we use compressed klass ptrs.
1804 if (UseCompressedClassPointers) {
1805 if (CompressedClassSpaceSize > KlassEncodingMetaspaceMax) {
1806 warning("CompressedClassSpaceSize is too large for UseCompressedClassPointers");
1807 FLAG_SET_DEFAULT(UseCompressedClassPointers, false);
1808 }
1809 }
1810 }
1811 #endif // _LP64
1812 #endif // !ZERO
1813 }
1814
1815 void Arguments::set_conservative_max_heap_alignment() {
1816 // The conservative maximum required alignment for the heap is the maximum of
1817 // the alignments imposed by several sources: any requirements from the heap
1818 // itself, the collector policy and the maximum page size we may run the VM
1819 // with.
1820 size_t heap_alignment = GenCollectedHeap::conservative_max_heap_alignment();
1821 #if INCLUDE_ALL_GCS
1822 if (UseParallelGC) {
1823 heap_alignment = ParallelScavengeHeap::conservative_max_heap_alignment();
1824 } else if (UseG1GC) {
1825 heap_alignment = G1CollectedHeap::conservative_max_heap_alignment();
1826 }
1827 #endif // INCLUDE_ALL_GCS
1828 _conservative_max_heap_alignment = MAX4(heap_alignment,
1829 (size_t)os::vm_allocation_granularity(),
1830 os::max_page_size(),
1831 CollectorPolicy::compute_heap_alignment());
1832 }
1833
1834 void Arguments::select_gc_ergonomically() {
1835 if (os::is_server_class_machine()) {
1836 if (should_auto_select_low_pause_collector()) {
1837 FLAG_SET_ERGO(bool, UseConcMarkSweepGC, true);
1838 } else {
1839 #if defined(JAVASE_EMBEDDED)
1840 FLAG_SET_ERGO(bool, UseParallelGC, true);
1841 #else
1842 FLAG_SET_ERGO(bool, UseG1GC, true);
1843 #endif
1844 }
1845 } else {
1846 FLAG_SET_ERGO(bool, UseSerialGC, true);
1847 }
1848 }
1849
1850 void Arguments::select_gc() {
1851 if (!gc_selected()) {
1852 select_gc_ergonomically();
1853 guarantee(gc_selected(), "No GC selected");
1854 }
1855 }
1856
1857 void Arguments::set_ergonomics_flags() {
1858 select_gc();
1859
1860 #if defined(COMPILER2) || INCLUDE_JVMCI
1861 // Shared spaces work fine with other GCs but causes bytecode rewriting
1862 // to be disabled, which hurts interpreter performance and decreases
1863 // server performance. When -server is specified, keep the default off
1864 // unless it is asked for. Future work: either add bytecode rewriting
1865 // at link time, or rewrite bytecodes in non-shared methods.
1866 if (!DumpSharedSpaces && !RequireSharedSpaces &&
1867 (FLAG_IS_DEFAULT(UseSharedSpaces) || !UseSharedSpaces)) {
1868 no_shared_spaces("COMPILER2 default: -Xshare:auto | off, have to manually setup to on.");
1869 }
1870 #endif
1871
1872 set_conservative_max_heap_alignment();
1873
1874 #ifndef ZERO
1875 #ifdef _LP64
1876 set_use_compressed_oops();
1877
1878 // set_use_compressed_klass_ptrs() must be called after calling
1879 // set_use_compressed_oops().
1880 set_use_compressed_klass_ptrs();
1881
1882 // Also checks that certain machines are slower with compressed oops
1883 // in vm_version initialization code.
1884 #endif // _LP64
1885 #endif // !ZERO
1886
1887 CodeCacheExtensions::set_ergonomics_flags();
1888 }
1889
1890 void Arguments::set_parallel_gc_flags() {
1891 assert(UseParallelGC || UseParallelOldGC, "Error");
1892 // Enable ParallelOld unless it was explicitly disabled (cmd line or rc file).
1893 if (FLAG_IS_DEFAULT(UseParallelOldGC)) {
1894 FLAG_SET_DEFAULT(UseParallelOldGC, true);
1895 }
1896 FLAG_SET_DEFAULT(UseParallelGC, true);
1897
1898 // If no heap maximum was requested explicitly, use some reasonable fraction
1899 // of the physical memory, up to a maximum of 1GB.
1900 FLAG_SET_DEFAULT(ParallelGCThreads,
1901 Abstract_VM_Version::parallel_worker_threads());
1902 if (ParallelGCThreads == 0) {
1903 jio_fprintf(defaultStream::error_stream(),
1904 "The Parallel GC can not be combined with -XX:ParallelGCThreads=0\n");
1905 vm_exit(1);
1906 }
1907
1908 if (UseAdaptiveSizePolicy) {
1909 // We don't want to limit adaptive heap sizing's freedom to adjust the heap
1910 // unless the user actually sets these flags.
1911 if (FLAG_IS_DEFAULT(MinHeapFreeRatio)) {
1912 FLAG_SET_DEFAULT(MinHeapFreeRatio, 0);
1913 }
1914 if (FLAG_IS_DEFAULT(MaxHeapFreeRatio)) {
1915 FLAG_SET_DEFAULT(MaxHeapFreeRatio, 100);
1916 }
1917 }
1918
1919 // If InitialSurvivorRatio or MinSurvivorRatio were not specified, but the
1920 // SurvivorRatio has been set, reset their default values to SurvivorRatio +
1921 // 2. By doing this we make SurvivorRatio also work for Parallel Scavenger.
1922 // See CR 6362902 for details.
1923 if (!FLAG_IS_DEFAULT(SurvivorRatio)) {
1924 if (FLAG_IS_DEFAULT(InitialSurvivorRatio)) {
1925 FLAG_SET_DEFAULT(InitialSurvivorRatio, SurvivorRatio + 2);
1926 }
1927 if (FLAG_IS_DEFAULT(MinSurvivorRatio)) {
1928 FLAG_SET_DEFAULT(MinSurvivorRatio, SurvivorRatio + 2);
1929 }
1930 }
1931
1932 if (UseParallelOldGC) {
1933 // Par compact uses lower default values since they are treated as
1934 // minimums. These are different defaults because of the different
1935 // interpretation and are not ergonomically set.
1936 if (FLAG_IS_DEFAULT(MarkSweepDeadRatio)) {
1937 FLAG_SET_DEFAULT(MarkSweepDeadRatio, 1);
1938 }
1939 }
1940 }
1941
1942 void Arguments::set_g1_gc_flags() {
1943 assert(UseG1GC, "Error");
1944 #if defined(COMPILER1) || INCLUDE_JVMCI
1945 FastTLABRefill = false;
1946 #endif
1947 FLAG_SET_DEFAULT(ParallelGCThreads, Abstract_VM_Version::parallel_worker_threads());
1948 if (ParallelGCThreads == 0) {
1949 assert(!FLAG_IS_DEFAULT(ParallelGCThreads), "The default value for ParallelGCThreads should not be 0.");
1950 vm_exit_during_initialization("The flag -XX:+UseG1GC can not be combined with -XX:ParallelGCThreads=0", NULL);
1951 }
1952
1953 #if INCLUDE_ALL_GCS
1954 if (G1ConcRefinementThreads == 0) {
1955 FLAG_SET_DEFAULT(G1ConcRefinementThreads, ParallelGCThreads);
1956 }
1957 #endif
1958
1959 // MarkStackSize will be set (if it hasn't been set by the user)
1960 // when concurrent marking is initialized.
1961 // Its value will be based upon the number of parallel marking threads.
1962 // But we do set the maximum mark stack size here.
1963 if (FLAG_IS_DEFAULT(MarkStackSizeMax)) {
1964 FLAG_SET_DEFAULT(MarkStackSizeMax, 128 * TASKQUEUE_SIZE);
1965 }
1966
1967 if (FLAG_IS_DEFAULT(GCTimeRatio) || GCTimeRatio == 0) {
1968 // In G1, we want the default GC overhead goal to be higher than
1969 // it is for PS, or the heap might be expanded too aggressively.
1970 // We set it here to ~8%.
1971 FLAG_SET_DEFAULT(GCTimeRatio, 12);
1972 }
1973
1974 log_trace(gc)("MarkStackSize: %uk MarkStackSizeMax: %uk", (unsigned int) (MarkStackSize / K), (uint) (MarkStackSizeMax / K));
1975 log_trace(gc)("ConcGCThreads: %u", ConcGCThreads);
1976 }
1977
1978 #if !INCLUDE_ALL_GCS
1979 #ifdef ASSERT
1980 static bool verify_serial_gc_flags() {
1981 return (UseSerialGC &&
1982 !(UseParNewGC || (UseConcMarkSweepGC) || UseG1GC ||
1983 UseParallelGC || UseParallelOldGC));
1984 }
1985 #endif // ASSERT
1986 #endif // INCLUDE_ALL_GCS
1987
1988 void Arguments::set_gc_specific_flags() {
1989 #if INCLUDE_ALL_GCS
1990 // Set per-collector flags
1991 if (UseParallelGC || UseParallelOldGC) {
1992 set_parallel_gc_flags();
1993 } else if (UseConcMarkSweepGC) {
1994 set_cms_and_parnew_gc_flags();
1995 } else if (UseG1GC) {
1996 set_g1_gc_flags();
1997 }
1998 if (AssumeMP && !UseSerialGC) {
1999 if (FLAG_IS_DEFAULT(ParallelGCThreads) && ParallelGCThreads == 1) {
2000 warning("If the number of processors is expected to increase from one, then"
2001 " you should configure the number of parallel GC threads appropriately"
2002 " using -XX:ParallelGCThreads=N");
2003 }
2004 }
2005 if (MinHeapFreeRatio == 100) {
2006 // Keeping the heap 100% free is hard ;-) so limit it to 99%.
2007 FLAG_SET_ERGO(uintx, MinHeapFreeRatio, 99);
2008 }
2009 #else // INCLUDE_ALL_GCS
2010 assert(verify_serial_gc_flags(), "SerialGC unset");
2011 #endif // INCLUDE_ALL_GCS
2012 }
2013
2014 julong Arguments::limit_by_allocatable_memory(julong limit) {
2015 julong max_allocatable;
2016 julong result = limit;
2017 if (os::has_allocatable_memory_limit(&max_allocatable)) {
2018 result = MIN2(result, max_allocatable / MaxVirtMemFraction);
2019 }
2020 return result;
2021 }
2022
2023 // Use static initialization to get the default before parsing
2024 static const size_t DefaultHeapBaseMinAddress = HeapBaseMinAddress;
2025
2026 void Arguments::set_heap_size() {
2027 const julong phys_mem =
2028 FLAG_IS_DEFAULT(MaxRAM) ? MIN2(os::physical_memory(), (julong)MaxRAM)
2029 : (julong)MaxRAM;
2030
2031 // If the maximum heap size has not been set with -Xmx,
2032 // then set it as fraction of the size of physical memory,
2033 // respecting the maximum and minimum sizes of the heap.
2034 if (FLAG_IS_DEFAULT(MaxHeapSize)) {
2035 julong reasonable_max = phys_mem / MaxRAMFraction;
2036
2037 if (phys_mem <= MaxHeapSize * MinRAMFraction) {
2038 // Small physical memory, so use a minimum fraction of it for the heap
2039 reasonable_max = phys_mem / MinRAMFraction;
2040 } else {
2041 // Not-small physical memory, so require a heap at least
2042 // as large as MaxHeapSize
2043 reasonable_max = MAX2(reasonable_max, (julong)MaxHeapSize);
2044 }
2045 if (!FLAG_IS_DEFAULT(ErgoHeapSizeLimit) && ErgoHeapSizeLimit != 0) {
2046 // Limit the heap size to ErgoHeapSizeLimit
2047 reasonable_max = MIN2(reasonable_max, (julong)ErgoHeapSizeLimit);
2048 }
2049 if (UseCompressedOops) {
2050 // Limit the heap size to the maximum possible when using compressed oops
2051 julong max_coop_heap = (julong)max_heap_for_compressed_oops();
2052
2053 // HeapBaseMinAddress can be greater than default but not less than.
2054 if (!FLAG_IS_DEFAULT(HeapBaseMinAddress)) {
2055 if (HeapBaseMinAddress < DefaultHeapBaseMinAddress) {
2056 // matches compressed oops printing flags
2057 if (PrintCompressedOopsMode || (PrintMiscellaneous && Verbose)) {
2058 jio_fprintf(defaultStream::error_stream(),
2059 "HeapBaseMinAddress must be at least " SIZE_FORMAT
2060 " (" SIZE_FORMAT "G) which is greater than value given "
2061 SIZE_FORMAT "\n",
2062 DefaultHeapBaseMinAddress,
2063 DefaultHeapBaseMinAddress/G,
2064 HeapBaseMinAddress);
2065 }
2066 FLAG_SET_ERGO(size_t, HeapBaseMinAddress, DefaultHeapBaseMinAddress);
2067 }
2068 }
2069
2070 if (HeapBaseMinAddress + MaxHeapSize < max_coop_heap) {
2071 // Heap should be above HeapBaseMinAddress to get zero based compressed oops
2072 // but it should be not less than default MaxHeapSize.
2073 max_coop_heap -= HeapBaseMinAddress;
2074 }
2075 reasonable_max = MIN2(reasonable_max, max_coop_heap);
2076 }
2077 reasonable_max = limit_by_allocatable_memory(reasonable_max);
2078
2079 if (!FLAG_IS_DEFAULT(InitialHeapSize)) {
2080 // An initial heap size was specified on the command line,
2081 // so be sure that the maximum size is consistent. Done
2082 // after call to limit_by_allocatable_memory because that
2083 // method might reduce the allocation size.
2084 reasonable_max = MAX2(reasonable_max, (julong)InitialHeapSize);
2085 }
2086
2087 log_trace(gc, heap)(" Maximum heap size " SIZE_FORMAT, (size_t) reasonable_max);
2088 FLAG_SET_ERGO(size_t, MaxHeapSize, (size_t)reasonable_max);
2089 }
2090
2091 // If the minimum or initial heap_size have not been set or requested to be set
2092 // ergonomically, set them accordingly.
2093 if (InitialHeapSize == 0 || min_heap_size() == 0) {
2094 julong reasonable_minimum = (julong)(OldSize + NewSize);
2095
2096 reasonable_minimum = MIN2(reasonable_minimum, (julong)MaxHeapSize);
2097
2098 reasonable_minimum = limit_by_allocatable_memory(reasonable_minimum);
2099
2100 if (InitialHeapSize == 0) {
2101 julong reasonable_initial = phys_mem / InitialRAMFraction;
2102
2103 reasonable_initial = MAX3(reasonable_initial, reasonable_minimum, (julong)min_heap_size());
2104 reasonable_initial = MIN2(reasonable_initial, (julong)MaxHeapSize);
2105
2106 reasonable_initial = limit_by_allocatable_memory(reasonable_initial);
2107
2108 log_trace(gc, heap)(" Initial heap size " SIZE_FORMAT, (size_t)reasonable_initial);
2109 FLAG_SET_ERGO(size_t, InitialHeapSize, (size_t)reasonable_initial);
2110 }
2111 // If the minimum heap size has not been set (via -Xms),
2112 // synchronize with InitialHeapSize to avoid errors with the default value.
2113 if (min_heap_size() == 0) {
2114 set_min_heap_size(MIN2((size_t)reasonable_minimum, InitialHeapSize));
2115 log_trace(gc, heap)(" Minimum heap size " SIZE_FORMAT, min_heap_size());
2116 }
2117 }
2118 }
2119
2120 // This option inspects the machine and attempts to set various
2121 // parameters to be optimal for long-running, memory allocation
2122 // intensive jobs. It is intended for machines with large
2123 // amounts of cpu and memory.
2124 jint Arguments::set_aggressive_heap_flags() {
2125 // initHeapSize is needed since _initial_heap_size is 4 bytes on a 32 bit
2126 // VM, but we may not be able to represent the total physical memory
2127 // available (like having 8gb of memory on a box but using a 32bit VM).
2128 // Thus, we need to make sure we're using a julong for intermediate
2129 // calculations.
2130 julong initHeapSize;
2131 julong total_memory = os::physical_memory();
2132
2133 if (total_memory < (julong) 256 * M) {
2134 jio_fprintf(defaultStream::error_stream(),
2135 "You need at least 256mb of memory to use -XX:+AggressiveHeap\n");
2136 vm_exit(1);
2137 }
2138
2139 // The heap size is half of available memory, or (at most)
2140 // all of possible memory less 160mb (leaving room for the OS
2141 // when using ISM). This is the maximum; because adaptive sizing
2142 // is turned on below, the actual space used may be smaller.
2143
2144 initHeapSize = MIN2(total_memory / (julong) 2,
2145 total_memory - (julong) 160 * M);
2146
2147 initHeapSize = limit_by_allocatable_memory(initHeapSize);
2148
2149 if (FLAG_IS_DEFAULT(MaxHeapSize)) {
2150 if (FLAG_SET_CMDLINE(size_t, MaxHeapSize, initHeapSize) != Flag::SUCCESS) {
2151 return JNI_EINVAL;
2152 }
2153 if (FLAG_SET_CMDLINE(size_t, InitialHeapSize, initHeapSize) != Flag::SUCCESS) {
2154 return JNI_EINVAL;
2155 }
2156 // Currently the minimum size and the initial heap sizes are the same.
2157 set_min_heap_size(initHeapSize);
2158 }
2159 if (FLAG_IS_DEFAULT(NewSize)) {
2160 // Make the young generation 3/8ths of the total heap.
2161 if (FLAG_SET_CMDLINE(size_t, NewSize,
2162 ((julong) MaxHeapSize / (julong) 8) * (julong) 3) != Flag::SUCCESS) {
2163 return JNI_EINVAL;
2164 }
2165 if (FLAG_SET_CMDLINE(size_t, MaxNewSize, NewSize) != Flag::SUCCESS) {
2166 return JNI_EINVAL;
2167 }
2168 }
2169
2170 #if !defined(_ALLBSD_SOURCE) && !defined(AIX) // UseLargePages is not yet supported on BSD and AIX.
2171 FLAG_SET_DEFAULT(UseLargePages, true);
2172 #endif
2173
2174 // Increase some data structure sizes for efficiency
2175 if (FLAG_SET_CMDLINE(size_t, BaseFootPrintEstimate, MaxHeapSize) != Flag::SUCCESS) {
2176 return JNI_EINVAL;
2177 }
2178 if (FLAG_SET_CMDLINE(bool, ResizeTLAB, false) != Flag::SUCCESS) {
2179 return JNI_EINVAL;
2180 }
2181 if (FLAG_SET_CMDLINE(size_t, TLABSize, 256 * K) != Flag::SUCCESS) {
2182 return JNI_EINVAL;
2183 }
2184
2185 // See the OldPLABSize comment below, but replace 'after promotion'
2186 // with 'after copying'. YoungPLABSize is the size of the survivor
2187 // space per-gc-thread buffers. The default is 4kw.
2188 if (FLAG_SET_CMDLINE(size_t, YoungPLABSize, 256 * K) != Flag::SUCCESS) { // Note: this is in words
2189 return JNI_EINVAL;
2190 }
2191
2192 // OldPLABSize is the size of the buffers in the old gen that
2193 // UseParallelGC uses to promote live data that doesn't fit in the
2194 // survivor spaces. At any given time, there's one for each gc thread.
2195 // The default size is 1kw. These buffers are rarely used, since the
2196 // survivor spaces are usually big enough. For specjbb, however, there
2197 // are occasions when there's lots of live data in the young gen
2198 // and we end up promoting some of it. We don't have a definite
2199 // explanation for why bumping OldPLABSize helps, but the theory
2200 // is that a bigger PLAB results in retaining something like the
2201 // original allocation order after promotion, which improves mutator
2202 // locality. A minor effect may be that larger PLABs reduce the
2203 // number of PLAB allocation events during gc. The value of 8kw
2204 // was arrived at by experimenting with specjbb.
2205 if (FLAG_SET_CMDLINE(size_t, OldPLABSize, 8 * K) != Flag::SUCCESS) { // Note: this is in words
2206 return JNI_EINVAL;
2207 }
2208
2209 // Enable parallel GC and adaptive generation sizing
2210 if (FLAG_SET_CMDLINE(bool, UseParallelGC, true) != Flag::SUCCESS) {
2211 return JNI_EINVAL;
2212 }
2213 FLAG_SET_DEFAULT(ParallelGCThreads,
2214 Abstract_VM_Version::parallel_worker_threads());
2215
2216 // Encourage steady state memory management
2217 if (FLAG_SET_CMDLINE(uintx, ThresholdTolerance, 100) != Flag::SUCCESS) {
2218 return JNI_EINVAL;
2219 }
2220
2221 // This appears to improve mutator locality
2222 if (FLAG_SET_CMDLINE(bool, ScavengeBeforeFullGC, false) != Flag::SUCCESS) {
2223 return JNI_EINVAL;
2224 }
2225
2226 // Get around early Solaris scheduling bug
2227 // (affinity vs other jobs on system)
2228 // but disallow DR and offlining (5008695).
2229 if (FLAG_SET_CMDLINE(bool, BindGCTaskThreadsToCPUs, true) != Flag::SUCCESS) {
2230 return JNI_EINVAL;
2231 }
2232
2233 return JNI_OK;
2234 }
2235
2236 // This must be called after ergonomics.
2237 void Arguments::set_bytecode_flags() {
2238 if (!RewriteBytecodes) {
2239 FLAG_SET_DEFAULT(RewriteFrequentPairs, false);
2240 }
2241 }
2242
2243 // Aggressive optimization flags -XX:+AggressiveOpts
2244 jint Arguments::set_aggressive_opts_flags() {
2245 #ifdef COMPILER2
2246 if (AggressiveUnboxing) {
2247 if (FLAG_IS_DEFAULT(EliminateAutoBox)) {
2248 FLAG_SET_DEFAULT(EliminateAutoBox, true);
2249 } else if (!EliminateAutoBox) {
2250 // warning("AggressiveUnboxing is disabled because EliminateAutoBox is disabled");
2251 AggressiveUnboxing = false;
2252 }
2253 if (FLAG_IS_DEFAULT(DoEscapeAnalysis)) {
2254 FLAG_SET_DEFAULT(DoEscapeAnalysis, true);
2255 } else if (!DoEscapeAnalysis) {
2256 // warning("AggressiveUnboxing is disabled because DoEscapeAnalysis is disabled");
2257 AggressiveUnboxing = false;
2258 }
2259 }
2260 if (AggressiveOpts || !FLAG_IS_DEFAULT(AutoBoxCacheMax)) {
2261 if (FLAG_IS_DEFAULT(EliminateAutoBox)) {
2262 FLAG_SET_DEFAULT(EliminateAutoBox, true);
2263 }
2264 if (FLAG_IS_DEFAULT(AutoBoxCacheMax)) {
2265 FLAG_SET_DEFAULT(AutoBoxCacheMax, 20000);
2266 }
2267
2268 // Feed the cache size setting into the JDK
2269 char buffer[1024];
2270 sprintf(buffer, "java.lang.Integer.IntegerCache.high=" INTX_FORMAT, AutoBoxCacheMax);
2271 if (!add_property(buffer)) {
2272 return JNI_ENOMEM;
2273 }
2274 }
2275 if (AggressiveOpts && FLAG_IS_DEFAULT(BiasedLockingStartupDelay)) {
2276 FLAG_SET_DEFAULT(BiasedLockingStartupDelay, 500);
2277 }
2278 #endif
2279
2280 if (AggressiveOpts) {
2281 // Sample flag setting code
2282 // if (FLAG_IS_DEFAULT(EliminateZeroing)) {
2283 // FLAG_SET_DEFAULT(EliminateZeroing, true);
2284 // }
2285 }
2286
2287 return JNI_OK;
2288 }
2289
2290 //===========================================================================================================
2291 // Parsing of java.compiler property
2292
2293 void Arguments::process_java_compiler_argument(const char* arg) {
2294 // For backwards compatibility, Djava.compiler=NONE or ""
2295 // causes us to switch to -Xint mode UNLESS -Xdebug
2296 // is also specified.
2297 if (strlen(arg) == 0 || strcasecmp(arg, "NONE") == 0) {
2298 set_java_compiler(true); // "-Djava.compiler[=...]" most recently seen.
2299 }
2300 }
2301
2302 void Arguments::process_java_launcher_argument(const char* launcher, void* extra_info) {
2303 _sun_java_launcher = os::strdup_check_oom(launcher);
2304 }
2305
2306 bool Arguments::created_by_java_launcher() {
2307 assert(_sun_java_launcher != NULL, "property must have value");
2308 return strcmp(DEFAULT_JAVA_LAUNCHER, _sun_java_launcher) != 0;
2309 }
2310
2311 bool Arguments::sun_java_launcher_is_altjvm() {
2312 return _sun_java_launcher_is_altjvm;
2313 }
2314
2315 //===========================================================================================================
2316 // Parsing of main arguments
2317
2318 // Check consistency of GC selection
2319 bool Arguments::check_gc_consistency() {
2320 // Ensure that the user has not selected conflicting sets
2321 // of collectors.
2322 uint i = 0;
2323 if (UseSerialGC) i++;
2324 if (UseConcMarkSweepGC) i++;
2325 if (UseParallelGC || UseParallelOldGC) i++;
2326 if (UseG1GC) i++;
2327 if (i > 1) {
2328 jio_fprintf(defaultStream::error_stream(),
2329 "Conflicting collector combinations in option list; "
2330 "please refer to the release notes for the combinations "
2331 "allowed\n");
2332 return false;
2333 }
2334
2335 if (UseConcMarkSweepGC && !UseParNewGC) {
2336 jio_fprintf(defaultStream::error_stream(),
2337 "It is not possible to combine the DefNew young collector with the CMS collector.\n");
2338 return false;
2339 }
2340
2341 if (UseParNewGC && !UseConcMarkSweepGC) {
2342 jio_fprintf(defaultStream::error_stream(),
2343 "It is not possible to combine the ParNew young collector with any collector other than CMS.\n");
2344 return false;
2345 }
2346
2347 return true;
2348 }
2349
2350 // Check the consistency of vm_init_args
2351 bool Arguments::check_vm_args_consistency() {
2352 // Method for adding checks for flag consistency.
2353 // The intent is to warn the user of all possible conflicts,
2354 // before returning an error.
2355 // Note: Needs platform-dependent factoring.
2356 bool status = true;
2357
2358 if (TLABRefillWasteFraction == 0) {
2359 jio_fprintf(defaultStream::error_stream(),
2360 "TLABRefillWasteFraction should be a denominator, "
2361 "not " SIZE_FORMAT "\n",
2362 TLABRefillWasteFraction);
2363 status = false;
2364 }
2365
2366 if (FullGCALot && FLAG_IS_DEFAULT(MarkSweepAlwaysCompactCount)) {
2367 MarkSweepAlwaysCompactCount = 1; // Move objects every gc.
2368 }
2369
2370 if (!(UseParallelGC || UseParallelOldGC) && FLAG_IS_DEFAULT(ScavengeBeforeFullGC)) {
2371 FLAG_SET_DEFAULT(ScavengeBeforeFullGC, false);
2372 }
2373
2374 if (GCTimeLimit == 100) {
2375 // Turn off gc-overhead-limit-exceeded checks
2376 FLAG_SET_DEFAULT(UseGCOverheadLimit, false);
2377 }
2378
2379 status = status && check_gc_consistency();
2380
2381 // CMS space iteration, which FLSVerifyAllHeapreferences entails,
2382 // insists that we hold the requisite locks so that the iteration is
2383 // MT-safe. For the verification at start-up and shut-down, we don't
2384 // yet have a good way of acquiring and releasing these locks,
2385 // which are not visible at the CollectedHeap level. We want to
2386 // be able to acquire these locks and then do the iteration rather
2387 // than just disable the lock verification. This will be fixed under
2388 // bug 4788986.
2389 if (UseConcMarkSweepGC && FLSVerifyAllHeapReferences) {
2390 if (VerifyDuringStartup) {
2391 warning("Heap verification at start-up disabled "
2392 "(due to current incompatibility with FLSVerifyAllHeapReferences)");
2393 VerifyDuringStartup = false; // Disable verification at start-up
2394 }
2395
2396 if (VerifyBeforeExit) {
2397 warning("Heap verification at shutdown disabled "
2398 "(due to current incompatibility with FLSVerifyAllHeapReferences)");
2399 VerifyBeforeExit = false; // Disable verification at shutdown
2400 }
2401 }
2402
2403 if (PrintNMTStatistics) {
2404 #if INCLUDE_NMT
2405 if (MemTracker::tracking_level() == NMT_off) {
2406 #endif // INCLUDE_NMT
2407 warning("PrintNMTStatistics is disabled, because native memory tracking is not enabled");
2408 PrintNMTStatistics = false;
2409 #if INCLUDE_NMT
2410 }
2411 #endif
2412 }
2413 #if INCLUDE_JVMCI
2414 if (EnableJVMCI) {
2415 if (!ScavengeRootsInCode) {
2416 warning("forcing ScavengeRootsInCode non-zero because JVMCI is enabled");
2417 ScavengeRootsInCode = 1;
2418 }
2419 if (FLAG_IS_DEFAULT(TypeProfileLevel)) {
2420 TypeProfileLevel = 0;
2421 }
2422 if (UseJVMCICompiler) {
2423 if (FLAG_IS_DEFAULT(TypeProfileWidth)) {
2424 TypeProfileWidth = 8;
2425 }
2426 }
2427 }
2428 #endif
2429
2430 // Check lower bounds of the code cache
2431 // Template Interpreter code is approximately 3X larger in debug builds.
2432 uint min_code_cache_size = CodeCacheMinimumUseSpace DEBUG_ONLY(* 3);
2433 if (InitialCodeCacheSize < (uintx)os::vm_page_size()) {
2434 jio_fprintf(defaultStream::error_stream(),
2435 "Invalid InitialCodeCacheSize=%dK. Must be at least %dK.\n", InitialCodeCacheSize/K,
2436 os::vm_page_size()/K);
2437 status = false;
2438 } else if (ReservedCodeCacheSize < InitialCodeCacheSize) {
2439 jio_fprintf(defaultStream::error_stream(),
2440 "Invalid ReservedCodeCacheSize: %dK. Must be at least InitialCodeCacheSize=%dK.\n",
2441 ReservedCodeCacheSize/K, InitialCodeCacheSize/K);
2442 status = false;
2443 } else if (ReservedCodeCacheSize < min_code_cache_size) {
2444 jio_fprintf(defaultStream::error_stream(),
2445 "Invalid ReservedCodeCacheSize=%dK. Must be at least %uK.\n", ReservedCodeCacheSize/K,
2446 min_code_cache_size/K);
2447 status = false;
2448 } else if (ReservedCodeCacheSize > CODE_CACHE_SIZE_LIMIT) {
2449 // Code cache size larger than CODE_CACHE_SIZE_LIMIT is not supported.
2450 jio_fprintf(defaultStream::error_stream(),
2451 "Invalid ReservedCodeCacheSize=%dM. Must be at most %uM.\n", ReservedCodeCacheSize/M,
2452 CODE_CACHE_SIZE_LIMIT/M);
2453 status = false;
2454 } else if (NonNMethodCodeHeapSize < min_code_cache_size) {
2455 jio_fprintf(defaultStream::error_stream(),
2456 "Invalid NonNMethodCodeHeapSize=%dK. Must be at least %uK.\n", NonNMethodCodeHeapSize/K,
2457 min_code_cache_size/K);
2458 status = false;
2459 }
2460
2461 if (!FLAG_IS_DEFAULT(CICompilerCount) && !FLAG_IS_DEFAULT(CICompilerCountPerCPU) && CICompilerCountPerCPU) {
2462 warning("The VM option CICompilerCountPerCPU overrides CICompilerCount.");
2463 }
2464
2465 #ifndef SUPPORT_RESERVED_STACK_AREA
2466 if (StackReservedPages != 0) {
2467 FLAG_SET_CMDLINE(intx, StackReservedPages, 0);
2468 warning("Reserved Stack Area not supported on this platform");
2469 }
2470 #endif
2471 return status;
2472 }
2473
2474 bool Arguments::is_bad_option(const JavaVMOption* option, jboolean ignore,
2475 const char* option_type) {
2476 if (ignore) return false;
2477
2478 const char* spacer = " ";
2479 if (option_type == NULL) {
2480 option_type = ++spacer; // Set both to the empty string.
2481 }
2482
2483 if (os::obsolete_option(option)) {
2484 jio_fprintf(defaultStream::error_stream(),
2485 "Obsolete %s%soption: %s\n", option_type, spacer,
2486 option->optionString);
2487 return false;
2488 } else {
2489 jio_fprintf(defaultStream::error_stream(),
2490 "Unrecognized %s%soption: %s\n", option_type, spacer,
2491 option->optionString);
2492 return true;
2493 }
2494 }
2495
2496 static const char* user_assertion_options[] = {
2497 "-da", "-ea", "-disableassertions", "-enableassertions", 0
2498 };
2499
2500 static const char* system_assertion_options[] = {
2501 "-dsa", "-esa", "-disablesystemassertions", "-enablesystemassertions", 0
2502 };
2503
2504 bool Arguments::parse_uintx(const char* value,
2505 uintx* uintx_arg,
2506 uintx min_size) {
2507
2508 // Check the sign first since atomull() parses only unsigned values.
2509 bool value_is_positive = !(*value == '-');
2510
2511 if (value_is_positive) {
2512 julong n;
2513 bool good_return = atomull(value, &n);
2514 if (good_return) {
2515 bool above_minimum = n >= min_size;
2516 bool value_is_too_large = n > max_uintx;
2517
2518 if (above_minimum && !value_is_too_large) {
2519 *uintx_arg = n;
2520 return true;
2521 }
2522 }
2523 }
2524 return false;
2525 }
2526
2527 Arguments::ArgsRange Arguments::parse_memory_size(const char* s,
2528 julong* long_arg,
2529 julong min_size) {
2530 if (!atomull(s, long_arg)) return arg_unreadable;
2531 return check_memory_size(*long_arg, min_size);
2532 }
2533
2534 // Parse JavaVMInitArgs structure
2535
2536 jint Arguments::parse_vm_init_args(const JavaVMInitArgs *java_tool_options_args,
2537 const JavaVMInitArgs *java_options_args,
2538 const JavaVMInitArgs *cmd_line_args) {
2539 // For components of the system classpath.
2540 SysClassPath scp(Arguments::get_sysclasspath());
2541 bool scp_assembly_required = false;
2542
2543 // Save default settings for some mode flags
2544 Arguments::_AlwaysCompileLoopMethods = AlwaysCompileLoopMethods;
2545 Arguments::_UseOnStackReplacement = UseOnStackReplacement;
2546 Arguments::_ClipInlining = ClipInlining;
2547 Arguments::_BackgroundCompilation = BackgroundCompilation;
2548 if (TieredCompilation) {
2549 Arguments::_Tier3InvokeNotifyFreqLog = Tier3InvokeNotifyFreqLog;
2550 Arguments::_Tier4InvocationThreshold = Tier4InvocationThreshold;
2551 }
2552
2553 // Setup flags for mixed which is the default
2554 set_mode_flags(_mixed);
2555
2556 // Parse args structure generated from JAVA_TOOL_OPTIONS environment
2557 // variable (if present).
2558 jint result = parse_each_vm_init_arg(
2559 java_tool_options_args, &scp, &scp_assembly_required, Flag::ENVIRON_VAR);
2560 if (result != JNI_OK) {
2561 return result;
2562 }
2563
2564 // Parse args structure generated from the command line flags.
2565 result = parse_each_vm_init_arg(cmd_line_args, &scp, &scp_assembly_required,
2566 Flag::COMMAND_LINE);
2567 if (result != JNI_OK) {
2568 return result;
2569 }
2570
2571 // Parse args structure generated from the _JAVA_OPTIONS environment
2572 // variable (if present) (mimics classic VM)
2573 result = parse_each_vm_init_arg(
2574 java_options_args, &scp, &scp_assembly_required, Flag::ENVIRON_VAR);
2575 if (result != JNI_OK) {
2576 return result;
2577 }
2578
2579 // Do final processing now that all arguments have been parsed
2580 result = finalize_vm_init_args(&scp, scp_assembly_required);
2581 if (result != JNI_OK) {
2582 return result;
2583 }
2584
2585 return JNI_OK;
2586 }
2587
2588 // Checks if name in command-line argument -agent{lib,path}:name[=options]
2589 // represents a valid JDWP agent. is_path==true denotes that we
2590 // are dealing with -agentpath (case where name is a path), otherwise with
2591 // -agentlib
2592 bool valid_jdwp_agent(char *name, bool is_path) {
2593 char *_name;
2594 const char *_jdwp = "jdwp";
2595 size_t _len_jdwp, _len_prefix;
2596
2597 if (is_path) {
2598 if ((_name = strrchr(name, (int) *os::file_separator())) == NULL) {
2599 return false;
2600 }
2601
2602 _name++; // skip past last path separator
2603 _len_prefix = strlen(JNI_LIB_PREFIX);
2604
2605 if (strncmp(_name, JNI_LIB_PREFIX, _len_prefix) != 0) {
2606 return false;
2607 }
2608
2609 _name += _len_prefix;
2610 _len_jdwp = strlen(_jdwp);
2611
2612 if (strncmp(_name, _jdwp, _len_jdwp) == 0) {
2613 _name += _len_jdwp;
2614 }
2615 else {
2616 return false;
2617 }
2618
2619 if (strcmp(_name, JNI_LIB_SUFFIX) != 0) {
2620 return false;
2621 }
2622
2623 return true;
2624 }
2625
2626 if (strcmp(name, _jdwp) == 0) {
2627 return true;
2628 }
2629
2630 return false;
2631 }
2632
2633 jint Arguments::parse_each_vm_init_arg(const JavaVMInitArgs* args,
2634 SysClassPath* scp_p,
2635 bool* scp_assembly_required_p,
2636 Flag::Flags origin) {
2637 // For match_option to return remaining or value part of option string
2638 const char* tail;
2639
2640 // iterate over arguments
2641 for (int index = 0; index < args->nOptions; index++) {
2642 bool is_absolute_path = false; // for -agentpath vs -agentlib
2643
2644 const JavaVMOption* option = args->options + index;
2645
2646 if (!match_option(option, "-Djava.class.path", &tail) &&
2647 !match_option(option, "-Dsun.java.command", &tail) &&
2648 !match_option(option, "-Dsun.java.launcher", &tail)) {
2649
2650 // add all jvm options to the jvm_args string. This string
2651 // is used later to set the java.vm.args PerfData string constant.
2652 // the -Djava.class.path and the -Dsun.java.command options are
2653 // omitted from jvm_args string as each have their own PerfData
2654 // string constant object.
2655 build_jvm_args(option->optionString);
2656 }
2657
2658 // -verbose:[class/gc/jni]
2659 if (match_option(option, "-verbose", &tail)) {
2660 if (!strcmp(tail, ":class") || !strcmp(tail, "")) {
2661 LogConfiguration::configure_stdout(LogLevel::Info, true, LOG_TAGS(classload));
2662 LogConfiguration::configure_stdout(LogLevel::Info, true, LOG_TAGS(classunload));
2663 } else if (!strcmp(tail, ":gc")) {
2664 LogConfiguration::configure_stdout(LogLevel::Info, true, LOG_TAGS(gc));
2665 } else if (!strcmp(tail, ":jni")) {
2666 if (FLAG_SET_CMDLINE(bool, PrintJNIResolving, true) != Flag::SUCCESS) {
2667 return JNI_EINVAL;
2668 }
2669 }
2670 // -da / -ea / -disableassertions / -enableassertions
2671 // These accept an optional class/package name separated by a colon, e.g.,
2672 // -da:java.lang.Thread.
2673 } else if (match_option(option, user_assertion_options, &tail, true)) {
2674 bool enable = option->optionString[1] == 'e'; // char after '-' is 'e'
2675 if (*tail == '\0') {
2676 JavaAssertions::setUserClassDefault(enable);
2677 } else {
2678 assert(*tail == ':', "bogus match by match_option()");
2679 JavaAssertions::addOption(tail + 1, enable);
2680 }
2681 // -dsa / -esa / -disablesystemassertions / -enablesystemassertions
2682 } else if (match_option(option, system_assertion_options, &tail, false)) {
2683 bool enable = option->optionString[1] == 'e'; // char after '-' is 'e'
2684 JavaAssertions::setSystemClassDefault(enable);
2685 // -bootclasspath:
2686 } else if (match_option(option, "-Xbootclasspath:", &tail)) {
2687 scp_p->reset_path(tail);
2688 *scp_assembly_required_p = true;
2689 // -bootclasspath/a:
2690 } else if (match_option(option, "-Xbootclasspath/a:", &tail)) {
2691 scp_p->add_suffix(tail);
2692 *scp_assembly_required_p = true;
2693 // -bootclasspath/p:
2694 } else if (match_option(option, "-Xbootclasspath/p:", &tail)) {
2695 scp_p->add_prefix(tail);
2696 *scp_assembly_required_p = true;
2697 // -Xrun
2698 } else if (match_option(option, "-Xrun", &tail)) {
2699 if (tail != NULL) {
2700 const char* pos = strchr(tail, ':');
2701 size_t len = (pos == NULL) ? strlen(tail) : pos - tail;
2702 char* name = (char*)memcpy(NEW_C_HEAP_ARRAY(char, len + 1, mtInternal), tail, len);
2703 name[len] = '\0';
2704
2705 char *options = NULL;
2706 if(pos != NULL) {
2707 size_t len2 = strlen(pos+1) + 1; // options start after ':'. Final zero must be copied.
2708 options = (char*)memcpy(NEW_C_HEAP_ARRAY(char, len2, mtInternal), pos+1, len2);
2709 }
2710 #if !INCLUDE_JVMTI
2711 if (strcmp(name, "jdwp") == 0) {
2712 jio_fprintf(defaultStream::error_stream(),
2713 "Debugging agents are not supported in this VM\n");
2714 return JNI_ERR;
2715 }
2716 #endif // !INCLUDE_JVMTI
2717 add_init_library(name, options);
2718 }
2719 // -agentlib and -agentpath
2720 } else if (match_option(option, "-agentlib:", &tail) ||
2721 (is_absolute_path = match_option(option, "-agentpath:", &tail))) {
2722 if(tail != NULL) {
2723 const char* pos = strchr(tail, '=');
2724 size_t len = (pos == NULL) ? strlen(tail) : pos - tail;
2725 char* name = strncpy(NEW_C_HEAP_ARRAY(char, len + 1, mtInternal), tail, len);
2726 name[len] = '\0';
2727
2728 char *options = NULL;
2729 if(pos != NULL) {
2730 options = os::strdup_check_oom(pos + 1, mtInternal);
2731 }
2732 #if !INCLUDE_JVMTI
2733 if (valid_jdwp_agent(name, is_absolute_path)) {
2734 jio_fprintf(defaultStream::error_stream(),
2735 "Debugging agents are not supported in this VM\n");
2736 return JNI_ERR;
2737 }
2738 #endif // !INCLUDE_JVMTI
2739 add_init_agent(name, options, is_absolute_path);
2740 }
2741 // -javaagent
2742 } else if (match_option(option, "-javaagent:", &tail)) {
2743 #if !INCLUDE_JVMTI
2744 jio_fprintf(defaultStream::error_stream(),
2745 "Instrumentation agents are not supported in this VM\n");
2746 return JNI_ERR;
2747 #else
2748 if(tail != NULL) {
2749 char *options = strcpy(NEW_C_HEAP_ARRAY(char, strlen(tail) + 1, mtInternal), tail);
2750 add_init_agent("instrument", options, false);
2751 }
2752 #endif // !INCLUDE_JVMTI
2753 // -Xnoclassgc
2754 } else if (match_option(option, "-Xnoclassgc")) {
2755 if (FLAG_SET_CMDLINE(bool, ClassUnloading, false) != Flag::SUCCESS) {
2756 return JNI_EINVAL;
2757 }
2758 // -Xconcgc
2759 } else if (match_option(option, "-Xconcgc")) {
2760 if (FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, true) != Flag::SUCCESS) {
2761 return JNI_EINVAL;
2762 }
2763 // -Xnoconcgc
2764 } else if (match_option(option, "-Xnoconcgc")) {
2765 if (FLAG_SET_CMDLINE(bool, UseConcMarkSweepGC, false) != Flag::SUCCESS) {
2766 return JNI_EINVAL;
2767 }
2768 // -Xbatch
2769 } else if (match_option(option, "-Xbatch")) {
2770 if (FLAG_SET_CMDLINE(bool, BackgroundCompilation, false) != Flag::SUCCESS) {
2771 return JNI_EINVAL;
2772 }
2773 // -Xmn for compatibility with other JVM vendors
2774 } else if (match_option(option, "-Xmn", &tail)) {
2775 julong long_initial_young_size = 0;
2776 ArgsRange errcode = parse_memory_size(tail, &long_initial_young_size, 1);
2777 if (errcode != arg_in_range) {
2778 jio_fprintf(defaultStream::error_stream(),
2779 "Invalid initial young generation size: %s\n", option->optionString);
2780 describe_range_error(errcode);
2781 return JNI_EINVAL;
2782 }
2783 if (FLAG_SET_CMDLINE(size_t, MaxNewSize, (size_t)long_initial_young_size) != Flag::SUCCESS) {
2784 return JNI_EINVAL;
2785 }
2786 if (FLAG_SET_CMDLINE(size_t, NewSize, (size_t)long_initial_young_size) != Flag::SUCCESS) {
2787 return JNI_EINVAL;
2788 }
2789 // -Xms
2790 } else if (match_option(option, "-Xms", &tail)) {
2791 julong long_initial_heap_size = 0;
2792 // an initial heap size of 0 means automatically determine
2793 ArgsRange errcode = parse_memory_size(tail, &long_initial_heap_size, 0);
2794 if (errcode != arg_in_range) {
2795 jio_fprintf(defaultStream::error_stream(),
2796 "Invalid initial heap size: %s\n", option->optionString);
2797 describe_range_error(errcode);
2798 return JNI_EINVAL;
2799 }
2800 set_min_heap_size((size_t)long_initial_heap_size);
2801 // Currently the minimum size and the initial heap sizes are the same.
2802 // Can be overridden with -XX:InitialHeapSize.
2803 if (FLAG_SET_CMDLINE(size_t, InitialHeapSize, (size_t)long_initial_heap_size) != Flag::SUCCESS) {
2804 return JNI_EINVAL;
2805 }
2806 // -Xmx
2807 } else if (match_option(option, "-Xmx", &tail) || match_option(option, "-XX:MaxHeapSize=", &tail)) {
2808 julong long_max_heap_size = 0;
2809 ArgsRange errcode = parse_memory_size(tail, &long_max_heap_size, 1);
2810 if (errcode != arg_in_range) {
2811 jio_fprintf(defaultStream::error_stream(),
2812 "Invalid maximum heap size: %s\n", option->optionString);
2813 describe_range_error(errcode);
2814 return JNI_EINVAL;
2815 }
2816 if (FLAG_SET_CMDLINE(size_t, MaxHeapSize, (size_t)long_max_heap_size) != Flag::SUCCESS) {
2817 return JNI_EINVAL;
2818 }
2819 // Xmaxf
2820 } else if (match_option(option, "-Xmaxf", &tail)) {
2821 char* err;
2822 int maxf = (int)(strtod(tail, &err) * 100);
2823 if (*err != '\0' || *tail == '\0') {
2824 jio_fprintf(defaultStream::error_stream(),
2825 "Bad max heap free percentage size: %s\n",
2826 option->optionString);
2827 return JNI_EINVAL;
2828 } else {
2829 if (FLAG_SET_CMDLINE(uintx, MaxHeapFreeRatio, maxf) != Flag::SUCCESS) {
2830 return JNI_EINVAL;
2831 }
2832 }
2833 // Xminf
2834 } else if (match_option(option, "-Xminf", &tail)) {
2835 char* err;
2836 int minf = (int)(strtod(tail, &err) * 100);
2837 if (*err != '\0' || *tail == '\0') {
2838 jio_fprintf(defaultStream::error_stream(),
2839 "Bad min heap free percentage size: %s\n",
2840 option->optionString);
2841 return JNI_EINVAL;
2842 } else {
2843 if (FLAG_SET_CMDLINE(uintx, MinHeapFreeRatio, minf) != Flag::SUCCESS) {
2844 return JNI_EINVAL;
2845 }
2846 }
2847 // -Xss
2848 } else if (match_option(option, "-Xss", &tail)) {
2849 julong long_ThreadStackSize = 0;
2850 ArgsRange errcode = parse_memory_size(tail, &long_ThreadStackSize, 1000);
2851 if (errcode != arg_in_range) {
2852 jio_fprintf(defaultStream::error_stream(),
2853 "Invalid thread stack size: %s\n", option->optionString);
2854 describe_range_error(errcode);
2855 return JNI_EINVAL;
2856 }
2857 // Internally track ThreadStackSize in units of 1024 bytes.
2858 if (FLAG_SET_CMDLINE(intx, ThreadStackSize,
2859 round_to((int)long_ThreadStackSize, K) / K) != Flag::SUCCESS) {
2860 return JNI_EINVAL;
2861 }
2862 // -Xoss, -Xsqnopause, -Xoptimize, -Xboundthreads, -Xusealtsigs
2863 } else if (match_option(option, "-Xoss", &tail) ||
2864 match_option(option, "-Xsqnopause") ||
2865 match_option(option, "-Xoptimize") ||
2866 match_option(option, "-Xboundthreads") ||
2867 match_option(option, "-Xusealtsigs")) {
2868 // All these options are deprecated in JDK 9 and will be removed in a future release
2869 char version[256];
2870 JDK_Version::jdk(9).to_string(version, sizeof(version));
2871 warning("Ignoring option %s; support was removed in %s", option->optionString, version);
2872 } else if (match_option(option, "-XX:CodeCacheExpansionSize=", &tail)) {
2873 julong long_CodeCacheExpansionSize = 0;
2874 ArgsRange errcode = parse_memory_size(tail, &long_CodeCacheExpansionSize, os::vm_page_size());
2875 if (errcode != arg_in_range) {
2876 jio_fprintf(defaultStream::error_stream(),
2877 "Invalid argument: %s. Must be at least %luK.\n", option->optionString,
2878 os::vm_page_size()/K);
2879 return JNI_EINVAL;
2880 }
2881 if (FLAG_SET_CMDLINE(uintx, CodeCacheExpansionSize, (uintx)long_CodeCacheExpansionSize) != Flag::SUCCESS) {
2882 return JNI_EINVAL;
2883 }
2884 } else if (match_option(option, "-Xmaxjitcodesize", &tail) ||
2885 match_option(option, "-XX:ReservedCodeCacheSize=", &tail)) {
2886 julong long_ReservedCodeCacheSize = 0;
2887
2888 ArgsRange errcode = parse_memory_size(tail, &long_ReservedCodeCacheSize, 1);
2889 if (errcode != arg_in_range) {
2890 jio_fprintf(defaultStream::error_stream(),
2891 "Invalid maximum code cache size: %s.\n", option->optionString);
2892 return JNI_EINVAL;
2893 }
2894 if (FLAG_SET_CMDLINE(uintx, ReservedCodeCacheSize, (uintx)long_ReservedCodeCacheSize) != Flag::SUCCESS) {
2895 return JNI_EINVAL;
2896 }
2897 // -XX:NonNMethodCodeHeapSize=
2898 } else if (match_option(option, "-XX:NonNMethodCodeHeapSize=", &tail)) {
2899 julong long_NonNMethodCodeHeapSize = 0;
2900
2901 ArgsRange errcode = parse_memory_size(tail, &long_NonNMethodCodeHeapSize, 1);
2902 if (errcode != arg_in_range) {
2903 jio_fprintf(defaultStream::error_stream(),
2904 "Invalid maximum non-nmethod code heap size: %s.\n", option->optionString);
2905 return JNI_EINVAL;
2906 }
2907 if (FLAG_SET_CMDLINE(uintx, NonNMethodCodeHeapSize, (uintx)long_NonNMethodCodeHeapSize) != Flag::SUCCESS) {
2908 return JNI_EINVAL;
2909 }
2910 // -XX:ProfiledCodeHeapSize=
2911 } else if (match_option(option, "-XX:ProfiledCodeHeapSize=", &tail)) {
2912 julong long_ProfiledCodeHeapSize = 0;
2913
2914 ArgsRange errcode = parse_memory_size(tail, &long_ProfiledCodeHeapSize, 1);
2915 if (errcode != arg_in_range) {
2916 jio_fprintf(defaultStream::error_stream(),
2917 "Invalid maximum profiled code heap size: %s.\n", option->optionString);
2918 return JNI_EINVAL;
2919 }
2920 if (FLAG_SET_CMDLINE(uintx, ProfiledCodeHeapSize, (uintx)long_ProfiledCodeHeapSize) != Flag::SUCCESS) {
2921 return JNI_EINVAL;
2922 }
2923 // -XX:NonProfiledCodeHeapSizee=
2924 } else if (match_option(option, "-XX:NonProfiledCodeHeapSize=", &tail)) {
2925 julong long_NonProfiledCodeHeapSize = 0;
2926
2927 ArgsRange errcode = parse_memory_size(tail, &long_NonProfiledCodeHeapSize, 1);
2928 if (errcode != arg_in_range) {
2929 jio_fprintf(defaultStream::error_stream(),
2930 "Invalid maximum non-profiled code heap size: %s.\n", option->optionString);
2931 return JNI_EINVAL;
2932 }
2933 if (FLAG_SET_CMDLINE(uintx, NonProfiledCodeHeapSize, (uintx)long_NonProfiledCodeHeapSize) != Flag::SUCCESS) {
2934 return JNI_EINVAL;
2935 }
2936 // -green
2937 } else if (match_option(option, "-green")) {
2938 jio_fprintf(defaultStream::error_stream(),
2939 "Green threads support not available\n");
2940 return JNI_EINVAL;
2941 // -native
2942 } else if (match_option(option, "-native")) {
2943 // HotSpot always uses native threads, ignore silently for compatibility
2944 // -Xrs
2945 } else if (match_option(option, "-Xrs")) {
2946 // Classic/EVM option, new functionality
2947 if (FLAG_SET_CMDLINE(bool, ReduceSignalUsage, true) != Flag::SUCCESS) {
2948 return JNI_EINVAL;
2949 }
2950 // -Xprof
2951 } else if (match_option(option, "-Xprof")) {
2952 #if INCLUDE_FPROF
2953 _has_profile = true;
2954 #else // INCLUDE_FPROF
2955 jio_fprintf(defaultStream::error_stream(),
2956 "Flat profiling is not supported in this VM.\n");
2957 return JNI_ERR;
2958 #endif // INCLUDE_FPROF
2959 // -Xconcurrentio
2960 } else if (match_option(option, "-Xconcurrentio")) {
2961 if (FLAG_SET_CMDLINE(bool, UseLWPSynchronization, true) != Flag::SUCCESS) {
2962 return JNI_EINVAL;
2963 }
2964 if (FLAG_SET_CMDLINE(bool, BackgroundCompilation, false) != Flag::SUCCESS) {
2965 return JNI_EINVAL;
2966 }
2967 if (FLAG_SET_CMDLINE(intx, DeferThrSuspendLoopCount, 1) != Flag::SUCCESS) {
2968 return JNI_EINVAL;
2969 }
2970 if (FLAG_SET_CMDLINE(bool, UseTLAB, false) != Flag::SUCCESS) {
2971 return JNI_EINVAL;
2972 }
2973 if (FLAG_SET_CMDLINE(size_t, NewSizeThreadIncrease, 16 * K) != Flag::SUCCESS) { // 20Kb per thread added to new generation
2974 return JNI_EINVAL;
2975 }
2976
2977 // -Xinternalversion
2978 } else if (match_option(option, "-Xinternalversion")) {
2979 jio_fprintf(defaultStream::output_stream(), "%s\n",
2980 VM_Version::internal_vm_info_string());
2981 vm_exit(0);
2982 #ifndef PRODUCT
2983 // -Xprintflags
2984 } else if (match_option(option, "-Xprintflags")) {
2985 CommandLineFlags::printFlags(tty, false);
2986 vm_exit(0);
2987 #endif
2988 // -D
2989 } else if (match_option(option, "-D", &tail)) {
2990 const char* value;
2991 if (match_option(option, "-Djava.endorsed.dirs=", &value) &&
2992 *value!= '\0' && strcmp(value, "\"\"") != 0) {
2993 // abort if -Djava.endorsed.dirs is set
2994 jio_fprintf(defaultStream::output_stream(),
2995 "-Djava.endorsed.dirs=%s is not supported. Endorsed standards and standalone APIs\n"
2996 "in modular form will be supported via the concept of upgradeable modules.\n", value);
2997 return JNI_EINVAL;
2998 }
2999 if (match_option(option, "-Djava.ext.dirs=", &value) &&
3000 *value != '\0' && strcmp(value, "\"\"") != 0) {
3001 // abort if -Djava.ext.dirs is set
3002 jio_fprintf(defaultStream::output_stream(),
3003 "-Djava.ext.dirs=%s is not supported. Use -classpath instead.\n", value);
3004 return JNI_EINVAL;
3005 }
3006
3007 if (!add_property(tail)) {
3008 return JNI_ENOMEM;
3009 }
3010 // Out of the box management support
3011 if (match_option(option, "-Dcom.sun.management", &tail)) {
3012 #if INCLUDE_MANAGEMENT
3013 if (FLAG_SET_CMDLINE(bool, ManagementServer, true) != Flag::SUCCESS) {
3014 return JNI_EINVAL;
3015 }
3016 #else
3017 jio_fprintf(defaultStream::output_stream(),
3018 "-Dcom.sun.management is not supported in this VM.\n");
3019 return JNI_ERR;
3020 #endif
3021 }
3022 // -Xint
3023 } else if (match_option(option, "-Xint")) {
3024 set_mode_flags(_int);
3025 // -Xmixed
3026 } else if (match_option(option, "-Xmixed")) {
3027 set_mode_flags(_mixed);
3028 // -Xcomp
3029 } else if (match_option(option, "-Xcomp")) {
3030 // for testing the compiler; turn off all flags that inhibit compilation
3031 set_mode_flags(_comp);
3032 // -Xshare:dump
3033 } else if (match_option(option, "-Xshare:dump")) {
3034 if (FLAG_SET_CMDLINE(bool, DumpSharedSpaces, true) != Flag::SUCCESS) {
3035 return JNI_EINVAL;
3036 }
3037 set_mode_flags(_int); // Prevent compilation, which creates objects
3038 // -Xshare:on
3039 } else if (match_option(option, "-Xshare:on")) {
3040 if (FLAG_SET_CMDLINE(bool, UseSharedSpaces, true) != Flag::SUCCESS) {
3041 return JNI_EINVAL;
3042 }
3043 if (FLAG_SET_CMDLINE(bool, RequireSharedSpaces, true) != Flag::SUCCESS) {
3044 return JNI_EINVAL;
3045 }
3046 // -Xshare:auto
3047 } else if (match_option(option, "-Xshare:auto")) {
3048 if (FLAG_SET_CMDLINE(bool, UseSharedSpaces, true) != Flag::SUCCESS) {
3049 return JNI_EINVAL;
3050 }
3051 if (FLAG_SET_CMDLINE(bool, RequireSharedSpaces, false) != Flag::SUCCESS) {
3052 return JNI_EINVAL;
3053 }
3054 // -Xshare:off
3055 } else if (match_option(option, "-Xshare:off")) {
3056 if (FLAG_SET_CMDLINE(bool, UseSharedSpaces, false) != Flag::SUCCESS) {
3057 return JNI_EINVAL;
3058 }
3059 if (FLAG_SET_CMDLINE(bool, RequireSharedSpaces, false) != Flag::SUCCESS) {
3060 return JNI_EINVAL;
3061 }
3062 // -Xverify
3063 } else if (match_option(option, "-Xverify", &tail)) {
3064 if (strcmp(tail, ":all") == 0 || strcmp(tail, "") == 0) {
3065 if (FLAG_SET_CMDLINE(bool, BytecodeVerificationLocal, true) != Flag::SUCCESS) {
3066 return JNI_EINVAL;
3067 }
3068 if (FLAG_SET_CMDLINE(bool, BytecodeVerificationRemote, true) != Flag::SUCCESS) {
3069 return JNI_EINVAL;
3070 }
3071 } else if (strcmp(tail, ":remote") == 0) {
3072 if (FLAG_SET_CMDLINE(bool, BytecodeVerificationLocal, false) != Flag::SUCCESS) {
3073 return JNI_EINVAL;
3074 }
3075 if (FLAG_SET_CMDLINE(bool, BytecodeVerificationRemote, true) != Flag::SUCCESS) {
3076 return JNI_EINVAL;
3077 }
3078 } else if (strcmp(tail, ":none") == 0) {
3079 if (FLAG_SET_CMDLINE(bool, BytecodeVerificationLocal, false) != Flag::SUCCESS) {
3080 return JNI_EINVAL;
3081 }
3082 if (FLAG_SET_CMDLINE(bool, BytecodeVerificationRemote, false) != Flag::SUCCESS) {
3083 return JNI_EINVAL;
3084 }
3085 } else if (is_bad_option(option, args->ignoreUnrecognized, "verification")) {
3086 return JNI_EINVAL;
3087 }
3088 // -Xdebug
3089 } else if (match_option(option, "-Xdebug")) {
3090 // note this flag has been used, then ignore
3091 set_xdebug_mode(true);
3092 // -Xnoagent
3093 } else if (match_option(option, "-Xnoagent")) {
3094 // For compatibility with classic. HotSpot refuses to load the old style agent.dll.
3095 } else if (match_option(option, "-Xloggc:", &tail)) {
3096 // Deprecated flag to redirect GC output to a file. -Xloggc:<filename>
3097 log_warning(gc)("-Xloggc is deprecated. Will use -Xlog:gc:%s instead.", tail);
3098 _gc_log_filename = os::strdup_check_oom(tail);
3099 } else if (match_option(option, "-Xlog", &tail)) {
3100 bool ret = false;
3101 if (strcmp(tail, ":help") == 0) {
3102 LogConfiguration::print_command_line_help(defaultStream::output_stream());
3103 vm_exit(0);
3104 } else if (strcmp(tail, ":disable") == 0) {
3105 LogConfiguration::disable_logging();
3106 ret = true;
3107 } else if (*tail == '\0') {
3108 ret = LogConfiguration::parse_command_line_arguments();
3109 assert(ret, "-Xlog without arguments should never fail to parse");
3110 } else if (*tail == ':') {
3111 ret = LogConfiguration::parse_command_line_arguments(tail + 1);
3112 }
3113 if (ret == false) {
3114 jio_fprintf(defaultStream::error_stream(),
3115 "Invalid -Xlog option '-Xlog%s'\n",
3116 tail);
3117 return JNI_EINVAL;
3118 }
3119 // JNI hooks
3120 } else if (match_option(option, "-Xcheck", &tail)) {
3121 if (!strcmp(tail, ":jni")) {
3122 #if !INCLUDE_JNI_CHECK
3123 warning("JNI CHECKING is not supported in this VM");
3124 #else
3125 CheckJNICalls = true;
3126 #endif // INCLUDE_JNI_CHECK
3127 } else if (is_bad_option(option, args->ignoreUnrecognized,
3128 "check")) {
3129 return JNI_EINVAL;
3130 }
3131 } else if (match_option(option, "vfprintf")) {
3132 _vfprintf_hook = CAST_TO_FN_PTR(vfprintf_hook_t, option->extraInfo);
3133 } else if (match_option(option, "exit")) {
3134 _exit_hook = CAST_TO_FN_PTR(exit_hook_t, option->extraInfo);
3135 } else if (match_option(option, "abort")) {
3136 _abort_hook = CAST_TO_FN_PTR(abort_hook_t, option->extraInfo);
3137 // -XX:+AggressiveHeap
3138 } else if (match_option(option, "-XX:+AggressiveHeap")) {
3139 jint result = set_aggressive_heap_flags();
3140 if (result != JNI_OK) {
3141 return result;
3142 }
3143 // Need to keep consistency of MaxTenuringThreshold and AlwaysTenure/NeverTenure;
3144 // and the last option wins.
3145 } else if (match_option(option, "-XX:+NeverTenure")) {
3146 if (FLAG_SET_CMDLINE(bool, NeverTenure, true) != Flag::SUCCESS) {
3147 return JNI_EINVAL;
3148 }
3149 if (FLAG_SET_CMDLINE(bool, AlwaysTenure, false) != Flag::SUCCESS) {
3150 return JNI_EINVAL;
3151 }
3152 if (FLAG_SET_CMDLINE(uintx, MaxTenuringThreshold, markOopDesc::max_age + 1) != Flag::SUCCESS) {
3153 return JNI_EINVAL;
3154 }
3155 } else if (match_option(option, "-XX:+AlwaysTenure")) {
3156 if (FLAG_SET_CMDLINE(bool, NeverTenure, false) != Flag::SUCCESS) {
3157 return JNI_EINVAL;
3158 }
3159 if (FLAG_SET_CMDLINE(bool, AlwaysTenure, true) != Flag::SUCCESS) {
3160 return JNI_EINVAL;
3161 }
3162 if (FLAG_SET_CMDLINE(uintx, MaxTenuringThreshold, 0) != Flag::SUCCESS) {
3163 return JNI_EINVAL;
3164 }
3165 } else if (match_option(option, "-XX:MaxTenuringThreshold=", &tail)) {
3166 uintx max_tenuring_thresh = 0;
3167 if (!parse_uintx(tail, &max_tenuring_thresh, 0)) {
3168 jio_fprintf(defaultStream::error_stream(),
3169 "Improperly specified VM option \'MaxTenuringThreshold=%s\'\n", tail);
3170 return JNI_EINVAL;
3171 }
3172
3173 if (FLAG_SET_CMDLINE(uintx, MaxTenuringThreshold, max_tenuring_thresh) != Flag::SUCCESS) {
3174 return JNI_EINVAL;
3175 }
3176
3177 if (MaxTenuringThreshold == 0) {
3178 if (FLAG_SET_CMDLINE(bool, NeverTenure, false) != Flag::SUCCESS) {
3179 return JNI_EINVAL;
3180 }
3181 if (FLAG_SET_CMDLINE(bool, AlwaysTenure, true) != Flag::SUCCESS) {
3182 return JNI_EINVAL;
3183 }
3184 } else {
3185 if (FLAG_SET_CMDLINE(bool, NeverTenure, false) != Flag::SUCCESS) {
3186 return JNI_EINVAL;
3187 }
3188 if (FLAG_SET_CMDLINE(bool, AlwaysTenure, false) != Flag::SUCCESS) {
3189 return JNI_EINVAL;
3190 }
3191 }
3192 } else if (match_option(option, "-XX:+DisplayVMOutputToStderr")) {
3193 if (FLAG_SET_CMDLINE(bool, DisplayVMOutputToStdout, false) != Flag::SUCCESS) {
3194 return JNI_EINVAL;
3195 }
3196 if (FLAG_SET_CMDLINE(bool, DisplayVMOutputToStderr, true) != Flag::SUCCESS) {
3197 return JNI_EINVAL;
3198 }
3199 } else if (match_option(option, "-XX:+DisplayVMOutputToStdout")) {
3200 if (FLAG_SET_CMDLINE(bool, DisplayVMOutputToStderr, false) != Flag::SUCCESS) {
3201 return JNI_EINVAL;
3202 }
3203 if (FLAG_SET_CMDLINE(bool, DisplayVMOutputToStdout, true) != Flag::SUCCESS) {
3204 return JNI_EINVAL;
3205 }
3206 } else if (match_option(option, "-XX:+ExtendedDTraceProbes")) {
3207 #if defined(DTRACE_ENABLED)
3208 if (FLAG_SET_CMDLINE(bool, ExtendedDTraceProbes, true) != Flag::SUCCESS) {
3209 return JNI_EINVAL;
3210 }
3211 if (FLAG_SET_CMDLINE(bool, DTraceMethodProbes, true) != Flag::SUCCESS) {
3212 return JNI_EINVAL;
3213 }
3214 if (FLAG_SET_CMDLINE(bool, DTraceAllocProbes, true) != Flag::SUCCESS) {
3215 return JNI_EINVAL;
3216 }
3217 if (FLAG_SET_CMDLINE(bool, DTraceMonitorProbes, true) != Flag::SUCCESS) {
3218 return JNI_EINVAL;
3219 }
3220 #else // defined(DTRACE_ENABLED)
3221 jio_fprintf(defaultStream::error_stream(),
3222 "ExtendedDTraceProbes flag is not applicable for this configuration\n");
3223 return JNI_EINVAL;
3224 #endif // defined(DTRACE_ENABLED)
3225 #ifdef ASSERT
3226 } else if (match_option(option, "-XX:+FullGCALot")) {
3227 if (FLAG_SET_CMDLINE(bool, FullGCALot, true) != Flag::SUCCESS) {
3228 return JNI_EINVAL;
3229 }
3230 // disable scavenge before parallel mark-compact
3231 if (FLAG_SET_CMDLINE(bool, ScavengeBeforeFullGC, false) != Flag::SUCCESS) {
3232 return JNI_EINVAL;
3233 }
3234 #endif
3235 #if !INCLUDE_MANAGEMENT
3236 } else if (match_option(option, "-XX:+ManagementServer")) {
3237 jio_fprintf(defaultStream::error_stream(),
3238 "ManagementServer is not supported in this VM.\n");
3239 return JNI_ERR;
3240 #endif // INCLUDE_MANAGEMENT
3241 } else if (match_option(option, "-XX:", &tail)) { // -XX:xxxx
3242 // Skip -XX:Flags= and -XX:VMOptionsFile= since those cases have
3243 // already been handled
3244 if ((strncmp(tail, "Flags=", strlen("Flags=")) != 0) &&
3245 (strncmp(tail, "VMOptionsFile=", strlen("VMOptionsFile=")) != 0)) {
3246 if (!process_argument(tail, args->ignoreUnrecognized, origin)) {
3247 return JNI_EINVAL;
3248 }
3249 }
3250 // Unknown option
3251 } else if (is_bad_option(option, args->ignoreUnrecognized)) {
3252 return JNI_ERR;
3253 }
3254 }
3255
3256 // PrintSharedArchiveAndExit will turn on
3257 // -Xshare:on
3258 // -Xlog:classpath=info
3259 if (PrintSharedArchiveAndExit) {
3260 if (FLAG_SET_CMDLINE(bool, UseSharedSpaces, true) != Flag::SUCCESS) {
3261 return JNI_EINVAL;
3262 }
3263 if (FLAG_SET_CMDLINE(bool, RequireSharedSpaces, true) != Flag::SUCCESS) {
3264 return JNI_EINVAL;
3265 }
3266 LogConfiguration::configure_stdout(LogLevel::Info, true, LOG_TAGS(classpath));
3267 }
3268
3269 // Change the default value for flags which have different default values
3270 // when working with older JDKs.
3271 #ifdef LINUX
3272 if (JDK_Version::current().compare_major(6) <= 0 &&
3273 FLAG_IS_DEFAULT(UseLinuxPosixThreadCPUClocks)) {
3274 FLAG_SET_DEFAULT(UseLinuxPosixThreadCPUClocks, false);
3275 }
3276 #endif // LINUX
3277 fix_appclasspath();
3278 return JNI_OK;
3279 }
3280
3281 // Remove all empty paths from the app classpath (if IgnoreEmptyClassPaths is enabled)
3282 //
3283 // This is necessary because some apps like to specify classpath like -cp foo.jar:${XYZ}:bar.jar
3284 // in their start-up scripts. If XYZ is empty, the classpath will look like "-cp foo.jar::bar.jar".
3285 // Java treats such empty paths as if the user specified "-cp foo.jar:.:bar.jar". I.e., an empty
3286 // path is treated as the current directory.
3287 //
3288 // This causes problems with CDS, which requires that all directories specified in the classpath
3289 // must be empty. In most cases, applications do NOT want to load classes from the current
3290 // directory anyway. Adding -XX:+IgnoreEmptyClassPaths will make these applications' start-up
3291 // scripts compatible with CDS.
3292 void Arguments::fix_appclasspath() {
3293 if (IgnoreEmptyClassPaths) {
3294 const char separator = *os::path_separator();
3295 const char* src = _java_class_path->value();
3296
3297 // skip over all the leading empty paths
3298 while (*src == separator) {
3299 src ++;
3300 }
3301
3302 char* copy = os::strdup_check_oom(src, mtInternal);
3303
3304 // trim all trailing empty paths
3305 for (char* tail = copy + strlen(copy) - 1; tail >= copy && *tail == separator; tail--) {
3306 *tail = '\0';
3307 }
3308
3309 char from[3] = {separator, separator, '\0'};
3310 char to [2] = {separator, '\0'};
3311 while (StringUtils::replace_no_expand(copy, from, to) > 0) {
3312 // Keep replacing "::" -> ":" until we have no more "::" (non-windows)
3313 // Keep replacing ";;" -> ";" until we have no more ";;" (windows)
3314 }
3315
3316 _java_class_path->set_value(copy);
3317 FreeHeap(copy); // a copy was made by set_value, so don't need this anymore
3318 }
3319 }
3320
3321 static bool has_jar_files(const char* directory) {
3322 DIR* dir = os::opendir(directory);
3323 if (dir == NULL) return false;
3324
3325 struct dirent *entry;
3326 char *dbuf = NEW_C_HEAP_ARRAY(char, os::readdir_buf_size(directory), mtInternal);
3327 bool hasJarFile = false;
3328 while (!hasJarFile && (entry = os::readdir(dir, (dirent *) dbuf)) != NULL) {
3329 const char* name = entry->d_name;
3330 const char* ext = name + strlen(name) - 4;
3331 hasJarFile = ext > name && (os::file_name_strcmp(ext, ".jar") == 0);
3332 }
3333 FREE_C_HEAP_ARRAY(char, dbuf);
3334 os::closedir(dir);
3335 return hasJarFile ;
3336 }
3337
3338 static int check_non_empty_dirs(const char* path) {
3339 const char separator = *os::path_separator();
3340 const char* const end = path + strlen(path);
3341 int nonEmptyDirs = 0;
3342 while (path < end) {
3343 const char* tmp_end = strchr(path, separator);
3344 if (tmp_end == NULL) {
3345 if (has_jar_files(path)) {
3346 nonEmptyDirs++;
3347 jio_fprintf(defaultStream::output_stream(),
3348 "Non-empty directory: %s\n", path);
3349 }
3350 path = end;
3351 } else {
3352 char* dirpath = NEW_C_HEAP_ARRAY(char, tmp_end - path + 1, mtInternal);
3353 memcpy(dirpath, path, tmp_end - path);
3354 dirpath[tmp_end - path] = '\0';
3355 if (has_jar_files(dirpath)) {
3356 nonEmptyDirs++;
3357 jio_fprintf(defaultStream::output_stream(),
3358 "Non-empty directory: %s\n", dirpath);
3359 }
3360 FREE_C_HEAP_ARRAY(char, dirpath);
3361 path = tmp_end + 1;
3362 }
3363 }
3364 return nonEmptyDirs;
3365 }
3366
3367 jint Arguments::finalize_vm_init_args(SysClassPath* scp_p, bool scp_assembly_required) {
3368 // check if the default lib/endorsed directory exists; if so, error
3369 char path[JVM_MAXPATHLEN];
3370 const char* fileSep = os::file_separator();
3371 sprintf(path, "%s%slib%sendorsed", Arguments::get_java_home(), fileSep, fileSep);
3372
3373 if (CheckEndorsedAndExtDirs) {
3374 int nonEmptyDirs = 0;
3375 // check endorsed directory
3376 nonEmptyDirs += check_non_empty_dirs(path);
3377 // check the extension directories
3378 nonEmptyDirs += check_non_empty_dirs(Arguments::get_ext_dirs());
3379 if (nonEmptyDirs > 0) {
3380 return JNI_ERR;
3381 }
3382 }
3383
3384 DIR* dir = os::opendir(path);
3385 if (dir != NULL) {
3386 jio_fprintf(defaultStream::output_stream(),
3387 "<JAVA_HOME>/lib/endorsed is not supported. Endorsed standards and standalone APIs\n"
3388 "in modular form will be supported via the concept of upgradeable modules.\n");
3389 os::closedir(dir);
3390 return JNI_ERR;
3391 }
3392
3393 sprintf(path, "%s%slib%sext", Arguments::get_java_home(), fileSep, fileSep);
3394 dir = os::opendir(path);
3395 if (dir != NULL) {
3396 jio_fprintf(defaultStream::output_stream(),
3397 "<JAVA_HOME>/lib/ext exists, extensions mechanism no longer supported; "
3398 "Use -classpath instead.\n.");
3399 os::closedir(dir);
3400 return JNI_ERR;
3401 }
3402
3403 if (scp_assembly_required) {
3404 // Assemble the bootclasspath elements into the final path.
3405 char *combined_path = scp_p->combined_path();
3406 Arguments::set_sysclasspath(combined_path);
3407 FREE_C_HEAP_ARRAY(char, combined_path);
3408 }
3409
3410 // This must be done after all arguments have been processed.
3411 // java_compiler() true means set to "NONE" or empty.
3412 if (java_compiler() && !xdebug_mode()) {
3413 // For backwards compatibility, we switch to interpreted mode if
3414 // -Djava.compiler="NONE" or "" is specified AND "-Xdebug" was
3415 // not specified.
3416 set_mode_flags(_int);
3417 }
3418
3419 // CompileThresholdScaling == 0.0 is same as -Xint: Disable compilation (enable interpreter-only mode),
3420 // but like -Xint, leave compilation thresholds unaffected.
3421 // With tiered compilation disabled, setting CompileThreshold to 0 disables compilation as well.
3422 if ((CompileThresholdScaling == 0.0) || (!TieredCompilation && CompileThreshold == 0)) {
3423 set_mode_flags(_int);
3424 }
3425
3426 // eventually fix up InitialTenuringThreshold if only MaxTenuringThreshold is set
3427 if (FLAG_IS_DEFAULT(InitialTenuringThreshold) && (InitialTenuringThreshold > MaxTenuringThreshold)) {
3428 FLAG_SET_ERGO(uintx, InitialTenuringThreshold, MaxTenuringThreshold);
3429 }
3430
3431 #if !defined(COMPILER2) && !INCLUDE_JVMCI
3432 // Don't degrade server performance for footprint
3433 if (FLAG_IS_DEFAULT(UseLargePages) &&
3434 MaxHeapSize < LargePageHeapSizeThreshold) {
3435 // No need for large granularity pages w/small heaps.
3436 // Note that large pages are enabled/disabled for both the
3437 // Java heap and the code cache.
3438 FLAG_SET_DEFAULT(UseLargePages, false);
3439 }
3440
3441 #elif defined(COMPILER2)
3442 if (!FLAG_IS_DEFAULT(OptoLoopAlignment) && FLAG_IS_DEFAULT(MaxLoopPad)) {
3443 FLAG_SET_DEFAULT(MaxLoopPad, OptoLoopAlignment-1);
3444 }
3445 #endif
3446
3447 #ifndef TIERED
3448 // Tiered compilation is undefined.
3449 UNSUPPORTED_OPTION(TieredCompilation, "TieredCompilation");
3450 #endif
3451
3452 // If we are running in a headless jre, force java.awt.headless property
3453 // to be true unless the property has already been set.
3454 // Also allow the OS environment variable JAVA_AWT_HEADLESS to set headless state.
3455 if (os::is_headless_jre()) {
3456 const char* headless = Arguments::get_property("java.awt.headless");
3457 if (headless == NULL) {
3458 const char *headless_env = ::getenv("JAVA_AWT_HEADLESS");
3459 if (headless_env == NULL) {
3460 if (!add_property("java.awt.headless=true")) {
3461 return JNI_ENOMEM;
3462 }
3463 } else {
3464 char buffer[256];
3465 jio_snprintf(buffer, sizeof(buffer), "java.awt.headless=%s", headless_env);
3466 if (!add_property(buffer)) {
3467 return JNI_ENOMEM;
3468 }
3469 }
3470 }
3471 }
3472
3473 if (UseConcMarkSweepGC && FLAG_IS_DEFAULT(UseParNewGC) && !UseParNewGC) {
3474 // CMS can only be used with ParNew
3475 FLAG_SET_ERGO(bool, UseParNewGC, true);
3476 }
3477
3478 if (!check_vm_args_consistency()) {
3479 return JNI_ERR;
3480 }
3481
3482 return JNI_OK;
3483 }
3484
3485 // Helper class for controlling the lifetime of JavaVMInitArgs
3486 // objects. The contents of the JavaVMInitArgs are guaranteed to be
3487 // deleted on the destruction of the ScopedVMInitArgs object.
3488 class ScopedVMInitArgs : public StackObj {
3489 private:
3490 JavaVMInitArgs _args;
3491 char* _container_name;
3492 bool _is_set;
3493 char* _vm_options_file_arg;
3494
3495 public:
3496 ScopedVMInitArgs(const char *container_name) {
3497 _args.version = JNI_VERSION_1_2;
3498 _args.nOptions = 0;
3499 _args.options = NULL;
3500 _args.ignoreUnrecognized = false;
3501 _container_name = (char *)container_name;
3502 _is_set = false;
3503 _vm_options_file_arg = NULL;
3504 }
3505
3506 // Populates the JavaVMInitArgs object represented by this
3507 // ScopedVMInitArgs object with the arguments in options. The
3508 // allocated memory is deleted by the destructor. If this method
3509 // returns anything other than JNI_OK, then this object is in a
3510 // partially constructed state, and should be abandoned.
3511 jint set_args(GrowableArray<JavaVMOption>* options) {
3512 _is_set = true;
3513 JavaVMOption* options_arr = NEW_C_HEAP_ARRAY_RETURN_NULL(
3514 JavaVMOption, options->length(), mtInternal);
3515 if (options_arr == NULL) {
3516 return JNI_ENOMEM;
3517 }
3518 _args.options = options_arr;
3519
3520 for (int i = 0; i < options->length(); i++) {
3521 options_arr[i] = options->at(i);
3522 options_arr[i].optionString = os::strdup(options_arr[i].optionString);
3523 if (options_arr[i].optionString == NULL) {
3524 // Rely on the destructor to do cleanup.
3525 _args.nOptions = i;
3526 return JNI_ENOMEM;
3527 }
3528 }
3529
3530 _args.nOptions = options->length();
3531 _args.ignoreUnrecognized = IgnoreUnrecognizedVMOptions;
3532 return JNI_OK;
3533 }
3534
3535 JavaVMInitArgs* get() { return &_args; }
3536 char* container_name() { return _container_name; }
3537 bool is_set() { return _is_set; }
3538 bool found_vm_options_file_arg() { return _vm_options_file_arg != NULL; }
3539 char* vm_options_file_arg() { return _vm_options_file_arg; }
3540
3541 void set_vm_options_file_arg(const char *vm_options_file_arg) {
3542 if (_vm_options_file_arg != NULL) {
3543 os::free(_vm_options_file_arg);
3544 }
3545 _vm_options_file_arg = os::strdup_check_oom(vm_options_file_arg);
3546 }
3547
3548 ~ScopedVMInitArgs() {
3549 if (_vm_options_file_arg != NULL) {
3550 os::free(_vm_options_file_arg);
3551 }
3552 if (_args.options == NULL) return;
3553 for (int i = 0; i < _args.nOptions; i++) {
3554 os::free(_args.options[i].optionString);
3555 }
3556 FREE_C_HEAP_ARRAY(JavaVMOption, _args.options);
3557 }
3558
3559 // Insert options into this option list, to replace option at
3560 // vm_options_file_pos (-XX:VMOptionsFile)
3561 jint insert(const JavaVMInitArgs* args,
3562 const JavaVMInitArgs* args_to_insert,
3563 const int vm_options_file_pos) {
3564 assert(_args.options == NULL, "shouldn't be set yet");
3565 assert(args_to_insert->nOptions != 0, "there should be args to insert");
3566 assert(vm_options_file_pos != -1, "vm_options_file_pos should be set");
3567
3568 int length = args->nOptions + args_to_insert->nOptions - 1;
3569 GrowableArray<JavaVMOption> *options = new (ResourceObj::C_HEAP, mtInternal)
3570 GrowableArray<JavaVMOption>(length, true); // Construct new option array
3571 for (int i = 0; i < args->nOptions; i++) {
3572 if (i == vm_options_file_pos) {
3573 // insert the new options starting at the same place as the
3574 // -XX:VMOptionsFile option
3575 for (int j = 0; j < args_to_insert->nOptions; j++) {
3576 options->push(args_to_insert->options[j]);
3577 }
3578 } else {
3579 options->push(args->options[i]);
3580 }
3581 }
3582 // make into options array
3583 jint result = set_args(options);
3584 delete options;
3585 return result;
3586 }
3587 };
3588
3589 jint Arguments::parse_java_options_environment_variable(ScopedVMInitArgs* args) {
3590 return parse_options_environment_variable("_JAVA_OPTIONS", args);
3591 }
3592
3593 jint Arguments::parse_java_tool_options_environment_variable(ScopedVMInitArgs* args) {
3594 return parse_options_environment_variable("JAVA_TOOL_OPTIONS", args);
3595 }
3596
3597 jint Arguments::parse_options_environment_variable(const char* name,
3598 ScopedVMInitArgs* vm_args) {
3599 char *buffer = ::getenv(name);
3600
3601 // Don't check this environment variable if user has special privileges
3602 // (e.g. unix su command).
3603 if (buffer == NULL || os::have_special_privileges()) {
3604 return JNI_OK;
3605 }
3606
3607 if ((buffer = os::strdup(buffer)) == NULL) {
3608 return JNI_ENOMEM;
3609 }
3610
3611 int retcode = parse_options_buffer(name, buffer, strlen(buffer), vm_args);
3612
3613 os::free(buffer);
3614 return retcode;
3615 }
3616
3617 jint Arguments::parse_vm_options_file(const char* file_name, ScopedVMInitArgs* vm_args) {
3618 // read file into buffer
3619 int fd = ::open(file_name, O_RDONLY);
3620 if (fd < 0) {
3621 jio_fprintf(defaultStream::error_stream(),
3622 "Could not open options file '%s'\n",
3623 file_name);
3624 return JNI_ERR;
3625 }
3626
3627 struct stat stbuf;
3628 int retcode = os::stat(file_name, &stbuf);
3629 if (retcode != 0) {
3630 jio_fprintf(defaultStream::error_stream(),
3631 "Could not stat options file '%s'\n",
3632 file_name);
3633 os::close(fd);
3634 return JNI_ERR;
3635 }
3636
3637 if (stbuf.st_size == 0) {
3638 // tell caller there is no option data and that is ok
3639 os::close(fd);
3640 return JNI_OK;
3641 }
3642
3643 // '+ 1' for NULL termination even with max bytes
3644 size_t bytes_alloc = stbuf.st_size + 1;
3645
3646 char *buf = NEW_C_HEAP_ARRAY_RETURN_NULL(char, bytes_alloc, mtInternal);
3647 if (NULL == buf) {
3648 jio_fprintf(defaultStream::error_stream(),
3649 "Could not allocate read buffer for options file parse\n");
3650 os::close(fd);
3651 return JNI_ENOMEM;
3652 }
3653
3654 memset(buf, 0, bytes_alloc);
3655
3656 // Fill buffer
3657 // Use ::read() instead of os::read because os::read()
3658 // might do a thread state transition
3659 // and it is too early for that here
3660
3661 ssize_t bytes_read = ::read(fd, (void *)buf, (unsigned)bytes_alloc);
3662 os::close(fd);
3663 if (bytes_read < 0) {
3664 FREE_C_HEAP_ARRAY(char, buf);
3665 jio_fprintf(defaultStream::error_stream(),
3666 "Could not read options file '%s'\n", file_name);
3667 return JNI_ERR;
3668 }
3669
3670 if (bytes_read == 0) {
3671 // tell caller there is no option data and that is ok
3672 FREE_C_HEAP_ARRAY(char, buf);
3673 return JNI_OK;
3674 }
3675
3676 retcode = parse_options_buffer(file_name, buf, bytes_read, vm_args);
3677
3678 FREE_C_HEAP_ARRAY(char, buf);
3679 return retcode;
3680 }
3681
3682 jint Arguments::parse_options_buffer(const char* name, char* buffer, const size_t buf_len, ScopedVMInitArgs* vm_args) {
3683 GrowableArray<JavaVMOption> *options = new (ResourceObj::C_HEAP, mtInternal) GrowableArray<JavaVMOption>(2, true); // Construct option array
3684
3685 // some pointers to help with parsing
3686 char *buffer_end = buffer + buf_len;
3687 char *opt_hd = buffer;
3688 char *wrt = buffer;
3689 char *rd = buffer;
3690
3691 // parse all options
3692 while (rd < buffer_end) {
3693 // skip leading white space from the input string
3694 while (rd < buffer_end && isspace(*rd)) {
3695 rd++;
3696 }
3697
3698 if (rd >= buffer_end) {
3699 break;
3700 }
3701
3702 // Remember this is where we found the head of the token.
3703 opt_hd = wrt;
3704
3705 // Tokens are strings of non white space characters separated
3706 // by one or more white spaces.
3707 while (rd < buffer_end && !isspace(*rd)) {
3708 if (*rd == '\'' || *rd == '"') { // handle a quoted string
3709 int quote = *rd; // matching quote to look for
3710 rd++; // don't copy open quote
3711 while (rd < buffer_end && *rd != quote) {
3712 // include everything (even spaces)
3713 // up until the close quote
3714 *wrt++ = *rd++; // copy to option string
3715 }
3716
3717 if (rd < buffer_end) {
3718 rd++; // don't copy close quote
3719 } else {
3720 // did not see closing quote
3721 jio_fprintf(defaultStream::error_stream(),
3722 "Unmatched quote in %s\n", name);
3723 delete options;
3724 return JNI_ERR;
3725 }
3726 } else {
3727 *wrt++ = *rd++; // copy to option string
3728 }
3729 }
3730
3731 // steal a white space character and set it to NULL
3732 *wrt++ = '\0';
3733 // We now have a complete token
3734
3735 JavaVMOption option;
3736 option.optionString = opt_hd;
3737 option.extraInfo = NULL;
3738
3739 options->append(option); // Fill in option
3740
3741 rd++; // Advance to next character
3742 }
3743
3744 // Fill out JavaVMInitArgs structure.
3745 jint status = vm_args->set_args(options);
3746
3747 delete options;
3748 return status;
3749 }
3750
3751 void Arguments::set_shared_spaces_flags() {
3752 if (DumpSharedSpaces) {
3753 if (RequireSharedSpaces) {
3754 warning("Cannot dump shared archive while using shared archive");
3755 }
3756 UseSharedSpaces = false;
3757 #ifdef _LP64
3758 if (!UseCompressedOops || !UseCompressedClassPointers) {
3759 vm_exit_during_initialization(
3760 "Cannot dump shared archive when UseCompressedOops or UseCompressedClassPointers is off.", NULL);
3761 }
3762 } else {
3763 if (!UseCompressedOops || !UseCompressedClassPointers) {
3764 no_shared_spaces("UseCompressedOops and UseCompressedClassPointers must be on for UseSharedSpaces.");
3765 }
3766 #endif
3767 }
3768 }
3769
3770 #if !INCLUDE_ALL_GCS
3771 static void force_serial_gc() {
3772 FLAG_SET_DEFAULT(UseSerialGC, true);
3773 UNSUPPORTED_GC_OPTION(UseG1GC);
3774 UNSUPPORTED_GC_OPTION(UseParallelGC);
3775 UNSUPPORTED_GC_OPTION(UseParallelOldGC);
3776 UNSUPPORTED_GC_OPTION(UseConcMarkSweepGC);
3777 UNSUPPORTED_GC_OPTION(UseParNewGC);
3778 }
3779 #endif // INCLUDE_ALL_GCS
3780
3781 // Sharing support
3782 // Construct the path to the archive
3783 static char* get_shared_archive_path() {
3784 char *shared_archive_path;
3785 if (SharedArchiveFile == NULL) {
3786 char jvm_path[JVM_MAXPATHLEN];
3787 os::jvm_path(jvm_path, sizeof(jvm_path));
3788 char *end = strrchr(jvm_path, *os::file_separator());
3789 if (end != NULL) *end = '\0';
3790 size_t jvm_path_len = strlen(jvm_path);
3791 size_t file_sep_len = strlen(os::file_separator());
3792 const size_t len = jvm_path_len + file_sep_len + 20;
3793 shared_archive_path = NEW_C_HEAP_ARRAY(char, len, mtInternal);
3794 if (shared_archive_path != NULL) {
3795 jio_snprintf(shared_archive_path, len, "%s%sclasses.jsa",
3796 jvm_path, os::file_separator());
3797 }
3798 } else {
3799 shared_archive_path = os::strdup_check_oom(SharedArchiveFile, mtInternal);
3800 }
3801 return shared_archive_path;
3802 }
3803
3804 #ifndef PRODUCT
3805 // Determine whether LogVMOutput should be implicitly turned on.
3806 static bool use_vm_log() {
3807 if (LogCompilation || !FLAG_IS_DEFAULT(LogFile) ||
3808 PrintCompilation || PrintInlining || PrintDependencies || PrintNativeNMethods ||
3809 PrintDebugInfo || PrintRelocations || PrintNMethods || PrintExceptionHandlers ||
3810 PrintAssembly || TraceDeoptimization || TraceDependencies ||
3811 (VerifyDependencies && FLAG_IS_CMDLINE(VerifyDependencies))) {
3812 return true;
3813 }
3814
3815 #ifdef COMPILER1
3816 if (PrintC1Statistics) {
3817 return true;
3818 }
3819 #endif // COMPILER1
3820
3821 #ifdef COMPILER2
3822 if (PrintOptoAssembly || PrintOptoStatistics) {
3823 return true;
3824 }
3825 #endif // COMPILER2
3826
3827 return false;
3828 }
3829
3830 #endif // PRODUCT
3831
3832 bool Arguments::args_contains_vm_options_file_arg(const JavaVMInitArgs* args) {
3833 for (int index = 0; index < args->nOptions; index++) {
3834 const JavaVMOption* option = args->options + index;
3835 const char* tail;
3836 if (match_option(option, "-XX:VMOptionsFile=", &tail)) {
3837 return true;
3838 }
3839 }
3840 return false;
3841 }
3842
3843 jint Arguments::insert_vm_options_file(const JavaVMInitArgs* args,
3844 const char* vm_options_file,
3845 const int vm_options_file_pos,
3846 ScopedVMInitArgs* vm_options_file_args,
3847 ScopedVMInitArgs* args_out) {
3848 jint code = parse_vm_options_file(vm_options_file, vm_options_file_args);
3849 if (code != JNI_OK) {
3850 return code;
3851 }
3852
3853 if (vm_options_file_args->get()->nOptions < 1) {
3854 return JNI_OK;
3855 }
3856
3857 if (args_contains_vm_options_file_arg(vm_options_file_args->get())) {
3858 jio_fprintf(defaultStream::error_stream(),
3859 "A VM options file may not refer to a VM options file. "
3860 "Specification of '-XX:VMOptionsFile=<file-name>' in the "
3861 "options file '%s' in options container '%s' is an error.\n",
3862 vm_options_file_args->vm_options_file_arg(),
3863 vm_options_file_args->container_name());
3864 return JNI_EINVAL;
3865 }
3866
3867 return args_out->insert(args, vm_options_file_args->get(),
3868 vm_options_file_pos);
3869 }
3870
3871 // Expand -XX:VMOptionsFile found in args_in as needed.
3872 // mod_args and args_out parameters may return values as needed.
3873 jint Arguments::expand_vm_options_as_needed(const JavaVMInitArgs* args_in,
3874 ScopedVMInitArgs* mod_args,
3875 JavaVMInitArgs** args_out) {
3876 jint code = match_special_option_and_act(args_in, mod_args);
3877 if (code != JNI_OK) {
3878 return code;
3879 }
3880
3881 if (mod_args->is_set()) {
3882 // args_in contains -XX:VMOptionsFile and mod_args contains the
3883 // original options from args_in along with the options expanded
3884 // from the VMOptionsFile. Return a short-hand to the caller.
3885 *args_out = mod_args->get();
3886 } else {
3887 *args_out = (JavaVMInitArgs *)args_in; // no changes so use args_in
3888 }
3889 return JNI_OK;
3890 }
3891
3892 jint Arguments::match_special_option_and_act(const JavaVMInitArgs* args,
3893 ScopedVMInitArgs* args_out) {
3894 // Remaining part of option string
3895 const char* tail;
3896 ScopedVMInitArgs vm_options_file_args(args_out->container_name());
3897
3898 for (int index = 0; index < args->nOptions; index++) {
3899 const JavaVMOption* option = args->options + index;
3900 if (ArgumentsExt::process_options(option)) {
3901 continue;
3902 }
3903 if (match_option(option, "-XX:Flags=", &tail)) {
3904 Arguments::set_jvm_flags_file(tail);
3905 continue;
3906 }
3907 if (match_option(option, "-XX:VMOptionsFile=", &tail)) {
3908 if (vm_options_file_args.found_vm_options_file_arg()) {
3909 jio_fprintf(defaultStream::error_stream(),
3910 "The option '%s' is already specified in the options "
3911 "container '%s' so the specification of '%s' in the "
3912 "same options container is an error.\n",
3913 vm_options_file_args.vm_options_file_arg(),
3914 vm_options_file_args.container_name(),
3915 option->optionString);
3916 return JNI_EINVAL;
3917 }
3918 vm_options_file_args.set_vm_options_file_arg(option->optionString);
3919 // If there's a VMOptionsFile, parse that
3920 jint code = insert_vm_options_file(args, tail, index,
3921 &vm_options_file_args, args_out);
3922 if (code != JNI_OK) {
3923 return code;
3924 }
3925 args_out->set_vm_options_file_arg(vm_options_file_args.vm_options_file_arg());
3926 if (args_out->is_set()) {
3927 // The VMOptions file inserted some options so switch 'args'
3928 // to the new set of options, and continue processing which
3929 // preserves "last option wins" semantics.
3930 args = args_out->get();
3931 // The first option from the VMOptionsFile replaces the
3932 // current option. So we back track to process the
3933 // replacement option.
3934 index--;
3935 }
3936 continue;
3937 }
3938 if (match_option(option, "-XX:+PrintVMOptions")) {
3939 PrintVMOptions = true;
3940 continue;
3941 }
3942 if (match_option(option, "-XX:-PrintVMOptions")) {
3943 PrintVMOptions = false;
3944 continue;
3945 }
3946 if (match_option(option, "-XX:+IgnoreUnrecognizedVMOptions")) {
3947 IgnoreUnrecognizedVMOptions = true;
3948 continue;
3949 }
3950 if (match_option(option, "-XX:-IgnoreUnrecognizedVMOptions")) {
3951 IgnoreUnrecognizedVMOptions = false;
3952 continue;
3953 }
3954 if (match_option(option, "-XX:+PrintFlagsInitial")) {
3955 CommandLineFlags::printFlags(tty, false);
3956 vm_exit(0);
3957 }
3958 if (match_option(option, "-XX:NativeMemoryTracking", &tail)) {
3959 #if INCLUDE_NMT
3960 // The launcher did not setup nmt environment variable properly.
3961 if (!MemTracker::check_launcher_nmt_support(tail)) {
3962 warning("Native Memory Tracking did not setup properly, using wrong launcher?");
3963 }
3964
3965 // Verify if nmt option is valid.
3966 if (MemTracker::verify_nmt_option()) {
3967 // Late initialization, still in single-threaded mode.
3968 if (MemTracker::tracking_level() >= NMT_summary) {
3969 MemTracker::init();
3970 }
3971 } else {
3972 vm_exit_during_initialization("Syntax error, expecting -XX:NativeMemoryTracking=[off|summary|detail]", NULL);
3973 }
3974 continue;
3975 #else
3976 jio_fprintf(defaultStream::error_stream(),
3977 "Native Memory Tracking is not supported in this VM\n");
3978 return JNI_ERR;
3979 #endif
3980 }
3981
3982 #ifndef PRODUCT
3983 if (match_option(option, "-XX:+PrintFlagsWithComments")) {
3984 CommandLineFlags::printFlags(tty, true);
3985 vm_exit(0);
3986 }
3987 #endif
3988 }
3989 return JNI_OK;
3990 }
3991
3992 static void print_options(const JavaVMInitArgs *args) {
3993 const char* tail;
3994 for (int index = 0; index < args->nOptions; index++) {
3995 const JavaVMOption *option = args->options + index;
3996 if (match_option(option, "-XX:", &tail)) {
3997 logOption(tail);
3998 }
3999 }
4000 }
4001
4002 bool Arguments::handle_deprecated_print_gc_flags() {
4003 if (PrintGC) {
4004 log_warning(gc)("-XX:+PrintGC is deprecated. Will use -Xlog:gc instead.");
4005 }
4006 if (PrintGCDetails) {
4007 log_warning(gc)("-XX:+PrintGCDetails is deprecated. Will use -Xlog:gc* instead.");
4008 }
4009
4010 if (_gc_log_filename != NULL) {
4011 // -Xloggc was used to specify a filename
4012 const char* gc_conf = PrintGCDetails ? "gc*" : "gc";
4013 return LogConfiguration::parse_log_arguments(_gc_log_filename, gc_conf, NULL, NULL, NULL);
4014 } else if (PrintGC || PrintGCDetails) {
4015 LogConfiguration::configure_stdout(LogLevel::Info, !PrintGCDetails, LOG_TAGS(gc));
4016 }
4017 return true;
4018 }
4019
4020 // Parse entry point called from JNI_CreateJavaVM
4021
4022 jint Arguments::parse(const JavaVMInitArgs* initial_cmd_args) {
4023 assert(verify_special_jvm_flags(), "deprecated and obsolete flag table inconsistent");
4024
4025 // Initialize ranges and constraints
4026 CommandLineFlagRangeList::init();
4027 CommandLineFlagConstraintList::init();
4028
4029 // If flag "-XX:Flags=flags-file" is used it will be the first option to be processed.
4030 const char* hotspotrc = ".hotspotrc";
4031 bool settings_file_specified = false;
4032 bool needs_hotspotrc_warning = false;
4033 ScopedVMInitArgs initial_java_tool_options_args("env_var='JAVA_TOOL_OPTIONS'");
4034 ScopedVMInitArgs initial_java_options_args("env_var='_JAVA_OPTIONS'");
4035
4036 // Pointers to current working set of containers
4037 JavaVMInitArgs* cur_cmd_args;
4038 JavaVMInitArgs* cur_java_options_args;
4039 JavaVMInitArgs* cur_java_tool_options_args;
4040
4041 // Containers for modified/expanded options
4042 ScopedVMInitArgs mod_cmd_args("cmd_line_args");
4043 ScopedVMInitArgs mod_java_tool_options_args("env_var='JAVA_TOOL_OPTIONS'");
4044 ScopedVMInitArgs mod_java_options_args("env_var='_JAVA_OPTIONS'");
4045
4046
4047 jint code =
4048 parse_java_tool_options_environment_variable(&initial_java_tool_options_args);
4049 if (code != JNI_OK) {
4050 return code;
4051 }
4052
4053 code = parse_java_options_environment_variable(&initial_java_options_args);
4054 if (code != JNI_OK) {
4055 return code;
4056 }
4057
4058 code = expand_vm_options_as_needed(initial_java_tool_options_args.get(),
4059 &mod_java_tool_options_args,
4060 &cur_java_tool_options_args);
4061 if (code != JNI_OK) {
4062 return code;
4063 }
4064
4065 code = expand_vm_options_as_needed(initial_cmd_args,
4066 &mod_cmd_args,
4067 &cur_cmd_args);
4068 if (code != JNI_OK) {
4069 return code;
4070 }
4071
4072 code = expand_vm_options_as_needed(initial_java_options_args.get(),
4073 &mod_java_options_args,
4074 &cur_java_options_args);
4075 if (code != JNI_OK) {
4076 return code;
4077 }
4078
4079 const char* flags_file = Arguments::get_jvm_flags_file();
4080 settings_file_specified = (flags_file != NULL);
4081
4082 if (IgnoreUnrecognizedVMOptions) {
4083 cur_cmd_args->ignoreUnrecognized = true;
4084 cur_java_tool_options_args->ignoreUnrecognized = true;
4085 cur_java_options_args->ignoreUnrecognized = true;
4086 }
4087
4088 // Parse specified settings file
4089 if (settings_file_specified) {
4090 if (!process_settings_file(flags_file, true,
4091 cur_cmd_args->ignoreUnrecognized)) {
4092 return JNI_EINVAL;
4093 }
4094 } else {
4095 #ifdef ASSERT
4096 // Parse default .hotspotrc settings file
4097 if (!process_settings_file(".hotspotrc", false,
4098 cur_cmd_args->ignoreUnrecognized)) {
4099 return JNI_EINVAL;
4100 }
4101 #else
4102 struct stat buf;
4103 if (os::stat(hotspotrc, &buf) == 0) {
4104 needs_hotspotrc_warning = true;
4105 }
4106 #endif
4107 }
4108
4109 if (PrintVMOptions) {
4110 print_options(cur_java_tool_options_args);
4111 print_options(cur_cmd_args);
4112 print_options(cur_java_options_args);
4113 }
4114
4115 // Parse JavaVMInitArgs structure passed in, as well as JAVA_TOOL_OPTIONS and _JAVA_OPTIONS
4116 jint result = parse_vm_init_args(cur_java_tool_options_args,
4117 cur_java_options_args,
4118 cur_cmd_args);
4119
4120 if (result != JNI_OK) {
4121 return result;
4122 }
4123
4124 // Call get_shared_archive_path() here, after possible SharedArchiveFile option got parsed.
4125 SharedArchivePath = get_shared_archive_path();
4126 if (SharedArchivePath == NULL) {
4127 return JNI_ENOMEM;
4128 }
4129
4130 // Set up VerifySharedSpaces
4131 if (FLAG_IS_DEFAULT(VerifySharedSpaces) && SharedArchiveFile != NULL) {
4132 VerifySharedSpaces = true;
4133 }
4134
4135 // Delay warning until here so that we've had a chance to process
4136 // the -XX:-PrintWarnings flag
4137 if (needs_hotspotrc_warning) {
4138 warning("%s file is present but has been ignored. "
4139 "Run with -XX:Flags=%s to load the file.",
4140 hotspotrc, hotspotrc);
4141 }
4142
4143 #if defined(_ALLBSD_SOURCE) || defined(AIX) // UseLargePages is not yet supported on BSD and AIX.
4144 UNSUPPORTED_OPTION(UseLargePages, "-XX:+UseLargePages");
4145 #endif
4146
4147 ArgumentsExt::report_unsupported_options();
4148
4149 #ifndef PRODUCT
4150 if (TraceBytecodesAt != 0) {
4151 TraceBytecodes = true;
4152 }
4153 if (CountCompiledCalls) {
4154 if (UseCounterDecay) {
4155 warning("UseCounterDecay disabled because CountCalls is set");
4156 UseCounterDecay = false;
4157 }
4158 }
4159 #endif // PRODUCT
4160
4161 if (ScavengeRootsInCode == 0) {
4162 if (!FLAG_IS_DEFAULT(ScavengeRootsInCode)) {
4163 warning("Forcing ScavengeRootsInCode non-zero");
4164 }
4165 ScavengeRootsInCode = 1;
4166 }
4167
4168 if (!handle_deprecated_print_gc_flags()) {
4169 return JNI_EINVAL;
4170 }
4171
4172 // Set object alignment values.
4173 set_object_alignment();
4174
4175 #if !INCLUDE_ALL_GCS
4176 force_serial_gc();
4177 #endif // INCLUDE_ALL_GCS
4178 #if !INCLUDE_CDS
4179 if (DumpSharedSpaces || RequireSharedSpaces) {
4180 jio_fprintf(defaultStream::error_stream(),
4181 "Shared spaces are not supported in this VM\n");
4182 return JNI_ERR;
4183 }
4184 if ((UseSharedSpaces && FLAG_IS_CMDLINE(UseSharedSpaces)) || PrintSharedSpaces) {
4185 warning("Shared spaces are not supported in this VM");
4186 FLAG_SET_DEFAULT(UseSharedSpaces, false);
4187 FLAG_SET_DEFAULT(PrintSharedSpaces, false);
4188 }
4189 no_shared_spaces("CDS Disabled");
4190 #endif // INCLUDE_CDS
4191
4192 return JNI_OK;
4193 }
4194
4195 jint Arguments::apply_ergo() {
4196
4197 // Set flags based on ergonomics.
4198 set_ergonomics_flags();
4199
4200 set_shared_spaces_flags();
4201
4202 // Check the GC selections again.
4203 if (!check_gc_consistency()) {
4204 return JNI_EINVAL;
4205 }
4206
4207 if (TieredCompilation) {
4208 set_tiered_flags();
4209 } else {
4210 int max_compilation_policy_choice = 1;
4211 #ifdef COMPILER2
4212 max_compilation_policy_choice = 2;
4213 #endif
4214 // Check if the policy is valid.
4215 if (CompilationPolicyChoice >= max_compilation_policy_choice) {
4216 vm_exit_during_initialization(
4217 "Incompatible compilation policy selected", NULL);
4218 }
4219 // Scale CompileThreshold
4220 // CompileThresholdScaling == 0.0 is equivalent to -Xint and leaves CompileThreshold unchanged.
4221 if (!FLAG_IS_DEFAULT(CompileThresholdScaling) && CompileThresholdScaling > 0.0) {
4222 FLAG_SET_ERGO(intx, CompileThreshold, scaled_compile_threshold(CompileThreshold));
4223 }
4224 }
4225
4226 #ifdef COMPILER2
4227 #ifndef PRODUCT
4228 if (PrintIdealGraphLevel > 0) {
4229 FLAG_SET_ERGO(bool, PrintIdealGraph, true);
4230 }
4231 #endif
4232 #endif
4233
4234 // Set heap size based on available physical memory
4235 set_heap_size();
4236
4237 ArgumentsExt::set_gc_specific_flags();
4238
4239 // Initialize Metaspace flags and alignments
4240 Metaspace::ergo_initialize();
4241
4242 // Set bytecode rewriting flags
4243 set_bytecode_flags();
4244
4245 // Set flags if Aggressive optimization flags (-XX:+AggressiveOpts) enabled
4246 jint code = set_aggressive_opts_flags();
4247 if (code != JNI_OK) {
4248 return code;
4249 }
4250
4251 // Turn off biased locking for locking debug mode flags,
4252 // which are subtly different from each other but neither works with
4253 // biased locking
4254 if (UseHeavyMonitors
4255 #ifdef COMPILER1
4256 || !UseFastLocking
4257 #endif // COMPILER1
4258 #if INCLUDE_JVMCI
4259 || !JVMCIUseFastLocking
4260 #endif
4261 ) {
4262 if (!FLAG_IS_DEFAULT(UseBiasedLocking) && UseBiasedLocking) {
4263 // flag set to true on command line; warn the user that they
4264 // can't enable biased locking here
4265 warning("Biased Locking is not supported with locking debug flags"
4266 "; ignoring UseBiasedLocking flag." );
4267 }
4268 UseBiasedLocking = false;
4269 }
4270
4271 #ifdef CC_INTERP
4272 // Clear flags not supported on zero.
4273 FLAG_SET_DEFAULT(ProfileInterpreter, false);
4274 FLAG_SET_DEFAULT(UseBiasedLocking, false);
4275 LP64_ONLY(FLAG_SET_DEFAULT(UseCompressedOops, false));
4276 LP64_ONLY(FLAG_SET_DEFAULT(UseCompressedClassPointers, false));
4277 #endif // CC_INTERP
4278
4279 #ifdef COMPILER2
4280 if (!EliminateLocks) {
4281 EliminateNestedLocks = false;
4282 }
4283 if (!Inline) {
4284 IncrementalInline = false;
4285 }
4286 #ifndef PRODUCT
4287 if (!IncrementalInline) {
4288 AlwaysIncrementalInline = false;
4289 }
4290 #endif
4291 if (!UseTypeSpeculation && FLAG_IS_DEFAULT(TypeProfileLevel)) {
4292 // nothing to use the profiling, turn if off
4293 FLAG_SET_DEFAULT(TypeProfileLevel, 0);
4294 }
4295 #endif
4296
4297 if (PrintAssembly && FLAG_IS_DEFAULT(DebugNonSafepoints)) {
4298 warning("PrintAssembly is enabled; turning on DebugNonSafepoints to gain additional output");
4299 DebugNonSafepoints = true;
4300 }
4301
4302 if (FLAG_IS_CMDLINE(CompressedClassSpaceSize) && !UseCompressedClassPointers) {
4303 warning("Setting CompressedClassSpaceSize has no effect when compressed class pointers are not used");
4304 }
4305
4306 #ifndef PRODUCT
4307 if (!LogVMOutput && FLAG_IS_DEFAULT(LogVMOutput)) {
4308 if (use_vm_log()) {
4309 LogVMOutput = true;
4310 }
4311 }
4312 #endif // PRODUCT
4313
4314 if (PrintCommandLineFlags) {
4315 CommandLineFlags::printSetFlags(tty);
4316 }
4317
4318 // Apply CPU specific policy for the BiasedLocking
4319 if (UseBiasedLocking) {
4320 if (!VM_Version::use_biased_locking() &&
4321 !(FLAG_IS_CMDLINE(UseBiasedLocking))) {
4322 UseBiasedLocking = false;
4323 }
4324 }
4325 #ifdef COMPILER2
4326 if (!UseBiasedLocking || EmitSync != 0) {
4327 UseOptoBiasInlining = false;
4328 }
4329 #endif
4330
4331 return JNI_OK;
4332 }
4333
4334 jint Arguments::adjust_after_os() {
4335 if (UseNUMA) {
4336 if (UseParallelGC || UseParallelOldGC) {
4337 if (FLAG_IS_DEFAULT(MinHeapDeltaBytes)) {
4338 FLAG_SET_DEFAULT(MinHeapDeltaBytes, 64*M);
4339 }
4340 }
4341 // UseNUMAInterleaving is set to ON for all collectors and
4342 // platforms when UseNUMA is set to ON. NUMA-aware collectors
4343 // such as the parallel collector for Linux and Solaris will
4344 // interleave old gen and survivor spaces on top of NUMA
4345 // allocation policy for the eden space.
4346 // Non NUMA-aware collectors such as CMS, G1 and Serial-GC on
4347 // all platforms and ParallelGC on Windows will interleave all
4348 // of the heap spaces across NUMA nodes.
4349 if (FLAG_IS_DEFAULT(UseNUMAInterleaving)) {
4350 FLAG_SET_ERGO(bool, UseNUMAInterleaving, true);
4351 }
4352 }
4353 return JNI_OK;
4354 }
4355
4356 int Arguments::PropertyList_count(SystemProperty* pl) {
4357 int count = 0;
4358 while(pl != NULL) {
4359 count++;
4360 pl = pl->next();
4361 }
4362 return count;
4363 }
4364
4365 const char* Arguments::PropertyList_get_value(SystemProperty *pl, const char* key) {
4366 assert(key != NULL, "just checking");
4367 SystemProperty* prop;
4368 for (prop = pl; prop != NULL; prop = prop->next()) {
4369 if (strcmp(key, prop->key()) == 0) return prop->value();
4370 }
4371 return NULL;
4372 }
4373
4374 const char* Arguments::PropertyList_get_key_at(SystemProperty *pl, int index) {
4375 int count = 0;
4376 const char* ret_val = NULL;
4377
4378 while(pl != NULL) {
4379 if(count >= index) {
4380 ret_val = pl->key();
4381 break;
4382 }
4383 count++;
4384 pl = pl->next();
4385 }
4386
4387 return ret_val;
4388 }
4389
4390 char* Arguments::PropertyList_get_value_at(SystemProperty* pl, int index) {
4391 int count = 0;
4392 char* ret_val = NULL;
4393
4394 while(pl != NULL) {
4395 if(count >= index) {
4396 ret_val = pl->value();
4397 break;
4398 }
4399 count++;
4400 pl = pl->next();
4401 }
4402
4403 return ret_val;
4404 }
4405
4406 void Arguments::PropertyList_add(SystemProperty** plist, SystemProperty *new_p) {
4407 SystemProperty* p = *plist;
4408 if (p == NULL) {
4409 *plist = new_p;
4410 } else {
4411 while (p->next() != NULL) {
4412 p = p->next();
4413 }
4414 p->set_next(new_p);
4415 }
4416 }
4417
4418 void Arguments::PropertyList_add(SystemProperty** plist, const char* k, const char* v) {
4419 if (plist == NULL)
4420 return;
4421
4422 SystemProperty* new_p = new SystemProperty(k, v, true);
4423 PropertyList_add(plist, new_p);
4424 }
4425
4426 void Arguments::PropertyList_add(SystemProperty *element) {
4427 PropertyList_add(&_system_properties, element);
4428 }
4429
4430 // This add maintains unique property key in the list.
4431 void Arguments::PropertyList_unique_add(SystemProperty** plist, const char* k, const char* v, jboolean append) {
4432 if (plist == NULL)
4433 return;
4434
4435 // If property key exist then update with new value.
4436 SystemProperty* prop;
4437 for (prop = *plist; prop != NULL; prop = prop->next()) {
4438 if (strcmp(k, prop->key()) == 0) {
4439 if (append) {
4440 prop->append_value(v);
4441 } else {
4442 prop->set_value(v);
4443 }
4444 return;
4445 }
4446 }
4447
4448 PropertyList_add(plist, k, v);
4449 }
4450
4451 // Copies src into buf, replacing "%%" with "%" and "%p" with pid
4452 // Returns true if all of the source pointed by src has been copied over to
4453 // the destination buffer pointed by buf. Otherwise, returns false.
4454 // Notes:
4455 // 1. If the length (buflen) of the destination buffer excluding the
4456 // NULL terminator character is not long enough for holding the expanded
4457 // pid characters, it also returns false instead of returning the partially
4458 // expanded one.
4459 // 2. The passed in "buflen" should be large enough to hold the null terminator.
4460 bool Arguments::copy_expand_pid(const char* src, size_t srclen,
4461 char* buf, size_t buflen) {
4462 const char* p = src;
4463 char* b = buf;
4464 const char* src_end = &src[srclen];
4465 char* buf_end = &buf[buflen - 1];
4466
4467 while (p < src_end && b < buf_end) {
4468 if (*p == '%') {
4469 switch (*(++p)) {
4470 case '%': // "%%" ==> "%"
4471 *b++ = *p++;
4472 break;
4473 case 'p': { // "%p" ==> current process id
4474 // buf_end points to the character before the last character so
4475 // that we could write '\0' to the end of the buffer.
4476 size_t buf_sz = buf_end - b + 1;
4477 int ret = jio_snprintf(b, buf_sz, "%d", os::current_process_id());
4478
4479 // if jio_snprintf fails or the buffer is not long enough to hold
4480 // the expanded pid, returns false.
4481 if (ret < 0 || ret >= (int)buf_sz) {
4482 return false;
4483 } else {
4484 b += ret;
4485 assert(*b == '\0', "fail in copy_expand_pid");
4486 if (p == src_end && b == buf_end + 1) {
4487 // reach the end of the buffer.
4488 return true;
4489 }
4490 }
4491 p++;
4492 break;
4493 }
4494 default :
4495 *b++ = '%';
4496 }
4497 } else {
4498 *b++ = *p++;
4499 }
4500 }
4501 *b = '\0';
4502 return (p == src_end); // return false if not all of the source was copied
4503 }