author | rraghavan |
Mon, 28 Mar 2016 01:08:02 -0700 | |
changeset 36834 | fc007081f4f1 |
parent 36508 | 5f9eee6b383b |
child 37179 | 4dbcb3a642d2 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
35489 | 2 |
* Copyright (c) 1997, 2016, Oracle and/or its affiliates. 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 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5035
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5035
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5035
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_RUNTIME_ARGUMENTS_HPP |
26 |
#define SHARE_VM_RUNTIME_ARGUMENTS_HPP |
|
27 |
||
35489 | 28 |
#include "logging/logLevel.hpp" |
29 |
#include "logging/logTag.hpp" |
|
7397 | 30 |
#include "runtime/java.hpp" |
25468
5331df506290
8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents:
25074
diff
changeset
|
31 |
#include "runtime/os.hpp" |
7397 | 32 |
#include "runtime/perfData.hpp" |
22555
ea32f6c51d08
8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents:
22551
diff
changeset
|
33 |
#include "utilities/debug.hpp" |
7397 | 34 |
#include "utilities/top.hpp" |
35 |
||
1 | 36 |
// Arguments parses the command line and recognizes options |
37 |
||
38 |
// Invocation API hook typedefs (these should really be defined in jni.hpp) |
|
39 |
extern "C" { |
|
40 |
typedef void (JNICALL *abort_hook_t)(void); |
|
41 |
typedef void (JNICALL *exit_hook_t)(jint code); |
|
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
22735
diff
changeset
|
42 |
typedef jint (JNICALL *vfprintf_hook_t)(FILE *fp, const char *format, va_list args) ATTRIBUTE_PRINTF(2, 0); |
1 | 43 |
} |
44 |
||
45 |
// Forward declarations |
|
36508 | 46 |
class ArgumentBootClassPath; |
1 | 47 |
|
36508 | 48 |
// PathString is used as the underlying value container for a |
49 |
// SystemProperty and for the string that represents the system |
|
50 |
// boot class path, Arguments::_system_boot_class_path. |
|
51 |
class PathString : public CHeapObj<mtInternal> { |
|
52 |
protected: |
|
1 | 53 |
char* _value; |
54 |
public: |
|
55 |
char* value() const { return _value; } |
|
36508 | 56 |
|
32595
8cde9aca5e9f
8132725: Memory leak in Arguments::add_property function
ddmitriev
parents:
32366
diff
changeset
|
57 |
bool set_value(const char *value) { |
36508 | 58 |
if (_value != NULL) { |
59 |
FreeHeap(_value); |
|
1 | 60 |
} |
36508 | 61 |
_value = AllocateHeap(strlen(value)+1, mtInternal); |
62 |
assert(_value != NULL, "Unable to allocate space for new path value"); |
|
63 |
if (_value != NULL) { |
|
64 |
strcpy(_value, value); |
|
65 |
} else { |
|
66 |
// not able to allocate |
|
67 |
return false; |
|
68 |
} |
|
69 |
return true; |
|
1 | 70 |
} |
71 |
||
72 |
void append_value(const char *value) { |
|
73 |
char *sp; |
|
74 |
size_t len = 0; |
|
75 |
if (value != NULL) { |
|
76 |
len = strlen(value); |
|
77 |
if (_value != NULL) { |
|
78 |
len += strlen(_value); |
|
79 |
} |
|
13195 | 80 |
sp = AllocateHeap(len+2, mtInternal); |
36508 | 81 |
assert(sp != NULL, "Unable to allocate space for new append path value"); |
1 | 82 |
if (sp != NULL) { |
83 |
if (_value != NULL) { |
|
84 |
strcpy(sp, _value); |
|
85 |
strcat(sp, os::path_separator()); |
|
86 |
strcat(sp, value); |
|
87 |
FreeHeap(_value); |
|
88 |
} else { |
|
89 |
strcpy(sp, value); |
|
90 |
} |
|
91 |
_value = sp; |
|
92 |
} |
|
93 |
} |
|
94 |
} |
|
95 |
||
96 |
// Constructor |
|
36508 | 97 |
PathString(const char* value) { |
98 |
if (value == NULL) { |
|
99 |
_value = NULL; |
|
100 |
} else { |
|
101 |
_value = AllocateHeap(strlen(value)+1, mtInternal); |
|
102 |
strcpy(_value, value); |
|
103 |
} |
|
104 |
} |
|
105 |
}; |
|
106 |
||
107 |
// Element describing System and User (-Dkey=value flags) defined property. |
|
108 |
// |
|
109 |
// An internal SystemProperty is one that has been removed in |
|
110 |
// jdk.internal.VM.saveAndRemoveProperties, like jdk.boot.class.path.append. |
|
111 |
// |
|
112 |
class SystemProperty : public PathString { |
|
113 |
private: |
|
114 |
char* _key; |
|
115 |
SystemProperty* _next; |
|
116 |
bool _internal; |
|
117 |
bool _writeable; |
|
118 |
bool writeable() { return _writeable; } |
|
119 |
||
120 |
public: |
|
121 |
// Accessors |
|
122 |
char* value() const { return PathString::value(); } |
|
123 |
const char* key() const { return _key; } |
|
124 |
bool internal() const { return _internal; } |
|
125 |
SystemProperty* next() const { return _next; } |
|
126 |
void set_next(SystemProperty* next) { _next = next; } |
|
127 |
||
128 |
// A system property should only have its value set |
|
129 |
// via an external interface if it is a writeable property. |
|
130 |
// The internal, non-writeable property jdk.boot.class.path.append |
|
131 |
// is the only exception to this rule. It can be set externally |
|
132 |
// via -Xbootclasspath/a or JVMTI OnLoad phase call to AddToBootstrapClassLoaderSearch. |
|
133 |
// In those cases for jdk.boot.class.path.append, the base class |
|
134 |
// set_value and append_value methods are called directly. |
|
135 |
bool set_writeable_value(const char *value) { |
|
136 |
if (writeable()) { |
|
137 |
return set_value(value); |
|
138 |
} |
|
139 |
return false; |
|
140 |
} |
|
141 |
||
142 |
// Constructor |
|
143 |
SystemProperty(const char* key, const char* value, bool writeable, bool internal = false) : PathString(value) { |
|
1 | 144 |
if (key == NULL) { |
145 |
_key = NULL; |
|
146 |
} else { |
|
13195 | 147 |
_key = AllocateHeap(strlen(key)+1, mtInternal); |
1 | 148 |
strcpy(_key, key); |
149 |
} |
|
150 |
_next = NULL; |
|
36508 | 151 |
_internal = internal; |
1 | 152 |
_writeable = writeable; |
153 |
} |
|
154 |
}; |
|
155 |
||
156 |
||
157 |
// For use by -agentlib, -agentpath and -Xrun |
|
13195 | 158 |
class AgentLibrary : public CHeapObj<mtInternal> { |
1 | 159 |
friend class AgentLibraryList; |
19553
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
160 |
public: |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
161 |
// Is this library valid or not. Don't rely on os_lib == NULL as statically |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
162 |
// linked lib could have handle of RTLD_DEFAULT which == 0 on some platforms |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
163 |
enum AgentState { |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
164 |
agent_invalid = 0, |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
165 |
agent_valid = 1 |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
166 |
}; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
167 |
|
1 | 168 |
private: |
169 |
char* _name; |
|
170 |
char* _options; |
|
171 |
void* _os_lib; |
|
172 |
bool _is_absolute_path; |
|
19553
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
173 |
bool _is_static_lib; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
174 |
AgentState _state; |
1 | 175 |
AgentLibrary* _next; |
176 |
||
177 |
public: |
|
178 |
// Accessors |
|
179 |
const char* name() const { return _name; } |
|
180 |
char* options() const { return _options; } |
|
181 |
bool is_absolute_path() const { return _is_absolute_path; } |
|
182 |
void* os_lib() const { return _os_lib; } |
|
183 |
void set_os_lib(void* os_lib) { _os_lib = os_lib; } |
|
184 |
AgentLibrary* next() const { return _next; } |
|
19553
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
185 |
bool is_static_lib() const { return _is_static_lib; } |
19973 | 186 |
void set_static_lib(bool is_static_lib) { _is_static_lib = is_static_lib; } |
19553
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
187 |
bool valid() { return (_state == agent_valid); } |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
188 |
void set_valid() { _state = agent_valid; } |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
189 |
void set_invalid() { _state = agent_invalid; } |
1 | 190 |
|
191 |
// Constructor |
|
192 |
AgentLibrary(const char* name, const char* options, bool is_absolute_path, void* os_lib) { |
|
13195 | 193 |
_name = AllocateHeap(strlen(name)+1, mtInternal); |
1 | 194 |
strcpy(_name, name); |
195 |
if (options == NULL) { |
|
196 |
_options = NULL; |
|
197 |
} else { |
|
13195 | 198 |
_options = AllocateHeap(strlen(options)+1, mtInternal); |
1 | 199 |
strcpy(_options, options); |
200 |
} |
|
201 |
_is_absolute_path = is_absolute_path; |
|
202 |
_os_lib = os_lib; |
|
203 |
_next = NULL; |
|
19553
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
204 |
_state = agent_invalid; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
205 |
_is_static_lib = false; |
1 | 206 |
} |
207 |
}; |
|
208 |
||
209 |
// maintain an order of entry list of AgentLibrary |
|
210 |
class AgentLibraryList VALUE_OBJ_CLASS_SPEC { |
|
211 |
private: |
|
212 |
AgentLibrary* _first; |
|
213 |
AgentLibrary* _last; |
|
214 |
public: |
|
215 |
bool is_empty() const { return _first == NULL; } |
|
216 |
AgentLibrary* first() const { return _first; } |
|
217 |
||
218 |
// add to the end of the list |
|
219 |
void add(AgentLibrary* lib) { |
|
220 |
if (is_empty()) { |
|
221 |
_first = _last = lib; |
|
222 |
} else { |
|
223 |
_last->_next = lib; |
|
224 |
_last = lib; |
|
225 |
} |
|
226 |
lib->_next = NULL; |
|
227 |
} |
|
228 |
||
229 |
// search for and remove a library known to be in the list |
|
230 |
void remove(AgentLibrary* lib) { |
|
231 |
AgentLibrary* curr; |
|
232 |
AgentLibrary* prev = NULL; |
|
233 |
for (curr = first(); curr != NULL; prev = curr, curr = curr->next()) { |
|
234 |
if (curr == lib) { |
|
235 |
break; |
|
236 |
} |
|
237 |
} |
|
238 |
assert(curr != NULL, "always should be found"); |
|
239 |
||
240 |
if (curr != NULL) { |
|
241 |
// it was found, by-pass this library |
|
242 |
if (prev == NULL) { |
|
243 |
_first = curr->_next; |
|
244 |
} else { |
|
245 |
prev->_next = curr->_next; |
|
246 |
} |
|
247 |
if (curr == _last) { |
|
248 |
_last = prev; |
|
249 |
} |
|
250 |
curr->_next = NULL; |
|
251 |
} |
|
252 |
} |
|
253 |
||
254 |
AgentLibraryList() { |
|
255 |
_first = NULL; |
|
256 |
_last = NULL; |
|
257 |
} |
|
258 |
}; |
|
259 |
||
31853
c70929a2573c
8079301: Some command line options not settable via JAVA_TOOL_OPTIONS
jmanson
parents:
31620
diff
changeset
|
260 |
// Helper class for controlling the lifetime of JavaVMInitArgs objects. |
c70929a2573c
8079301: Some command line options not settable via JAVA_TOOL_OPTIONS
jmanson
parents:
31620
diff
changeset
|
261 |
class ScopedVMInitArgs; |
1 | 262 |
|
35489 | 263 |
// Most logging functions require 5 tags. Some of them may be _NO_TAG. |
264 |
typedef struct { |
|
265 |
const char* alias_name; |
|
266 |
LogLevelType level; |
|
267 |
bool exactMatch; |
|
268 |
LogTagType tag; |
|
269 |
} AliasedLoggingFlag; |
|
270 |
||
1 | 271 |
class Arguments : AllStatic { |
272 |
friend class VMStructs; |
|
273 |
friend class JvmtiExport; |
|
31620
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
31608
diff
changeset
|
274 |
friend class CodeCacheExtensions; |
1 | 275 |
public: |
276 |
// Operation modi |
|
277 |
enum Mode { |
|
278 |
_int, // corresponds to -Xint |
|
279 |
_mixed, // corresponds to -Xmixed |
|
280 |
_comp // corresponds to -Xcomp |
|
281 |
}; |
|
282 |
||
283 |
enum ArgsRange { |
|
284 |
arg_unreadable = -3, |
|
285 |
arg_too_small = -2, |
|
286 |
arg_too_big = -1, |
|
287 |
arg_in_range = 0 |
|
288 |
}; |
|
289 |
||
290 |
private: |
|
291 |
||
34125
56c4a2d19ee1
8141068: refactor -XXFlags= code in preparation for removal
rdurbin
parents:
32823
diff
changeset
|
292 |
// a pointer to the flags file name if it is specified |
56c4a2d19ee1
8141068: refactor -XXFlags= code in preparation for removal
rdurbin
parents:
32823
diff
changeset
|
293 |
static char* _jvm_flags_file; |
1 | 294 |
// an array containing all flags specified in the .hotspotrc file |
295 |
static char** _jvm_flags_array; |
|
296 |
static int _num_jvm_flags; |
|
297 |
// an array containing all jvm arguments specified in the command line |
|
298 |
static char** _jvm_args_array; |
|
299 |
static int _num_jvm_args; |
|
300 |
// string containing all java command (class/jarfile name and app args) |
|
301 |
static char* _java_command; |
|
302 |
||
303 |
// Property list |
|
304 |
static SystemProperty* _system_properties; |
|
305 |
||
306 |
// Quick accessor to System properties in the list: |
|
307 |
static SystemProperty *_sun_boot_library_path; |
|
308 |
static SystemProperty *_java_library_path; |
|
309 |
static SystemProperty *_java_home; |
|
310 |
static SystemProperty *_java_class_path; |
|
36508 | 311 |
static SystemProperty *_jdk_boot_class_path_append; |
312 |
||
313 |
// The constructed value of the system class path after |
|
314 |
// argument processing and JVMTI OnLoad additions via |
|
315 |
// calls to AddToBootstrapClassLoaderSearch. This is the |
|
316 |
// final form before ClassLoader::setup_bootstrap_search(). |
|
317 |
static PathString *_system_boot_class_path; |
|
1 | 318 |
|
27562 | 319 |
// temporary: to emit warning if the default ext dirs are not empty. |
320 |
// remove this variable when the warning is no longer needed. |
|
321 |
static char* _ext_dirs; |
|
322 |
||
1 | 323 |
// java.vendor.url.bug, bug reporting URL for fatal errors. |
324 |
static const char* _java_vendor_url_bug; |
|
325 |
||
326 |
// sun.java.launcher, private property to provide information about |
|
22734
41757c1f3946
8027113: decouple the '-XXaltjvm=<path>' option from the gamma launcher
rdurbin
parents:
20288
diff
changeset
|
327 |
// java launcher |
1 | 328 |
static const char* _sun_java_launcher; |
329 |
||
330 |
// sun.java.launcher.pid, private property |
|
331 |
static int _sun_java_launcher_pid; |
|
332 |
||
22734
41757c1f3946
8027113: decouple the '-XXaltjvm=<path>' option from the gamma launcher
rdurbin
parents:
20288
diff
changeset
|
333 |
// was this VM created via the -XXaltjvm=<path> option |
41757c1f3946
8027113: decouple the '-XXaltjvm=<path>' option from the gamma launcher
rdurbin
parents:
20288
diff
changeset
|
334 |
static bool _sun_java_launcher_is_altjvm; |
8476
7e34c2d4cf9b
7022037: Pause when exiting if debugger is attached on windows
sla
parents:
7397
diff
changeset
|
335 |
|
1 | 336 |
// Option flags |
337 |
static bool _has_profile; |
|
35872
7fb1e4de83ff
8145180: Add back PrintGC, PrintGCDetails and -Xloggc
brutisso
parents:
35489
diff
changeset
|
338 |
static const char* _gc_log_filename; |
19986
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19732
diff
changeset
|
339 |
// Value of the conservative maximum heap alignment needed |
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19732
diff
changeset
|
340 |
static size_t _conservative_max_heap_alignment; |
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19732
diff
changeset
|
341 |
|
36508 | 342 |
static uintx _min_heap_size; |
26824
a04a1291103f
8055006: Store original value of Min/MaxHeapFreeRatio
jwilhelm
parents:
26585
diff
changeset
|
343 |
|
1 | 344 |
// -Xrun arguments |
345 |
static AgentLibraryList _libraryList; |
|
346 |
static void add_init_library(const char* name, char* options) |
|
347 |
{ _libraryList.add(new AgentLibrary(name, options, false, NULL)); } |
|
348 |
||
349 |
// -agentlib and -agentpath arguments |
|
350 |
static AgentLibraryList _agentList; |
|
351 |
static void add_init_agent(const char* name, char* options, bool absolute_path) |
|
352 |
{ _agentList.add(new AgentLibrary(name, options, absolute_path, NULL)); } |
|
353 |
||
354 |
// Late-binding agents not started via arguments |
|
19553
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
355 |
static void add_loaded_agent(AgentLibrary *agentLib) |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
356 |
{ _agentList.add(agentLib); } |
1 | 357 |
static void add_loaded_agent(const char* name, char* options, bool absolute_path, void* os_lib) |
358 |
{ _agentList.add(new AgentLibrary(name, options, absolute_path, os_lib)); } |
|
359 |
||
360 |
// Operation modi |
|
361 |
static Mode _mode; |
|
362 |
static void set_mode_flags(Mode mode); |
|
363 |
static bool _java_compiler; |
|
364 |
static void set_java_compiler(bool arg) { _java_compiler = arg; } |
|
365 |
static bool java_compiler() { return _java_compiler; } |
|
366 |
||
36508 | 367 |
// Capture the index location of -Xbootclasspath\a within sysclasspath. |
368 |
// Used when setting up the bootstrap search path in order to |
|
369 |
// mark the boot loader's append path observability boundary. |
|
370 |
static int _bootclassloader_append_index; |
|
371 |
||
372 |
// -Xpatch flag |
|
373 |
static char** _patch_dirs; |
|
374 |
static int _patch_dirs_count; |
|
375 |
static void set_patch_dirs(char** dirs) { _patch_dirs = dirs; } |
|
376 |
static void set_patch_dirs_count(int count) { _patch_dirs_count = count; } |
|
377 |
||
1 | 378 |
// -Xdebug flag |
379 |
static bool _xdebug_mode; |
|
380 |
static void set_xdebug_mode(bool arg) { _xdebug_mode = arg; } |
|
381 |
static bool xdebug_mode() { return _xdebug_mode; } |
|
382 |
||
383 |
// Used to save default settings |
|
384 |
static bool _AlwaysCompileLoopMethods; |
|
385 |
static bool _UseOnStackReplacement; |
|
386 |
static bool _BackgroundCompilation; |
|
387 |
static bool _ClipInlining; |
|
388 |
static bool _CIDynamicCompilePriority; |
|
30201
cfe623bb3f9c
8075663: compiler/rangechecks/TestExplicitRangeChecks.java fails in compiler nightlies
roland
parents:
29697
diff
changeset
|
389 |
static intx _Tier3InvokeNotifyFreqLog; |
cfe623bb3f9c
8075663: compiler/rangechecks/TestExplicitRangeChecks.java fails in compiler nightlies
roland
parents:
29697
diff
changeset
|
390 |
static intx _Tier4InvocationThreshold; |
1 | 391 |
|
6453 | 392 |
// Tiered |
393 |
static void set_tiered_flags(); |
|
1 | 394 |
// CMS/ParNew garbage collectors |
395 |
static void set_parnew_gc_flags(); |
|
396 |
static void set_cms_and_parnew_gc_flags(); |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
183
diff
changeset
|
397 |
// UseParallel[Old]GC |
1 | 398 |
static void set_parallel_gc_flags(); |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
183
diff
changeset
|
399 |
// Garbage-First (UseG1GC) |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
183
diff
changeset
|
400 |
static void set_g1_gc_flags(); |
1 | 401 |
// GC ergonomics |
19986
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19732
diff
changeset
|
402 |
static void set_conservative_max_heap_alignment(); |
15957
58302a2ffb9a
8001049: VM crashes when running with large -Xms and not specifying ObjectAlignmentInBytes
brutisso
parents:
15950
diff
changeset
|
403 |
static void set_use_compressed_oops(); |
19319
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
18687
diff
changeset
|
404 |
static void set_use_compressed_klass_ptrs(); |
26836
b27ec66071c7
8057531: refactor gc argument processing code slightly
jcoomes
parents:
26824
diff
changeset
|
405 |
static void select_gc(); |
1 | 406 |
static void set_ergonomics_flags(); |
8681
c691d94813f9
7018056: large pages not always enabled by default
jcoomes
parents:
8476
diff
changeset
|
407 |
static void set_shared_spaces_flags(); |
16605
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
15957
diff
changeset
|
408 |
// limits the given memory size by the maximum amount of memory this process is |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
15957
diff
changeset
|
409 |
// currently allowed to allocate or reserve. |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
15957
diff
changeset
|
410 |
static julong limit_by_allocatable_memory(julong size); |
4434 | 411 |
// Setup heap size |
412 |
static void set_heap_size(); |
|
1 | 413 |
// Based on automatic selection criteria, should the |
414 |
// low pause collector be used. |
|
415 |
static bool should_auto_select_low_pause_collector(); |
|
416 |
||
417 |
// Bytecode rewriting |
|
418 |
static void set_bytecode_flags(); |
|
419 |
||
420 |
// Invocation API hooks |
|
421 |
static abort_hook_t _abort_hook; |
|
422 |
static exit_hook_t _exit_hook; |
|
423 |
static vfprintf_hook_t _vfprintf_hook; |
|
424 |
||
425 |
// System properties |
|
426 |
static bool add_property(const char* prop); |
|
427 |
||
36508 | 428 |
// Miscellaneous system property setter |
429 |
static bool append_to_addmods_property(const char* module_name); |
|
430 |
||
1 | 431 |
// Aggressive optimization flags. |
32595
8cde9aca5e9f
8132725: Memory leak in Arguments::add_property function
ddmitriev
parents:
32366
diff
changeset
|
432 |
static jint set_aggressive_opts_flags(); |
1 | 433 |
|
32823
ca8fef4cd57b
8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents:
32621
diff
changeset
|
434 |
static jint set_aggressive_heap_flags(); |
ca8fef4cd57b
8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents:
32621
diff
changeset
|
435 |
|
1 | 436 |
// Argument parsing |
437 |
static void do_pd_flag_adjustments(); |
|
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20006
diff
changeset
|
438 |
static bool parse_argument(const char* arg, Flag::Flags origin); |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20006
diff
changeset
|
439 |
static bool process_argument(const char* arg, jboolean ignore_unrecognized, Flag::Flags origin); |
1 | 440 |
static void process_java_launcher_argument(const char*, void*); |
32595
8cde9aca5e9f
8132725: Memory leak in Arguments::add_property function
ddmitriev
parents:
32366
diff
changeset
|
441 |
static void process_java_compiler_argument(const char* arg); |
31853
c70929a2573c
8079301: Some command line options not settable via JAVA_TOOL_OPTIONS
jmanson
parents:
31620
diff
changeset
|
442 |
static jint parse_options_environment_variable(const char* name, ScopedVMInitArgs* vm_args); |
c70929a2573c
8079301: Some command line options not settable via JAVA_TOOL_OPTIONS
jmanson
parents:
31620
diff
changeset
|
443 |
static jint parse_java_tool_options_environment_variable(ScopedVMInitArgs* vm_args); |
c70929a2573c
8079301: Some command line options not settable via JAVA_TOOL_OPTIONS
jmanson
parents:
31620
diff
changeset
|
444 |
static jint parse_java_options_environment_variable(ScopedVMInitArgs* vm_args); |
32621
cdab920f3b6c
8061999: Enhance VM option parsing to allow options to be specified in a file
rdurbin
parents:
32619
diff
changeset
|
445 |
static jint parse_vm_options_file(const char* file_name, ScopedVMInitArgs* vm_args); |
cdab920f3b6c
8061999: Enhance VM option parsing to allow options to be specified in a file
rdurbin
parents:
32619
diff
changeset
|
446 |
static jint parse_options_buffer(const char* name, char* buffer, const size_t buf_len, ScopedVMInitArgs* vm_args); |
cdab920f3b6c
8061999: Enhance VM option parsing to allow options to be specified in a file
rdurbin
parents:
32619
diff
changeset
|
447 |
static jint insert_vm_options_file(const JavaVMInitArgs* args, |
35466
4ace9ef0201b
8135198: Add -XX:VMOptionsFile support to JAVA_TOOL_OPTIONS and _JAVA_OPTIONS
rdurbin
parents:
35171
diff
changeset
|
448 |
const char* vm_options_file, |
32621
cdab920f3b6c
8061999: Enhance VM option parsing to allow options to be specified in a file
rdurbin
parents:
32619
diff
changeset
|
449 |
const int vm_options_file_pos, |
cdab920f3b6c
8061999: Enhance VM option parsing to allow options to be specified in a file
rdurbin
parents:
32619
diff
changeset
|
450 |
ScopedVMInitArgs* vm_options_file_args, |
cdab920f3b6c
8061999: Enhance VM option parsing to allow options to be specified in a file
rdurbin
parents:
32619
diff
changeset
|
451 |
ScopedVMInitArgs* args_out); |
35466
4ace9ef0201b
8135198: Add -XX:VMOptionsFile support to JAVA_TOOL_OPTIONS and _JAVA_OPTIONS
rdurbin
parents:
35171
diff
changeset
|
452 |
static bool args_contains_vm_options_file_arg(const JavaVMInitArgs* args); |
4ace9ef0201b
8135198: Add -XX:VMOptionsFile support to JAVA_TOOL_OPTIONS and _JAVA_OPTIONS
rdurbin
parents:
35171
diff
changeset
|
453 |
static jint expand_vm_options_as_needed(const JavaVMInitArgs* args_in, |
4ace9ef0201b
8135198: Add -XX:VMOptionsFile support to JAVA_TOOL_OPTIONS and _JAVA_OPTIONS
rdurbin
parents:
35171
diff
changeset
|
454 |
ScopedVMInitArgs* mod_args, |
4ace9ef0201b
8135198: Add -XX:VMOptionsFile support to JAVA_TOOL_OPTIONS and _JAVA_OPTIONS
rdurbin
parents:
35171
diff
changeset
|
455 |
JavaVMInitArgs** args_out); |
32621
cdab920f3b6c
8061999: Enhance VM option parsing to allow options to be specified in a file
rdurbin
parents:
32619
diff
changeset
|
456 |
static jint match_special_option_and_act(const JavaVMInitArgs* args, |
cdab920f3b6c
8061999: Enhance VM option parsing to allow options to be specified in a file
rdurbin
parents:
32619
diff
changeset
|
457 |
ScopedVMInitArgs* args_out); |
cdab920f3b6c
8061999: Enhance VM option parsing to allow options to be specified in a file
rdurbin
parents:
32619
diff
changeset
|
458 |
|
35872
7fb1e4de83ff
8145180: Add back PrintGC, PrintGCDetails and -Xloggc
brutisso
parents:
35489
diff
changeset
|
459 |
static bool handle_deprecated_print_gc_flags(); |
7fb1e4de83ff
8145180: Add back PrintGC, PrintGCDetails and -Xloggc
brutisso
parents:
35489
diff
changeset
|
460 |
|
31853
c70929a2573c
8079301: Some command line options not settable via JAVA_TOOL_OPTIONS
jmanson
parents:
31620
diff
changeset
|
461 |
static jint parse_vm_init_args(const JavaVMInitArgs *java_tool_options_args, |
c70929a2573c
8079301: Some command line options not settable via JAVA_TOOL_OPTIONS
jmanson
parents:
31620
diff
changeset
|
462 |
const JavaVMInitArgs *java_options_args, |
c70929a2573c
8079301: Some command line options not settable via JAVA_TOOL_OPTIONS
jmanson
parents:
31620
diff
changeset
|
463 |
const JavaVMInitArgs *cmd_line_args); |
36508 | 464 |
static jint parse_each_vm_init_arg(const JavaVMInitArgs* args, ArgumentBootClassPath* bcp_p, bool* bcp_assembly_required_p, Flag::Flags origin); |
465 |
static jint finalize_vm_init_args(ArgumentBootClassPath* bcp_p, bool bcp_assembly_required); |
|
22555
ea32f6c51d08
8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents:
22551
diff
changeset
|
466 |
static bool is_bad_option(const JavaVMOption* option, jboolean ignore, const char* option_type); |
ea32f6c51d08
8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents:
22551
diff
changeset
|
467 |
|
1 | 468 |
static bool is_bad_option(const JavaVMOption* option, jboolean ignore) { |
469 |
return is_bad_option(option, ignore, NULL); |
|
470 |
} |
|
22555
ea32f6c51d08
8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents:
22551
diff
changeset
|
471 |
|
1 | 472 |
static void describe_range_error(ArgsRange errcode); |
1676
d80e69372634
6653214: MemoryPoolMXBean.setUsageThreshold() does not support large heap sizes.
swamyv
parents:
1388
diff
changeset
|
473 |
static ArgsRange check_memory_size(julong size, julong min_size); |
d80e69372634
6653214: MemoryPoolMXBean.setUsageThreshold() does not support large heap sizes.
swamyv
parents:
1388
diff
changeset
|
474 |
static ArgsRange parse_memory_size(const char* s, julong* long_arg, |
d80e69372634
6653214: MemoryPoolMXBean.setUsageThreshold() does not support large heap sizes.
swamyv
parents:
1388
diff
changeset
|
475 |
julong min_size); |
5035 | 476 |
// Parse a string for a unsigned integer. Returns true if value |
477 |
// is an unsigned integer greater than or equal to the minimum |
|
478 |
// parameter passed and returns the value in uintx_arg. Returns |
|
479 |
// false otherwise, with uintx_arg undefined. |
|
480 |
static bool parse_uintx(const char* value, uintx* uintx_arg, |
|
481 |
uintx min_size); |
|
1 | 482 |
|
483 |
// methods to build strings from individual args |
|
484 |
static void build_jvm_args(const char* arg); |
|
485 |
static void build_jvm_flags(const char* arg); |
|
486 |
static void add_string(char*** bldarray, int* count, const char* arg); |
|
487 |
static const char* build_resource_string(char** args, int count); |
|
488 |
||
489 |
static bool methodExists( |
|
490 |
char* className, char* methodName, |
|
491 |
int classesNum, char** classes, bool* allMethods, |
|
492 |
int methodsNum, char** methods, bool* allClasses |
|
493 |
); |
|
494 |
||
495 |
static void parseOnlyLine( |
|
496 |
const char* line, |
|
497 |
short* classesNum, short* classesMax, char*** classes, bool** allMethods, |
|
498 |
short* methodsNum, short* methodsMax, char*** methods, bool** allClasses |
|
499 |
); |
|
500 |
||
32823
ca8fef4cd57b
8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents:
32621
diff
changeset
|
501 |
// Returns true if the flag is obsolete (and not yet expired). |
ca8fef4cd57b
8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents:
32621
diff
changeset
|
502 |
// In this case the 'version' buffer is filled in with |
ca8fef4cd57b
8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents:
32621
diff
changeset
|
503 |
// the version number when the flag became obsolete. |
ca8fef4cd57b
8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents:
32621
diff
changeset
|
504 |
static bool is_obsolete_flag(const char* flag_name, JDK_Version* version); |
ca8fef4cd57b
8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents:
32621
diff
changeset
|
505 |
|
ca8fef4cd57b
8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents:
32621
diff
changeset
|
506 |
// Returns 1 if the flag is deprecated (and not yet obsolete or expired). |
ca8fef4cd57b
8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents:
32621
diff
changeset
|
507 |
// In this case the 'version' buffer is filled in with the version number when |
ca8fef4cd57b
8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents:
32621
diff
changeset
|
508 |
// the flag became deprecated. |
ca8fef4cd57b
8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents:
32621
diff
changeset
|
509 |
// Returns -1 if the flag is expired or obsolete. |
ca8fef4cd57b
8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents:
32621
diff
changeset
|
510 |
// Returns 0 otherwise. |
ca8fef4cd57b
8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents:
32621
diff
changeset
|
511 |
static int is_deprecated_flag(const char* flag_name, JDK_Version* version); |
ca8fef4cd57b
8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents:
32621
diff
changeset
|
512 |
|
ca8fef4cd57b
8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents:
32621
diff
changeset
|
513 |
// Return the real name for the flag passed on the command line (either an alias name or "flag_name"). |
ca8fef4cd57b
8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents:
32621
diff
changeset
|
514 |
static const char* real_flag_name(const char *flag_name); |
ca8fef4cd57b
8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents:
32621
diff
changeset
|
515 |
|
ca8fef4cd57b
8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents:
32621
diff
changeset
|
516 |
// Return the "real" name for option arg if arg is an alias, and print a warning if arg is deprecated. |
ca8fef4cd57b
8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents:
32621
diff
changeset
|
517 |
// Return NULL if the arg has expired. |
ca8fef4cd57b
8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents:
32621
diff
changeset
|
518 |
static const char* handle_aliases_and_deprecation(const char* arg, bool warn); |
35171
cf7d5a1d0662
8145153: Convert TraceMonitorInflation to Unified Logging
rprotacio
parents:
35061
diff
changeset
|
519 |
static bool lookup_logging_aliases(const char* arg, char* buffer); |
35489 | 520 |
static AliasedLoggingFlag catch_logging_aliases(const char* name); |
1 | 521 |
static short CompileOnlyClassesNum; |
522 |
static short CompileOnlyClassesMax; |
|
523 |
static char** CompileOnlyClasses; |
|
524 |
static bool* CompileOnlyAllMethods; |
|
525 |
||
526 |
static short CompileOnlyMethodsNum; |
|
527 |
static short CompileOnlyMethodsMax; |
|
528 |
static char** CompileOnlyMethods; |
|
529 |
static bool* CompileOnlyAllClasses; |
|
530 |
||
531 |
static short InterpretOnlyClassesNum; |
|
532 |
static short InterpretOnlyClassesMax; |
|
533 |
static char** InterpretOnlyClasses; |
|
534 |
static bool* InterpretOnlyAllMethods; |
|
535 |
||
536 |
static bool CheckCompileOnly; |
|
537 |
||
538 |
static char* SharedArchivePath; |
|
539 |
||
540 |
public: |
|
28650
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28372
diff
changeset
|
541 |
// Scale compile thresholds |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28372
diff
changeset
|
542 |
// Returns threshold scaled with CompileThresholdScaling |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28372
diff
changeset
|
543 |
static intx scaled_compile_threshold(intx threshold, double scale); |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28372
diff
changeset
|
544 |
static intx scaled_compile_threshold(intx threshold) { |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28372
diff
changeset
|
545 |
return scaled_compile_threshold(threshold, CompileThresholdScaling); |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28372
diff
changeset
|
546 |
} |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28372
diff
changeset
|
547 |
// Returns freq_log scaled with CompileThresholdScaling |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28372
diff
changeset
|
548 |
static intx scaled_freq_log(intx freq_log, double scale); |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28372
diff
changeset
|
549 |
static intx scaled_freq_log(intx freq_log) { |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28372
diff
changeset
|
550 |
return scaled_freq_log(freq_log, CompileThresholdScaling); |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28372
diff
changeset
|
551 |
} |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28372
diff
changeset
|
552 |
|
19986
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19732
diff
changeset
|
553 |
// Parses the arguments, first phase |
1 | 554 |
static jint parse(const JavaVMInitArgs* args); |
19986
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19732
diff
changeset
|
555 |
// Apply ergonomics |
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19732
diff
changeset
|
556 |
static jint apply_ergo(); |
14580
3e2316663327
7198334: UseNUMA modifies system parameters on non-NUMA system
brutisso
parents:
13963
diff
changeset
|
557 |
// Adjusts the arguments after the OS have adjusted the arguments |
3e2316663327
7198334: UseNUMA modifies system parameters on non-NUMA system
brutisso
parents:
13963
diff
changeset
|
558 |
static jint adjust_after_os(); |
22555
ea32f6c51d08
8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents:
22551
diff
changeset
|
559 |
|
27892
06a143c836ad
8065305: Make it possible to extend the G1CollectorPolicy
jwilhelm
parents:
27148
diff
changeset
|
560 |
static void set_gc_specific_flags(); |
26836
b27ec66071c7
8057531: refactor gc argument processing code slightly
jcoomes
parents:
26824
diff
changeset
|
561 |
static inline bool gc_selected(); // whether a gc has been selected |
b27ec66071c7
8057531: refactor gc argument processing code slightly
jcoomes
parents:
26824
diff
changeset
|
562 |
static void select_gc_ergonomically(); |
36313
e7eff81d7f1d
8145333: -XX:+EnableJVMCI -XX:+UseJVMCICompiler -XX:-EnableJVMCI makes JVM crash
jcm
parents:
35872
diff
changeset
|
563 |
#if INCLUDE_JVMCI |
e7eff81d7f1d
8145333: -XX:+EnableJVMCI -XX:+UseJVMCICompiler -XX:-EnableJVMCI makes JVM crash
jcm
parents:
35872
diff
changeset
|
564 |
// Check consistency of jvmci vm argument settings. |
e7eff81d7f1d
8145333: -XX:+EnableJVMCI -XX:+UseJVMCICompiler -XX:-EnableJVMCI makes JVM crash
jcm
parents:
35872
diff
changeset
|
565 |
static bool check_jvmci_args_consistency(); |
e7eff81d7f1d
8145333: -XX:+EnableJVMCI -XX:+UseJVMCICompiler -XX:-EnableJVMCI makes JVM crash
jcm
parents:
35872
diff
changeset
|
566 |
#endif |
183
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
567 |
// Check for consistency in the selection of the garbage collector. |
29696
01571dfab5be
8073944: Simplify ArgumentsExt and remove unneeded functionallity
sjohanss
parents:
29076
diff
changeset
|
568 |
static bool check_gc_consistency(); // Check user-selected gc |
22551 | 569 |
// Check consistency or otherwise of VM argument settings |
1 | 570 |
static bool check_vm_args_consistency(); |
571 |
// Used by os_solaris |
|
572 |
static bool process_settings_file(const char* file_name, bool should_exist, jboolean ignore_unrecognized); |
|
573 |
||
19986
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19732
diff
changeset
|
574 |
static size_t conservative_max_heap_alignment() { return _conservative_max_heap_alignment; } |
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19732
diff
changeset
|
575 |
// Return the maximum size a heap with compressed oops can take |
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19732
diff
changeset
|
576 |
static size_t max_heap_for_compressed_oops(); |
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19732
diff
changeset
|
577 |
|
1 | 578 |
// return a char* array containing all options |
579 |
static char** jvm_flags_array() { return _jvm_flags_array; } |
|
580 |
static char** jvm_args_array() { return _jvm_args_array; } |
|
581 |
static int num_jvm_flags() { return _num_jvm_flags; } |
|
582 |
static int num_jvm_args() { return _num_jvm_args; } |
|
583 |
// return the arguments passed to the Java application |
|
584 |
static const char* java_command() { return _java_command; } |
|
585 |
||
586 |
// print jvm_flags, jvm_args and java_command |
|
587 |
static void print_on(outputStream* st); |
|
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31853
diff
changeset
|
588 |
static void print_summary_on(outputStream* st); |
1 | 589 |
|
34125
56c4a2d19ee1
8141068: refactor -XXFlags= code in preparation for removal
rdurbin
parents:
32823
diff
changeset
|
590 |
// convenient methods to get and set jvm_flags_file |
56c4a2d19ee1
8141068: refactor -XXFlags= code in preparation for removal
rdurbin
parents:
32823
diff
changeset
|
591 |
static const char* get_jvm_flags_file() { return _jvm_flags_file; } |
56c4a2d19ee1
8141068: refactor -XXFlags= code in preparation for removal
rdurbin
parents:
32823
diff
changeset
|
592 |
static void set_jvm_flags_file(const char *value) { |
56c4a2d19ee1
8141068: refactor -XXFlags= code in preparation for removal
rdurbin
parents:
32823
diff
changeset
|
593 |
if (_jvm_flags_file != NULL) { |
56c4a2d19ee1
8141068: refactor -XXFlags= code in preparation for removal
rdurbin
parents:
32823
diff
changeset
|
594 |
os::free(_jvm_flags_file); |
56c4a2d19ee1
8141068: refactor -XXFlags= code in preparation for removal
rdurbin
parents:
32823
diff
changeset
|
595 |
} |
56c4a2d19ee1
8141068: refactor -XXFlags= code in preparation for removal
rdurbin
parents:
32823
diff
changeset
|
596 |
_jvm_flags_file = os::strdup_check_oom(value); |
56c4a2d19ee1
8141068: refactor -XXFlags= code in preparation for removal
rdurbin
parents:
32823
diff
changeset
|
597 |
} |
1 | 598 |
// convenient methods to obtain / print jvm_flags and jvm_args |
599 |
static const char* jvm_flags() { return build_resource_string(_jvm_flags_array, _num_jvm_flags); } |
|
600 |
static const char* jvm_args() { return build_resource_string(_jvm_args_array, _num_jvm_args); } |
|
601 |
static void print_jvm_flags_on(outputStream* st); |
|
602 |
static void print_jvm_args_on(outputStream* st); |
|
603 |
||
604 |
// -Dkey=value flags |
|
605 |
static SystemProperty* system_properties() { return _system_properties; } |
|
606 |
static const char* get_property(const char* key); |
|
607 |
||
608 |
// -Djava.vendor.url.bug |
|
609 |
static const char* java_vendor_url_bug() { return _java_vendor_url_bug; } |
|
610 |
||
611 |
// -Dsun.java.launcher |
|
612 |
static const char* sun_java_launcher() { return _sun_java_launcher; } |
|
613 |
// Was VM created by a Java launcher? |
|
614 |
static bool created_by_java_launcher(); |
|
22734
41757c1f3946
8027113: decouple the '-XXaltjvm=<path>' option from the gamma launcher
rdurbin
parents:
20288
diff
changeset
|
615 |
// -Dsun.java.launcher.is_altjvm |
41757c1f3946
8027113: decouple the '-XXaltjvm=<path>' option from the gamma launcher
rdurbin
parents:
20288
diff
changeset
|
616 |
static bool sun_java_launcher_is_altjvm(); |
1 | 617 |
// -Dsun.java.launcher.pid |
618 |
static int sun_java_launcher_pid() { return _sun_java_launcher_pid; } |
|
619 |
||
18687
5a0543c157c9
7133260: AllocationProfiler uses space in metadata and doesn't seem to do anything useful.
jiangli
parents:
18090
diff
changeset
|
620 |
// -Xprof |
1 | 621 |
static bool has_profile() { return _has_profile; } |
622 |
||
22551 | 623 |
// -Xms |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29696
diff
changeset
|
624 |
static size_t min_heap_size() { return _min_heap_size; } |
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29696
diff
changeset
|
625 |
static void set_min_heap_size(size_t v) { _min_heap_size = v; } |
1 | 626 |
|
36508 | 627 |
// -Xbootclasspath/a |
628 |
static int bootclassloader_append_index() { |
|
629 |
return _bootclassloader_append_index; |
|
630 |
} |
|
631 |
static void set_bootclassloader_append_index(int value) { |
|
632 |
_bootclassloader_append_index = value; |
|
633 |
} |
|
634 |
||
635 |
// -Xpatch |
|
636 |
static char** patch_dirs() { return _patch_dirs; } |
|
637 |
static int patch_dirs_count() { return _patch_dirs_count; } |
|
638 |
||
1 | 639 |
// -Xrun |
640 |
static AgentLibrary* libraries() { return _libraryList.first(); } |
|
641 |
static bool init_libraries_at_startup() { return !_libraryList.is_empty(); } |
|
642 |
static void convert_library_to_agent(AgentLibrary* lib) |
|
643 |
{ _libraryList.remove(lib); |
|
644 |
_agentList.add(lib); } |
|
645 |
||
646 |
// -agentlib -agentpath |
|
647 |
static AgentLibrary* agents() { return _agentList.first(); } |
|
648 |
static bool init_agents_at_startup() { return !_agentList.is_empty(); } |
|
649 |
||
650 |
// abort, exit, vfprintf hooks |
|
651 |
static abort_hook_t abort_hook() { return _abort_hook; } |
|
652 |
static exit_hook_t exit_hook() { return _exit_hook; } |
|
653 |
static vfprintf_hook_t vfprintf_hook() { return _vfprintf_hook; } |
|
654 |
||
655 |
static bool GetCheckCompileOnly () { return CheckCompileOnly; } |
|
656 |
||
657 |
static const char* GetSharedArchivePath() { return SharedArchivePath; } |
|
658 |
||
659 |
static bool CompileMethod(char* className, char* methodName) { |
|
660 |
return |
|
661 |
methodExists( |
|
662 |
className, methodName, |
|
663 |
CompileOnlyClassesNum, CompileOnlyClasses, CompileOnlyAllMethods, |
|
664 |
CompileOnlyMethodsNum, CompileOnlyMethods, CompileOnlyAllClasses |
|
665 |
); |
|
666 |
} |
|
667 |
||
668 |
// Java launcher properties |
|
669 |
static void process_sun_java_launcher_properties(JavaVMInitArgs* args); |
|
670 |
||
671 |
// System properties |
|
672 |
static void init_system_properties(); |
|
673 |
||
6961
a32b2fc66321
6988363: Rebrand vm vendor property settings (jdk7 only)
zgu
parents:
6453
diff
changeset
|
674 |
// Update/Initialize System properties after JDK version number is known |
a32b2fc66321
6988363: Rebrand vm vendor property settings (jdk7 only)
zgu
parents:
6453
diff
changeset
|
675 |
static void init_version_specific_system_properties(); |
a32b2fc66321
6988363: Rebrand vm vendor property settings (jdk7 only)
zgu
parents:
6453
diff
changeset
|
676 |
|
2358 | 677 |
// Property List manipulation |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
27926
diff
changeset
|
678 |
static void PropertyList_add(SystemProperty *element); |
1 | 679 |
static void PropertyList_add(SystemProperty** plist, SystemProperty *element); |
32595
8cde9aca5e9f
8132725: Memory leak in Arguments::add_property function
ddmitriev
parents:
32366
diff
changeset
|
680 |
static void PropertyList_add(SystemProperty** plist, const char* k, const char* v); |
8cde9aca5e9f
8132725: Memory leak in Arguments::add_property function
ddmitriev
parents:
32366
diff
changeset
|
681 |
static void PropertyList_unique_add(SystemProperty** plist, const char* k, const char* v) { |
2358 | 682 |
PropertyList_unique_add(plist, k, v, false); |
683 |
} |
|
32595
8cde9aca5e9f
8132725: Memory leak in Arguments::add_property function
ddmitriev
parents:
32366
diff
changeset
|
684 |
static void PropertyList_unique_add(SystemProperty** plist, const char* k, const char* v, jboolean append); |
1 | 685 |
static const char* PropertyList_get_value(SystemProperty* plist, const char* key); |
686 |
static int PropertyList_count(SystemProperty* pl); |
|
687 |
static const char* PropertyList_get_key_at(SystemProperty* pl,int index); |
|
688 |
static char* PropertyList_get_value_at(SystemProperty* pl,int index); |
|
689 |
||
690 |
// Miscellaneous System property value getter and setters. |
|
32595
8cde9aca5e9f
8132725: Memory leak in Arguments::add_property function
ddmitriev
parents:
32366
diff
changeset
|
691 |
static void set_dll_dir(const char *value) { _sun_boot_library_path->set_value(value); } |
8cde9aca5e9f
8132725: Memory leak in Arguments::add_property function
ddmitriev
parents:
32366
diff
changeset
|
692 |
static void set_java_home(const char *value) { _java_home->set_value(value); } |
8cde9aca5e9f
8132725: Memory leak in Arguments::add_property function
ddmitriev
parents:
32366
diff
changeset
|
693 |
static void set_library_path(const char *value) { _java_library_path->set_value(value); } |
27562 | 694 |
static void set_ext_dirs(char *value) { _ext_dirs = os::strdup_check_oom(value); } |
36508 | 695 |
|
696 |
// Set up of the underlying system boot class path |
|
697 |
static void set_jdkbootclasspath_append(); |
|
698 |
static void set_sysclasspath(const char *value) { |
|
699 |
_system_boot_class_path->set_value(value); |
|
700 |
set_jdkbootclasspath_append(); |
|
701 |
} |
|
702 |
static void append_sysclasspath(const char *value) { |
|
703 |
_system_boot_class_path->append_value(value); |
|
704 |
set_jdkbootclasspath_append(); |
|
705 |
} |
|
1 | 706 |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25468
diff
changeset
|
707 |
static char* get_java_home() { return _java_home->value(); } |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25468
diff
changeset
|
708 |
static char* get_dll_dir() { return _sun_boot_library_path->value(); } |
36508 | 709 |
static char* get_sysclasspath() { return _system_boot_class_path->value(); } |
27562 | 710 |
static char* get_ext_dirs() { return _ext_dirs; } |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25468
diff
changeset
|
711 |
static char* get_appclasspath() { return _java_class_path->value(); } |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25468
diff
changeset
|
712 |
static void fix_appclasspath(); |
1 | 713 |
|
27562 | 714 |
|
1 | 715 |
// Operation modi |
36508 | 716 |
static Mode mode() { return _mode; } |
26585
2048b8d90c91
8058092: Test vm/mlvm/meth/stress/compiler/deoptimize. Assert in src/share/vm/classfile/systemDictionary.cpp: MH intrinsic invariant
iveresov
parents:
26135
diff
changeset
|
717 |
static bool is_interpreter_only() { return mode() == _int; } |
2048b8d90c91
8058092: Test vm/mlvm/meth/stress/compiler/deoptimize. Assert in src/share/vm/classfile/systemDictionary.cpp: MH intrinsic invariant
iveresov
parents:
26135
diff
changeset
|
718 |
|
1 | 719 |
|
720 |
// Utility: copies src into buf, replacing "%%" with "%" and "%p" with pid. |
|
721 |
static bool copy_expand_pid(const char* src, size_t srclen, char* buf, size_t buflen); |
|
36508 | 722 |
|
723 |
static void check_unsupported_dumping_properties() NOT_CDS_RETURN; |
|
1 | 724 |
}; |
7397 | 725 |
|
26836
b27ec66071c7
8057531: refactor gc argument processing code slightly
jcoomes
parents:
26824
diff
changeset
|
726 |
bool Arguments::gc_selected() { |
27898
813ad96387b3
8065972: Remove support for ParNew+SerialOld and DefNew+CMS
brutisso
parents:
27892
diff
changeset
|
727 |
return UseConcMarkSweepGC || UseG1GC || UseParallelGC || UseParallelOldGC || UseSerialGC; |
26836
b27ec66071c7
8057531: refactor gc argument processing code slightly
jcoomes
parents:
26824
diff
changeset
|
728 |
} |
26838
344fb68e970a
8057623: add an extension class for argument handling
jcoomes
parents:
26836
diff
changeset
|
729 |
|
28838
da47c3cc5c98
8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents:
28650
diff
changeset
|
730 |
// Disable options not supported in this release, with a warning if they |
da47c3cc5c98
8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents:
28650
diff
changeset
|
731 |
// were explicitly requested on the command-line |
da47c3cc5c98
8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents:
28650
diff
changeset
|
732 |
#define UNSUPPORTED_OPTION(opt, description) \ |
da47c3cc5c98
8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents:
28650
diff
changeset
|
733 |
do { \ |
da47c3cc5c98
8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents:
28650
diff
changeset
|
734 |
if (opt) { \ |
da47c3cc5c98
8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents:
28650
diff
changeset
|
735 |
if (FLAG_IS_CMDLINE(opt)) { \ |
da47c3cc5c98
8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents:
28650
diff
changeset
|
736 |
warning(description " is disabled in this release."); \ |
da47c3cc5c98
8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents:
28650
diff
changeset
|
737 |
} \ |
da47c3cc5c98
8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents:
28650
diff
changeset
|
738 |
FLAG_SET_DEFAULT(opt, false); \ |
da47c3cc5c98
8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents:
28650
diff
changeset
|
739 |
} \ |
da47c3cc5c98
8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents:
28650
diff
changeset
|
740 |
} while(0) |
da47c3cc5c98
8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents:
28650
diff
changeset
|
741 |
|
7397 | 742 |
#endif // SHARE_VM_RUNTIME_ARGUMENTS_HPP |