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