author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 47106 | hotspot/src/share/vm/runtime/arguments.hpp@bed18a111b90 |
child 47901 | 4c42aa431f40 |
child 55767 | 8e22715afabc |
permissions | -rw-r--r-- |
1 | 1 |
/* |
43605
07baf498d588
8173421: Obsolete and expired flags for JDK 10 need to be removed and related tests updated
dholmes
parents:
41708
diff
changeset
|
2 |
* Copyright (c) 1997, 2017, 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 |
|
1 | 35 |
// Arguments parses the command line and recognizes options |
36 |
||
37 |
// Invocation API hook typedefs (these should really be defined in jni.hpp) |
|
38 |
extern "C" { |
|
39 |
typedef void (JNICALL *abort_hook_t)(void); |
|
40 |
typedef void (JNICALL *exit_hook_t)(jint code); |
|
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
22735
diff
changeset
|
41 |
typedef jint (JNICALL *vfprintf_hook_t)(FILE *fp, const char *format, va_list args) ATTRIBUTE_PRINTF(2, 0); |
1 | 42 |
} |
43 |
||
41708
82f5dc0dfccf
8155948: Add message for CMS deprecation for Oracle builds
jmasa
parents:
41073
diff
changeset
|
44 |
// Obsolete or deprecated -XX flag. |
82f5dc0dfccf
8155948: Add message for CMS deprecation for Oracle builds
jmasa
parents:
41073
diff
changeset
|
45 |
struct SpecialFlag { |
82f5dc0dfccf
8155948: Add message for CMS deprecation for Oracle builds
jmasa
parents:
41073
diff
changeset
|
46 |
const char* name; |
82f5dc0dfccf
8155948: Add message for CMS deprecation for Oracle builds
jmasa
parents:
41073
diff
changeset
|
47 |
JDK_Version deprecated_in; // When the deprecation warning started (or "undefined"). |
82f5dc0dfccf
8155948: Add message for CMS deprecation for Oracle builds
jmasa
parents:
41073
diff
changeset
|
48 |
JDK_Version obsolete_in; // When the obsolete warning started (or "undefined"). |
82f5dc0dfccf
8155948: Add message for CMS deprecation for Oracle builds
jmasa
parents:
41073
diff
changeset
|
49 |
JDK_Version expired_in; // When the option expires (or "undefined"). |
82f5dc0dfccf
8155948: Add message for CMS deprecation for Oracle builds
jmasa
parents:
41073
diff
changeset
|
50 |
}; |
82f5dc0dfccf
8155948: Add message for CMS deprecation for Oracle builds
jmasa
parents:
41073
diff
changeset
|
51 |
|
37773
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
52 |
// PathString is used as: |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
53 |
// - the underlying value for a SystemProperty |
40244
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
54 |
// - the path portion of an --patch-module module/path pair |
37773
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
55 |
// - the string that represents the system boot class path, Arguments::_system_boot_class_path. |
37491
edf4cc53f5a3
8153039: Command line processing should use mtCommand or mtArguments rather than mtInternal for NMT
gziemski
parents:
37466
diff
changeset
|
56 |
class PathString : public CHeapObj<mtArguments> { |
36508 | 57 |
protected: |
37773
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
58 |
char* _value; |
1 | 59 |
public: |
37773
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
60 |
char* value() const { return _value; } |
36508 | 61 |
|
32595
8cde9aca5e9f
8132725: Memory leak in Arguments::add_property function
ddmitriev
parents:
32366
diff
changeset
|
62 |
bool set_value(const char *value) { |
36508 | 63 |
if (_value != NULL) { |
64 |
FreeHeap(_value); |
|
1 | 65 |
} |
37491
edf4cc53f5a3
8153039: Command line processing should use mtCommand or mtArguments rather than mtInternal for NMT
gziemski
parents:
37466
diff
changeset
|
66 |
_value = AllocateHeap(strlen(value)+1, mtArguments); |
36508 | 67 |
assert(_value != NULL, "Unable to allocate space for new path value"); |
68 |
if (_value != NULL) { |
|
69 |
strcpy(_value, value); |
|
70 |
} else { |
|
71 |
// not able to allocate |
|
72 |
return false; |
|
73 |
} |
|
74 |
return true; |
|
1 | 75 |
} |
76 |
||
77 |
void append_value(const char *value) { |
|
78 |
char *sp; |
|
79 |
size_t len = 0; |
|
80 |
if (value != NULL) { |
|
81 |
len = strlen(value); |
|
82 |
if (_value != NULL) { |
|
83 |
len += strlen(_value); |
|
84 |
} |
|
37491
edf4cc53f5a3
8153039: Command line processing should use mtCommand or mtArguments rather than mtInternal for NMT
gziemski
parents:
37466
diff
changeset
|
85 |
sp = AllocateHeap(len+2, mtArguments); |
36508 | 86 |
assert(sp != NULL, "Unable to allocate space for new append path value"); |
1 | 87 |
if (sp != NULL) { |
88 |
if (_value != NULL) { |
|
89 |
strcpy(sp, _value); |
|
90 |
strcat(sp, os::path_separator()); |
|
91 |
strcat(sp, value); |
|
92 |
FreeHeap(_value); |
|
93 |
} else { |
|
94 |
strcpy(sp, value); |
|
95 |
} |
|
96 |
_value = sp; |
|
97 |
} |
|
98 |
} |
|
99 |
} |
|
100 |
||
36508 | 101 |
PathString(const char* value) { |
102 |
if (value == NULL) { |
|
103 |
_value = NULL; |
|
104 |
} else { |
|
37491
edf4cc53f5a3
8153039: Command line processing should use mtCommand or mtArguments rather than mtInternal for NMT
gziemski
parents:
37466
diff
changeset
|
105 |
_value = AllocateHeap(strlen(value)+1, mtArguments); |
36508 | 106 |
strcpy(_value, value); |
107 |
} |
|
108 |
} |
|
37773
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
109 |
|
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
110 |
~PathString() { |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
111 |
if (_value != NULL) { |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
112 |
FreeHeap(_value); |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
113 |
_value = NULL; |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
114 |
} |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
115 |
} |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
116 |
}; |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
117 |
|
40244
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
118 |
// ModulePatchPath records the module/path pair as specified to --patch-module. |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
119 |
class ModulePatchPath : public CHeapObj<mtInternal> { |
37773
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
120 |
private: |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
121 |
char* _module_name; |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
122 |
PathString* _path; |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
123 |
public: |
40244
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
124 |
ModulePatchPath(const char* module_name, const char* path) { |
37773
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
125 |
assert(module_name != NULL && path != NULL, "Invalid module name or path value"); |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
126 |
size_t len = strlen(module_name) + 1; |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
127 |
_module_name = AllocateHeap(len, mtInternal); |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
128 |
strncpy(_module_name, module_name, len); // copy the trailing null |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
129 |
_path = new PathString(path); |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
130 |
} |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
131 |
|
40244
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
132 |
~ModulePatchPath() { |
37773
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
133 |
if (_module_name != NULL) { |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
134 |
FreeHeap(_module_name); |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
135 |
_module_name = NULL; |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
136 |
} |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
137 |
if (_path != NULL) { |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
138 |
delete _path; |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
139 |
_path = NULL; |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
140 |
} |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
141 |
} |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
142 |
|
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
143 |
inline void set_path(const char* path) { _path->set_value(path); } |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
144 |
inline const char* module_name() const { return _module_name; } |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
145 |
inline char* path_string() const { return _path->value(); } |
36508 | 146 |
}; |
147 |
||
148 |
// Element describing System and User (-Dkey=value flags) defined property. |
|
149 |
// |
|
150 |
// An internal SystemProperty is one that has been removed in |
|
151 |
// jdk.internal.VM.saveAndRemoveProperties, like jdk.boot.class.path.append. |
|
152 |
// |
|
153 |
class SystemProperty : public PathString { |
|
154 |
private: |
|
155 |
char* _key; |
|
156 |
SystemProperty* _next; |
|
157 |
bool _internal; |
|
158 |
bool _writeable; |
|
37773
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
159 |
bool writeable() { return _writeable; } |
36508 | 160 |
|
161 |
public: |
|
162 |
// Accessors |
|
163 |
char* value() const { return PathString::value(); } |
|
164 |
const char* key() const { return _key; } |
|
165 |
bool internal() const { return _internal; } |
|
166 |
SystemProperty* next() const { return _next; } |
|
167 |
void set_next(SystemProperty* next) { _next = next; } |
|
168 |
||
40244
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
169 |
bool is_readable() const { |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
170 |
return !_internal || strcmp(_key, "jdk.boot.class.path.append") == 0; |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
171 |
} |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
172 |
|
36508 | 173 |
// A system property should only have its value set |
174 |
// via an external interface if it is a writeable property. |
|
175 |
// The internal, non-writeable property jdk.boot.class.path.append |
|
176 |
// is the only exception to this rule. It can be set externally |
|
177 |
// via -Xbootclasspath/a or JVMTI OnLoad phase call to AddToBootstrapClassLoaderSearch. |
|
178 |
// In those cases for jdk.boot.class.path.append, the base class |
|
179 |
// set_value and append_value methods are called directly. |
|
180 |
bool set_writeable_value(const char *value) { |
|
181 |
if (writeable()) { |
|
182 |
return set_value(value); |
|
183 |
} |
|
184 |
return false; |
|
185 |
} |
|
186 |
||
187 |
// Constructor |
|
188 |
SystemProperty(const char* key, const char* value, bool writeable, bool internal = false) : PathString(value) { |
|
1 | 189 |
if (key == NULL) { |
190 |
_key = NULL; |
|
191 |
} else { |
|
37491
edf4cc53f5a3
8153039: Command line processing should use mtCommand or mtArguments rather than mtInternal for NMT
gziemski
parents:
37466
diff
changeset
|
192 |
_key = AllocateHeap(strlen(key)+1, mtArguments); |
1 | 193 |
strcpy(_key, key); |
194 |
} |
|
195 |
_next = NULL; |
|
36508 | 196 |
_internal = internal; |
1 | 197 |
_writeable = writeable; |
198 |
} |
|
199 |
}; |
|
200 |
||
201 |
||
202 |
// For use by -agentlib, -agentpath and -Xrun |
|
37491
edf4cc53f5a3
8153039: Command line processing should use mtCommand or mtArguments rather than mtInternal for NMT
gziemski
parents:
37466
diff
changeset
|
203 |
class AgentLibrary : public CHeapObj<mtArguments> { |
1 | 204 |
friend class AgentLibraryList; |
19553
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
205 |
public: |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
206 |
// 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
|
207 |
// 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
|
208 |
enum AgentState { |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
209 |
agent_invalid = 0, |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
210 |
agent_valid = 1 |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
211 |
}; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
212 |
|
1 | 213 |
private: |
214 |
char* _name; |
|
215 |
char* _options; |
|
216 |
void* _os_lib; |
|
217 |
bool _is_absolute_path; |
|
19553
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
218 |
bool _is_static_lib; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
219 |
AgentState _state; |
1 | 220 |
AgentLibrary* _next; |
221 |
||
222 |
public: |
|
223 |
// Accessors |
|
224 |
const char* name() const { return _name; } |
|
225 |
char* options() const { return _options; } |
|
226 |
bool is_absolute_path() const { return _is_absolute_path; } |
|
227 |
void* os_lib() const { return _os_lib; } |
|
228 |
void set_os_lib(void* os_lib) { _os_lib = os_lib; } |
|
229 |
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
|
230 |
bool is_static_lib() const { return _is_static_lib; } |
19973 | 231 |
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
|
232 |
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
|
233 |
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
|
234 |
void set_invalid() { _state = agent_invalid; } |
1 | 235 |
|
236 |
// Constructor |
|
237 |
AgentLibrary(const char* name, const char* options, bool is_absolute_path, void* os_lib) { |
|
37491
edf4cc53f5a3
8153039: Command line processing should use mtCommand or mtArguments rather than mtInternal for NMT
gziemski
parents:
37466
diff
changeset
|
238 |
_name = AllocateHeap(strlen(name)+1, mtArguments); |
1 | 239 |
strcpy(_name, name); |
240 |
if (options == NULL) { |
|
241 |
_options = NULL; |
|
242 |
} else { |
|
37491
edf4cc53f5a3
8153039: Command line processing should use mtCommand or mtArguments rather than mtInternal for NMT
gziemski
parents:
37466
diff
changeset
|
243 |
_options = AllocateHeap(strlen(options)+1, mtArguments); |
1 | 244 |
strcpy(_options, options); |
245 |
} |
|
246 |
_is_absolute_path = is_absolute_path; |
|
247 |
_os_lib = os_lib; |
|
248 |
_next = NULL; |
|
19553
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
249 |
_state = agent_invalid; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
250 |
_is_static_lib = false; |
1 | 251 |
} |
252 |
}; |
|
253 |
||
254 |
// maintain an order of entry list of AgentLibrary |
|
255 |
class AgentLibraryList VALUE_OBJ_CLASS_SPEC { |
|
256 |
private: |
|
257 |
AgentLibrary* _first; |
|
258 |
AgentLibrary* _last; |
|
259 |
public: |
|
260 |
bool is_empty() const { return _first == NULL; } |
|
261 |
AgentLibrary* first() const { return _first; } |
|
262 |
||
263 |
// add to the end of the list |
|
264 |
void add(AgentLibrary* lib) { |
|
265 |
if (is_empty()) { |
|
266 |
_first = _last = lib; |
|
267 |
} else { |
|
268 |
_last->_next = lib; |
|
269 |
_last = lib; |
|
270 |
} |
|
271 |
lib->_next = NULL; |
|
272 |
} |
|
273 |
||
274 |
// search for and remove a library known to be in the list |
|
275 |
void remove(AgentLibrary* lib) { |
|
276 |
AgentLibrary* curr; |
|
277 |
AgentLibrary* prev = NULL; |
|
278 |
for (curr = first(); curr != NULL; prev = curr, curr = curr->next()) { |
|
279 |
if (curr == lib) { |
|
280 |
break; |
|
281 |
} |
|
282 |
} |
|
283 |
assert(curr != NULL, "always should be found"); |
|
284 |
||
285 |
if (curr != NULL) { |
|
286 |
// it was found, by-pass this library |
|
287 |
if (prev == NULL) { |
|
288 |
_first = curr->_next; |
|
289 |
} else { |
|
290 |
prev->_next = curr->_next; |
|
291 |
} |
|
292 |
if (curr == _last) { |
|
293 |
_last = prev; |
|
294 |
} |
|
295 |
curr->_next = NULL; |
|
296 |
} |
|
297 |
} |
|
298 |
||
299 |
AgentLibraryList() { |
|
300 |
_first = NULL; |
|
301 |
_last = NULL; |
|
302 |
} |
|
303 |
}; |
|
304 |
||
31853
c70929a2573c
8079301: Some command line options not settable via JAVA_TOOL_OPTIONS
jmanson
parents:
31620
diff
changeset
|
305 |
// 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
|
306 |
class ScopedVMInitArgs; |
1 | 307 |
|
35489 | 308 |
// Most logging functions require 5 tags. Some of them may be _NO_TAG. |
309 |
typedef struct { |
|
310 |
const char* alias_name; |
|
311 |
LogLevelType level; |
|
312 |
bool exactMatch; |
|
37094
c12f414936a1
8149995: TraceClassLoadingPreorder has been converted to Unified Logging.
mockner
parents:
36313
diff
changeset
|
313 |
LogTagType tag0; |
c12f414936a1
8149995: TraceClassLoadingPreorder has been converted to Unified Logging.
mockner
parents:
36313
diff
changeset
|
314 |
LogTagType tag1; |
c12f414936a1
8149995: TraceClassLoadingPreorder has been converted to Unified Logging.
mockner
parents:
36313
diff
changeset
|
315 |
LogTagType tag2; |
c12f414936a1
8149995: TraceClassLoadingPreorder has been converted to Unified Logging.
mockner
parents:
36313
diff
changeset
|
316 |
LogTagType tag3; |
c12f414936a1
8149995: TraceClassLoadingPreorder has been converted to Unified Logging.
mockner
parents:
36313
diff
changeset
|
317 |
LogTagType tag4; |
c12f414936a1
8149995: TraceClassLoadingPreorder has been converted to Unified Logging.
mockner
parents:
36313
diff
changeset
|
318 |
LogTagType tag5; |
35489 | 319 |
} AliasedLoggingFlag; |
320 |
||
1 | 321 |
class Arguments : AllStatic { |
322 |
friend class VMStructs; |
|
323 |
friend class JvmtiExport; |
|
31620
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
31608
diff
changeset
|
324 |
friend class CodeCacheExtensions; |
46616
66d452cca30f
8178491: -Xss and -XX:ThreadStackSize argument parsing truncates bits
stefank
parents:
43607
diff
changeset
|
325 |
friend class ArgumentsTest; |
1 | 326 |
public: |
327 |
// Operation modi |
|
328 |
enum Mode { |
|
329 |
_int, // corresponds to -Xint |
|
330 |
_mixed, // corresponds to -Xmixed |
|
331 |
_comp // corresponds to -Xcomp |
|
332 |
}; |
|
333 |
||
334 |
enum ArgsRange { |
|
335 |
arg_unreadable = -3, |
|
336 |
arg_too_small = -2, |
|
337 |
arg_too_big = -1, |
|
338 |
arg_in_range = 0 |
|
339 |
}; |
|
340 |
||
40244
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
341 |
enum PropertyAppendable { |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
342 |
AppendProperty, |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
343 |
AddProperty |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
344 |
}; |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
345 |
|
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
346 |
enum PropertyWriteable { |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
347 |
WriteableProperty, |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
348 |
UnwriteableProperty |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
349 |
}; |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
350 |
|
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
351 |
enum PropertyInternal { |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
352 |
InternalProperty, |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
353 |
ExternalProperty |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
354 |
}; |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
355 |
|
1 | 356 |
private: |
357 |
||
34125
56c4a2d19ee1
8141068: refactor -XXFlags= code in preparation for removal
rdurbin
parents:
32823
diff
changeset
|
358 |
// 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
|
359 |
static char* _jvm_flags_file; |
1 | 360 |
// an array containing all flags specified in the .hotspotrc file |
361 |
static char** _jvm_flags_array; |
|
362 |
static int _num_jvm_flags; |
|
363 |
// an array containing all jvm arguments specified in the command line |
|
364 |
static char** _jvm_args_array; |
|
365 |
static int _num_jvm_args; |
|
366 |
// string containing all java command (class/jarfile name and app args) |
|
367 |
static char* _java_command; |
|
368 |
||
369 |
// Property list |
|
370 |
static SystemProperty* _system_properties; |
|
371 |
||
372 |
// Quick accessor to System properties in the list: |
|
373 |
static SystemProperty *_sun_boot_library_path; |
|
374 |
static SystemProperty *_java_library_path; |
|
375 |
static SystemProperty *_java_home; |
|
376 |
static SystemProperty *_java_class_path; |
|
36508 | 377 |
static SystemProperty *_jdk_boot_class_path_append; |
378 |
||
40244
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
379 |
// --patch-module=module=<file>(<pathsep><file>)* |
37773
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
380 |
// Each element contains the associated module name, path |
40244
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
381 |
// string pair as specified to --patch-module. |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
382 |
static GrowableArray<ModulePatchPath*>* _patch_mod_prefix; |
37773
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
383 |
|
36508 | 384 |
// The constructed value of the system class path after |
385 |
// argument processing and JVMTI OnLoad additions via |
|
386 |
// calls to AddToBootstrapClassLoaderSearch. This is the |
|
387 |
// final form before ClassLoader::setup_bootstrap_search(). |
|
40244
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
388 |
// Note: since --patch-module is a module name/path pair, the |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
389 |
// system boot class path string no longer contains the "prefix" |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
390 |
// to the boot class path base piece as it did when |
37773
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
391 |
// -Xbootclasspath/p was supported. |
36508 | 392 |
static PathString *_system_boot_class_path; |
1 | 393 |
|
40013 | 394 |
// Set if a modular java runtime image is present vs. a build with exploded modules |
395 |
static bool _has_jimage; |
|
396 |
||
27562 | 397 |
// temporary: to emit warning if the default ext dirs are not empty. |
398 |
// remove this variable when the warning is no longer needed. |
|
399 |
static char* _ext_dirs; |
|
400 |
||
1 | 401 |
// java.vendor.url.bug, bug reporting URL for fatal errors. |
402 |
static const char* _java_vendor_url_bug; |
|
403 |
||
404 |
// 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
|
405 |
// java launcher |
1 | 406 |
static const char* _sun_java_launcher; |
407 |
||
408 |
// sun.java.launcher.pid, private property |
|
409 |
static int _sun_java_launcher_pid; |
|
410 |
||
22734
41757c1f3946
8027113: decouple the '-XXaltjvm=<path>' option from the gamma launcher
rdurbin
parents:
20288
diff
changeset
|
411 |
// 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
|
412 |
static bool _sun_java_launcher_is_altjvm; |
8476
7e34c2d4cf9b
7022037: Pause when exiting if debugger is attached on windows
sla
parents:
7397
diff
changeset
|
413 |
|
1 | 414 |
// Option flags |
35872
7fb1e4de83ff
8145180: Add back PrintGC, PrintGCDetails and -Xloggc
brutisso
parents:
35489
diff
changeset
|
415 |
static const char* _gc_log_filename; |
19986
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19732
diff
changeset
|
416 |
// 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
|
417 |
static size_t _conservative_max_heap_alignment; |
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19732
diff
changeset
|
418 |
|
36508 | 419 |
static uintx _min_heap_size; |
26824
a04a1291103f
8055006: Store original value of Min/MaxHeapFreeRatio
jwilhelm
parents:
26585
diff
changeset
|
420 |
|
1 | 421 |
// -Xrun arguments |
422 |
static AgentLibraryList _libraryList; |
|
423 |
static void add_init_library(const char* name, char* options) |
|
424 |
{ _libraryList.add(new AgentLibrary(name, options, false, NULL)); } |
|
425 |
||
426 |
// -agentlib and -agentpath arguments |
|
427 |
static AgentLibraryList _agentList; |
|
428 |
static void add_init_agent(const char* name, char* options, bool absolute_path) |
|
429 |
{ _agentList.add(new AgentLibrary(name, options, absolute_path, NULL)); } |
|
430 |
||
431 |
// 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
|
432 |
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
|
433 |
{ _agentList.add(agentLib); } |
1 | 434 |
static void add_loaded_agent(const char* name, char* options, bool absolute_path, void* os_lib) |
435 |
{ _agentList.add(new AgentLibrary(name, options, absolute_path, os_lib)); } |
|
436 |
||
437 |
// Operation modi |
|
438 |
static Mode _mode; |
|
439 |
static void set_mode_flags(Mode mode); |
|
440 |
static bool _java_compiler; |
|
441 |
static void set_java_compiler(bool arg) { _java_compiler = arg; } |
|
442 |
static bool java_compiler() { return _java_compiler; } |
|
443 |
||
444 |
// -Xdebug flag |
|
445 |
static bool _xdebug_mode; |
|
446 |
static void set_xdebug_mode(bool arg) { _xdebug_mode = arg; } |
|
447 |
static bool xdebug_mode() { return _xdebug_mode; } |
|
448 |
||
449 |
// Used to save default settings |
|
450 |
static bool _AlwaysCompileLoopMethods; |
|
451 |
static bool _UseOnStackReplacement; |
|
452 |
static bool _BackgroundCompilation; |
|
453 |
static bool _ClipInlining; |
|
454 |
static bool _CIDynamicCompilePriority; |
|
30201
cfe623bb3f9c
8075663: compiler/rangechecks/TestExplicitRangeChecks.java fails in compiler nightlies
roland
parents:
29697
diff
changeset
|
455 |
static intx _Tier3InvokeNotifyFreqLog; |
cfe623bb3f9c
8075663: compiler/rangechecks/TestExplicitRangeChecks.java fails in compiler nightlies
roland
parents:
29697
diff
changeset
|
456 |
static intx _Tier4InvocationThreshold; |
1 | 457 |
|
43455
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
43433
diff
changeset
|
458 |
// Compilation mode. |
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
43433
diff
changeset
|
459 |
static bool compilation_mode_selected(); |
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
43433
diff
changeset
|
460 |
static void select_compilation_mode_ergonomically(); |
96560cffef4d
8166002: Emulate client build on platforms with reduced virtual address space
jcm
parents:
43433
diff
changeset
|
461 |
|
6453 | 462 |
// Tiered |
463 |
static void set_tiered_flags(); |
|
1 | 464 |
// CMS/ParNew garbage collectors |
465 |
static void set_parnew_gc_flags(); |
|
466 |
static void set_cms_and_parnew_gc_flags(); |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
183
diff
changeset
|
467 |
// UseParallel[Old]GC |
1 | 468 |
static void set_parallel_gc_flags(); |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
183
diff
changeset
|
469 |
// Garbage-First (UseG1GC) |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
183
diff
changeset
|
470 |
static void set_g1_gc_flags(); |
1 | 471 |
// GC ergonomics |
19986
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19732
diff
changeset
|
472 |
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
|
473 |
static void set_use_compressed_oops(); |
19319
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
18687
diff
changeset
|
474 |
static void set_use_compressed_klass_ptrs(); |
26836
b27ec66071c7
8057531: refactor gc argument processing code slightly
jcoomes
parents:
26824
diff
changeset
|
475 |
static void select_gc(); |
1 | 476 |
static void set_ergonomics_flags(); |
8681
c691d94813f9
7018056: large pages not always enabled by default
jcoomes
parents:
8476
diff
changeset
|
477 |
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
|
478 |
// 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
|
479 |
// 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
|
480 |
static julong limit_by_allocatable_memory(julong size); |
4434 | 481 |
// Setup heap size |
482 |
static void set_heap_size(); |
|
1 | 483 |
|
484 |
// Bytecode rewriting |
|
485 |
static void set_bytecode_flags(); |
|
486 |
||
487 |
// Invocation API hooks |
|
488 |
static abort_hook_t _abort_hook; |
|
489 |
static exit_hook_t _exit_hook; |
|
490 |
static vfprintf_hook_t _vfprintf_hook; |
|
491 |
||
492 |
// System properties |
|
40244
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
493 |
static bool add_property(const char* prop, PropertyWriteable writeable=WriteableProperty, |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
494 |
PropertyInternal internal=ExternalProperty); |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
495 |
|
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
496 |
static bool create_property(const char* prop_name, const char* prop_value, PropertyInternal internal); |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
497 |
static bool create_numbered_property(const char* prop_base_name, const char* prop_value, unsigned int count); |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
498 |
|
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
499 |
static int process_patch_mod_option(const char* patch_mod_tail, bool* patch_mod_javabase); |
1 | 500 |
|
501 |
// Aggressive optimization flags. |
|
32595
8cde9aca5e9f
8132725: Memory leak in Arguments::add_property function
ddmitriev
parents:
32366
diff
changeset
|
502 |
static jint set_aggressive_opts_flags(); |
1 | 503 |
|
32823
ca8fef4cd57b
8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents:
32621
diff
changeset
|
504 |
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
|
505 |
|
1 | 506 |
// Argument parsing |
507 |
static void do_pd_flag_adjustments(); |
|
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20006
diff
changeset
|
508 |
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
|
509 |
static bool process_argument(const char* arg, jboolean ignore_unrecognized, Flag::Flags origin); |
1 | 510 |
static void process_java_launcher_argument(const char*, void*); |
32595
8cde9aca5e9f
8132725: Memory leak in Arguments::add_property function
ddmitriev
parents:
32366
diff
changeset
|
511 |
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
|
512 |
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
|
513 |
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
|
514 |
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
|
515 |
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
|
516 |
static jint parse_options_buffer(const char* name, char* buffer, const size_t buf_len, ScopedVMInitArgs* vm_args); |
46616
66d452cca30f
8178491: -Xss and -XX:ThreadStackSize argument parsing truncates bits
stefank
parents:
43607
diff
changeset
|
517 |
static jint parse_xss(const JavaVMOption* option, const char* tail, intx* out_ThreadStackSize); |
32621
cdab920f3b6c
8061999: Enhance VM option parsing to allow options to be specified in a file
rdurbin
parents:
32619
diff
changeset
|
518 |
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
|
519 |
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
|
520 |
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
|
521 |
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
|
522 |
ScopedVMInitArgs* args_out); |
35466
4ace9ef0201b
8135198: Add -XX:VMOptionsFile support to JAVA_TOOL_OPTIONS and _JAVA_OPTIONS
rdurbin
parents:
35171
diff
changeset
|
523 |
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
|
524 |
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
|
525 |
ScopedVMInitArgs* mod_args, |
4ace9ef0201b
8135198: Add -XX:VMOptionsFile support to JAVA_TOOL_OPTIONS and _JAVA_OPTIONS
rdurbin
parents:
35171
diff
changeset
|
526 |
JavaVMInitArgs** args_out); |
32621
cdab920f3b6c
8061999: Enhance VM option parsing to allow options to be specified in a file
rdurbin
parents:
32619
diff
changeset
|
527 |
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
|
528 |
ScopedVMInitArgs* args_out); |
cdab920f3b6c
8061999: Enhance VM option parsing to allow options to be specified in a file
rdurbin
parents:
32619
diff
changeset
|
529 |
|
35872
7fb1e4de83ff
8145180: Add back PrintGC, PrintGCDetails and -Xloggc
brutisso
parents:
35489
diff
changeset
|
530 |
static bool handle_deprecated_print_gc_flags(); |
7fb1e4de83ff
8145180: Add back PrintGC, PrintGCDetails and -Xloggc
brutisso
parents:
35489
diff
changeset
|
531 |
|
41708
82f5dc0dfccf
8155948: Add message for CMS deprecation for Oracle builds
jmasa
parents:
41073
diff
changeset
|
532 |
static void handle_extra_cms_flags(const char* msg); |
82f5dc0dfccf
8155948: Add message for CMS deprecation for Oracle builds
jmasa
parents:
41073
diff
changeset
|
533 |
|
31853
c70929a2573c
8079301: Some command line options not settable via JAVA_TOOL_OPTIONS
jmanson
parents:
31620
diff
changeset
|
534 |
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
|
535 |
const JavaVMInitArgs *java_options_args, |
c70929a2573c
8079301: Some command line options not settable via JAVA_TOOL_OPTIONS
jmanson
parents:
31620
diff
changeset
|
536 |
const JavaVMInitArgs *cmd_line_args); |
40244
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
537 |
static jint parse_each_vm_init_arg(const JavaVMInitArgs* args, bool* patch_mod_javabase, Flag::Flags origin); |
47103
a993ec29ec75
8186842: Use Java class loaders for creating the CDS archive
ccheung
parents:
46616
diff
changeset
|
538 |
static jint finalize_vm_init_args(bool patch_mod_javabase); |
22555
ea32f6c51d08
8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents:
22551
diff
changeset
|
539 |
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
|
540 |
|
1 | 541 |
static bool is_bad_option(const JavaVMOption* option, jboolean ignore) { |
542 |
return is_bad_option(option, ignore, NULL); |
|
543 |
} |
|
22555
ea32f6c51d08
8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents:
22551
diff
changeset
|
544 |
|
1 | 545 |
static void describe_range_error(ArgsRange errcode); |
46616
66d452cca30f
8178491: -Xss and -XX:ThreadStackSize argument parsing truncates bits
stefank
parents:
43607
diff
changeset
|
546 |
static ArgsRange check_memory_size(julong size, julong min_size, julong max_size); |
1676
d80e69372634
6653214: MemoryPoolMXBean.setUsageThreshold() does not support large heap sizes.
swamyv
parents:
1388
diff
changeset
|
547 |
static ArgsRange parse_memory_size(const char* s, julong* long_arg, |
46616
66d452cca30f
8178491: -Xss and -XX:ThreadStackSize argument parsing truncates bits
stefank
parents:
43607
diff
changeset
|
548 |
julong min_size, julong max_size = max_uintx); |
5035 | 549 |
// Parse a string for a unsigned integer. Returns true if value |
550 |
// is an unsigned integer greater than or equal to the minimum |
|
551 |
// parameter passed and returns the value in uintx_arg. Returns |
|
552 |
// false otherwise, with uintx_arg undefined. |
|
553 |
static bool parse_uintx(const char* value, uintx* uintx_arg, |
|
554 |
uintx min_size); |
|
1 | 555 |
|
556 |
// methods to build strings from individual args |
|
557 |
static void build_jvm_args(const char* arg); |
|
558 |
static void build_jvm_flags(const char* arg); |
|
559 |
static void add_string(char*** bldarray, int* count, const char* arg); |
|
560 |
static const char* build_resource_string(char** args, int count); |
|
561 |
||
562 |
static bool methodExists( |
|
563 |
char* className, char* methodName, |
|
564 |
int classesNum, char** classes, bool* allMethods, |
|
565 |
int methodsNum, char** methods, bool* allClasses |
|
566 |
); |
|
567 |
||
568 |
static void parseOnlyLine( |
|
569 |
const char* line, |
|
570 |
short* classesNum, short* classesMax, char*** classes, bool** allMethods, |
|
571 |
short* methodsNum, short* methodsMax, char*** methods, bool** allClasses |
|
572 |
); |
|
573 |
||
32823
ca8fef4cd57b
8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents:
32621
diff
changeset
|
574 |
// 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
|
575 |
// 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
|
576 |
// 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
|
577 |
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
|
578 |
|
37173
d8aea1500483
8146632: Add descriptive error messages for removed non-product logging flags.
mockner
parents:
37094
diff
changeset
|
579 |
#ifndef PRODUCT |
d8aea1500483
8146632: Add descriptive error messages for removed non-product logging flags.
mockner
parents:
37094
diff
changeset
|
580 |
static const char* removed_develop_logging_flag_name(const char* name); |
d8aea1500483
8146632: Add descriptive error messages for removed non-product logging flags.
mockner
parents:
37094
diff
changeset
|
581 |
#endif // PRODUCT |
d8aea1500483
8146632: Add descriptive error messages for removed non-product logging flags.
mockner
parents:
37094
diff
changeset
|
582 |
|
32823
ca8fef4cd57b
8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents:
32621
diff
changeset
|
583 |
// 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
|
584 |
// 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
|
585 |
// the flag became deprecated. |
ca8fef4cd57b
8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents:
32621
diff
changeset
|
586 |
// 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
|
587 |
// Returns 0 otherwise. |
ca8fef4cd57b
8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents:
32621
diff
changeset
|
588 |
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
|
589 |
|
ca8fef4cd57b
8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents:
32621
diff
changeset
|
590 |
// 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
|
591 |
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
|
592 |
|
ca8fef4cd57b
8066821: Enhance command line processing to manage deprecating and obsoleting -XX command line arguments
drwhite
parents:
32621
diff
changeset
|
593 |
// 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
|
594 |
// 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
|
595 |
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
|
596 |
static bool lookup_logging_aliases(const char* arg, char* buffer); |
37216
5555c1f804c4
8145235: Deprecate product flags that have been converted to Unified Logging
rprotacio
parents:
37199
diff
changeset
|
597 |
static AliasedLoggingFlag catch_logging_aliases(const char* name, bool on); |
1 | 598 |
static short CompileOnlyClassesNum; |
599 |
static short CompileOnlyClassesMax; |
|
600 |
static char** CompileOnlyClasses; |
|
601 |
static bool* CompileOnlyAllMethods; |
|
602 |
||
603 |
static short CompileOnlyMethodsNum; |
|
604 |
static short CompileOnlyMethodsMax; |
|
605 |
static char** CompileOnlyMethods; |
|
606 |
static bool* CompileOnlyAllClasses; |
|
607 |
||
608 |
static short InterpretOnlyClassesNum; |
|
609 |
static short InterpretOnlyClassesMax; |
|
610 |
static char** InterpretOnlyClasses; |
|
611 |
static bool* InterpretOnlyAllMethods; |
|
612 |
||
613 |
static bool CheckCompileOnly; |
|
614 |
||
615 |
static char* SharedArchivePath; |
|
616 |
||
617 |
public: |
|
28650
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28372
diff
changeset
|
618 |
// Scale compile thresholds |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28372
diff
changeset
|
619 |
// Returns threshold scaled with CompileThresholdScaling |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28372
diff
changeset
|
620 |
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
|
621 |
static intx scaled_compile_threshold(intx threshold) { |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28372
diff
changeset
|
622 |
return scaled_compile_threshold(threshold, CompileThresholdScaling); |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28372
diff
changeset
|
623 |
} |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28372
diff
changeset
|
624 |
// Returns freq_log scaled with CompileThresholdScaling |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28372
diff
changeset
|
625 |
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
|
626 |
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
|
627 |
return scaled_freq_log(freq_log, CompileThresholdScaling); |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28372
diff
changeset
|
628 |
} |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28372
diff
changeset
|
629 |
|
19986
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19732
diff
changeset
|
630 |
// Parses the arguments, first phase |
1 | 631 |
static jint parse(const JavaVMInitArgs* args); |
19986
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19732
diff
changeset
|
632 |
// Apply ergonomics |
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19732
diff
changeset
|
633 |
static jint apply_ergo(); |
14580
3e2316663327
7198334: UseNUMA modifies system parameters on non-NUMA system
brutisso
parents:
13963
diff
changeset
|
634 |
// 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
|
635 |
static jint adjust_after_os(); |
22555
ea32f6c51d08
8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents:
22551
diff
changeset
|
636 |
|
27892
06a143c836ad
8065305: Make it possible to extend the G1CollectorPolicy
jwilhelm
parents:
27148
diff
changeset
|
637 |
static void set_gc_specific_flags(); |
37199
74703ea13069
8068579: Running with -XX:-UseParallelGC does not turn ParalleGC off
pliden
parents:
37179
diff
changeset
|
638 |
static bool gc_selected(); // whether a gc has been selected |
26836
b27ec66071c7
8057531: refactor gc argument processing code slightly
jcoomes
parents:
26824
diff
changeset
|
639 |
static void select_gc_ergonomically(); |
36313
e7eff81d7f1d
8145333: -XX:+EnableJVMCI -XX:+UseJVMCICompiler -XX:-EnableJVMCI makes JVM crash
jcm
parents:
35872
diff
changeset
|
640 |
#if INCLUDE_JVMCI |
e7eff81d7f1d
8145333: -XX:+EnableJVMCI -XX:+UseJVMCICompiler -XX:-EnableJVMCI makes JVM crash
jcm
parents:
35872
diff
changeset
|
641 |
// Check consistency of jvmci vm argument settings. |
e7eff81d7f1d
8145333: -XX:+EnableJVMCI -XX:+UseJVMCICompiler -XX:-EnableJVMCI makes JVM crash
jcm
parents:
35872
diff
changeset
|
642 |
static bool check_jvmci_args_consistency(); |
43433
acc1d9072823
8166125: [JVMCI] Missing JVMCI flag default values
davleopo
parents:
41708
diff
changeset
|
643 |
static void set_jvmci_specific_flags(); |
36313
e7eff81d7f1d
8145333: -XX:+EnableJVMCI -XX:+UseJVMCICompiler -XX:-EnableJVMCI makes JVM crash
jcm
parents:
35872
diff
changeset
|
644 |
#endif |
183
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
645 |
// Check for consistency in the selection of the garbage collector. |
29696
01571dfab5be
8073944: Simplify ArgumentsExt and remove unneeded functionallity
sjohanss
parents:
29076
diff
changeset
|
646 |
static bool check_gc_consistency(); // Check user-selected gc |
22551 | 647 |
// Check consistency or otherwise of VM argument settings |
1 | 648 |
static bool check_vm_args_consistency(); |
649 |
// Used by os_solaris |
|
650 |
static bool process_settings_file(const char* file_name, bool should_exist, jboolean ignore_unrecognized); |
|
651 |
||
19986
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19732
diff
changeset
|
652 |
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
|
653 |
// 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
|
654 |
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
|
655 |
|
1 | 656 |
// return a char* array containing all options |
657 |
static char** jvm_flags_array() { return _jvm_flags_array; } |
|
658 |
static char** jvm_args_array() { return _jvm_args_array; } |
|
659 |
static int num_jvm_flags() { return _num_jvm_flags; } |
|
660 |
static int num_jvm_args() { return _num_jvm_args; } |
|
661 |
// return the arguments passed to the Java application |
|
662 |
static const char* java_command() { return _java_command; } |
|
663 |
||
664 |
// print jvm_flags, jvm_args and java_command |
|
665 |
static void print_on(outputStream* st); |
|
31963
641ed52732ec
8026324: hs_err improvement: Add summary section to hs_err file
coleenp
parents:
31853
diff
changeset
|
666 |
static void print_summary_on(outputStream* st); |
1 | 667 |
|
34125
56c4a2d19ee1
8141068: refactor -XXFlags= code in preparation for removal
rdurbin
parents:
32823
diff
changeset
|
668 |
// convenient methods to get and set jvm_flags_file |
56c4a2d19ee1
8141068: refactor -XXFlags= code in preparation for removal
rdurbin
parents:
32823
diff
changeset
|
669 |
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
|
670 |
static void set_jvm_flags_file(const char *value) { |
56c4a2d19ee1
8141068: refactor -XXFlags= code in preparation for removal
rdurbin
parents:
32823
diff
changeset
|
671 |
if (_jvm_flags_file != NULL) { |
56c4a2d19ee1
8141068: refactor -XXFlags= code in preparation for removal
rdurbin
parents:
32823
diff
changeset
|
672 |
os::free(_jvm_flags_file); |
56c4a2d19ee1
8141068: refactor -XXFlags= code in preparation for removal
rdurbin
parents:
32823
diff
changeset
|
673 |
} |
56c4a2d19ee1
8141068: refactor -XXFlags= code in preparation for removal
rdurbin
parents:
32823
diff
changeset
|
674 |
_jvm_flags_file = os::strdup_check_oom(value); |
56c4a2d19ee1
8141068: refactor -XXFlags= code in preparation for removal
rdurbin
parents:
32823
diff
changeset
|
675 |
} |
1 | 676 |
// convenient methods to obtain / print jvm_flags and jvm_args |
677 |
static const char* jvm_flags() { return build_resource_string(_jvm_flags_array, _num_jvm_flags); } |
|
678 |
static const char* jvm_args() { return build_resource_string(_jvm_args_array, _num_jvm_args); } |
|
679 |
static void print_jvm_flags_on(outputStream* st); |
|
680 |
static void print_jvm_args_on(outputStream* st); |
|
681 |
||
682 |
// -Dkey=value flags |
|
683 |
static SystemProperty* system_properties() { return _system_properties; } |
|
684 |
static const char* get_property(const char* key); |
|
685 |
||
686 |
// -Djava.vendor.url.bug |
|
687 |
static const char* java_vendor_url_bug() { return _java_vendor_url_bug; } |
|
688 |
||
689 |
// -Dsun.java.launcher |
|
690 |
static const char* sun_java_launcher() { return _sun_java_launcher; } |
|
691 |
// Was VM created by a Java launcher? |
|
692 |
static bool created_by_java_launcher(); |
|
22734
41757c1f3946
8027113: decouple the '-XXaltjvm=<path>' option from the gamma launcher
rdurbin
parents:
20288
diff
changeset
|
693 |
// -Dsun.java.launcher.is_altjvm |
41757c1f3946
8027113: decouple the '-XXaltjvm=<path>' option from the gamma launcher
rdurbin
parents:
20288
diff
changeset
|
694 |
static bool sun_java_launcher_is_altjvm(); |
1 | 695 |
// -Dsun.java.launcher.pid |
696 |
static int sun_java_launcher_pid() { return _sun_java_launcher_pid; } |
|
697 |
||
22551 | 698 |
// -Xms |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29696
diff
changeset
|
699 |
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
|
700 |
static void set_min_heap_size(size_t v) { _min_heap_size = v; } |
1 | 701 |
|
702 |
// -Xrun |
|
703 |
static AgentLibrary* libraries() { return _libraryList.first(); } |
|
704 |
static bool init_libraries_at_startup() { return !_libraryList.is_empty(); } |
|
705 |
static void convert_library_to_agent(AgentLibrary* lib) |
|
706 |
{ _libraryList.remove(lib); |
|
707 |
_agentList.add(lib); } |
|
708 |
||
709 |
// -agentlib -agentpath |
|
710 |
static AgentLibrary* agents() { return _agentList.first(); } |
|
711 |
static bool init_agents_at_startup() { return !_agentList.is_empty(); } |
|
712 |
||
713 |
// abort, exit, vfprintf hooks |
|
714 |
static abort_hook_t abort_hook() { return _abort_hook; } |
|
715 |
static exit_hook_t exit_hook() { return _exit_hook; } |
|
716 |
static vfprintf_hook_t vfprintf_hook() { return _vfprintf_hook; } |
|
717 |
||
718 |
static bool GetCheckCompileOnly () { return CheckCompileOnly; } |
|
719 |
||
720 |
static const char* GetSharedArchivePath() { return SharedArchivePath; } |
|
721 |
||
722 |
static bool CompileMethod(char* className, char* methodName) { |
|
723 |
return |
|
724 |
methodExists( |
|
725 |
className, methodName, |
|
726 |
CompileOnlyClassesNum, CompileOnlyClasses, CompileOnlyAllMethods, |
|
727 |
CompileOnlyMethodsNum, CompileOnlyMethods, CompileOnlyAllClasses |
|
728 |
); |
|
729 |
} |
|
730 |
||
731 |
// Java launcher properties |
|
732 |
static void process_sun_java_launcher_properties(JavaVMInitArgs* args); |
|
733 |
||
734 |
// System properties |
|
735 |
static void init_system_properties(); |
|
736 |
||
6961
a32b2fc66321
6988363: Rebrand vm vendor property settings (jdk7 only)
zgu
parents:
6453
diff
changeset
|
737 |
// Update/Initialize System properties after JDK version number is known |
a32b2fc66321
6988363: Rebrand vm vendor property settings (jdk7 only)
zgu
parents:
6453
diff
changeset
|
738 |
static void init_version_specific_system_properties(); |
a32b2fc66321
6988363: Rebrand vm vendor property settings (jdk7 only)
zgu
parents:
6453
diff
changeset
|
739 |
|
2358 | 740 |
// Property List manipulation |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
27926
diff
changeset
|
741 |
static void PropertyList_add(SystemProperty *element); |
1 | 742 |
static void PropertyList_add(SystemProperty** plist, SystemProperty *element); |
40244
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
743 |
static void PropertyList_add(SystemProperty** plist, const char* k, const char* v, bool writeable, bool internal); |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
744 |
|
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
745 |
static void PropertyList_unique_add(SystemProperty** plist, const char* k, const char* v, |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
746 |
PropertyAppendable append, PropertyWriteable writeable, |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
747 |
PropertyInternal internal); |
1 | 748 |
static const char* PropertyList_get_value(SystemProperty* plist, const char* key); |
40244
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
749 |
static const char* PropertyList_get_readable_value(SystemProperty* plist, const char* key); |
1 | 750 |
static int PropertyList_count(SystemProperty* pl); |
40244
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
751 |
static int PropertyList_readable_count(SystemProperty* pl); |
1 | 752 |
static const char* PropertyList_get_key_at(SystemProperty* pl,int index); |
753 |
static char* PropertyList_get_value_at(SystemProperty* pl,int index); |
|
754 |
||
40244
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
755 |
static bool is_internal_module_property(const char* option); |
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
756 |
|
1 | 757 |
// Miscellaneous System property value getter and setters. |
32595
8cde9aca5e9f
8132725: Memory leak in Arguments::add_property function
ddmitriev
parents:
32366
diff
changeset
|
758 |
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
|
759 |
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
|
760 |
static void set_library_path(const char *value) { _java_library_path->set_value(value); } |
27562 | 761 |
static void set_ext_dirs(char *value) { _ext_dirs = os::strdup_check_oom(value); } |
36508 | 762 |
|
37773
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
763 |
// Set up the underlying pieces of the system boot class path |
40244
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
764 |
static void add_patch_mod_prefix(const char *module_name, const char *path, bool* patch_mod_javabase); |
40013 | 765 |
static void set_sysclasspath(const char *value, bool has_jimage) { |
766 |
// During start up, set by os::set_boot_path() |
|
767 |
assert(get_sysclasspath() == NULL, "System boot class path previously set"); |
|
36508 | 768 |
_system_boot_class_path->set_value(value); |
40013 | 769 |
_has_jimage = has_jimage; |
36508 | 770 |
} |
771 |
static void append_sysclasspath(const char *value) { |
|
772 |
_system_boot_class_path->append_value(value); |
|
40013 | 773 |
_jdk_boot_class_path_append->append_value(value); |
36508 | 774 |
} |
1 | 775 |
|
40244
b3055c216762
8136930: Simplify use of module-system options by custom launchers
hseigel
parents:
40013
diff
changeset
|
776 |
static GrowableArray<ModulePatchPath*>* get_patch_mod_prefix() { return _patch_mod_prefix; } |
36508 | 777 |
static char* get_sysclasspath() { return _system_boot_class_path->value(); } |
37773
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
778 |
static char* get_jdk_boot_class_path_append() { return _jdk_boot_class_path_append->value(); } |
40013 | 779 |
static bool has_jimage() { return _has_jimage; } |
37773
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
780 |
|
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
781 |
static char* get_java_home() { return _java_home->value(); } |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
782 |
static char* get_dll_dir() { return _sun_boot_library_path->value(); } |
e5b3e9732c3c
8154956: Module system implementation refresh (4/2016)
alanb
parents:
37491
diff
changeset
|
783 |
static char* get_ext_dirs() { return _ext_dirs; } |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25468
diff
changeset
|
784 |
static char* get_appclasspath() { return _java_class_path->value(); } |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25468
diff
changeset
|
785 |
static void fix_appclasspath(); |
1 | 786 |
|
27562 | 787 |
|
1 | 788 |
// Operation modi |
36508 | 789 |
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
|
790 |
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
|
791 |
|
1 | 792 |
|
793 |
// Utility: copies src into buf, replacing "%%" with "%" and "%p" with pid. |
|
794 |
static bool copy_expand_pid(const char* src, size_t srclen, char* buf, size_t buflen); |
|
36508 | 795 |
|
796 |
static void check_unsupported_dumping_properties() NOT_CDS_RETURN; |
|
38195 | 797 |
|
798 |
static bool atojulong(const char *s, julong* result); |
|
1 | 799 |
}; |
7397 | 800 |
|
28838
da47c3cc5c98
8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents:
28650
diff
changeset
|
801 |
// 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
|
802 |
// were explicitly requested on the command-line |
37253
45e69c7b0bac
8152929: Remove UNSUPPORTED_GC_OPTION, use UNSUPPORTED_OPTION instead
pliden
parents:
37216
diff
changeset
|
803 |
#define UNSUPPORTED_OPTION(opt) \ |
45e69c7b0bac
8152929: Remove UNSUPPORTED_GC_OPTION, use UNSUPPORTED_OPTION instead
pliden
parents:
37216
diff
changeset
|
804 |
do { \ |
45e69c7b0bac
8152929: Remove UNSUPPORTED_GC_OPTION, use UNSUPPORTED_OPTION instead
pliden
parents:
37216
diff
changeset
|
805 |
if (opt) { \ |
45e69c7b0bac
8152929: Remove UNSUPPORTED_GC_OPTION, use UNSUPPORTED_OPTION instead
pliden
parents:
37216
diff
changeset
|
806 |
if (FLAG_IS_CMDLINE(opt)) { \ |
45e69c7b0bac
8152929: Remove UNSUPPORTED_GC_OPTION, use UNSUPPORTED_OPTION instead
pliden
parents:
37216
diff
changeset
|
807 |
warning("-XX:+" #opt " not supported in this VM"); \ |
45e69c7b0bac
8152929: Remove UNSUPPORTED_GC_OPTION, use UNSUPPORTED_OPTION instead
pliden
parents:
37216
diff
changeset
|
808 |
} \ |
45e69c7b0bac
8152929: Remove UNSUPPORTED_GC_OPTION, use UNSUPPORTED_OPTION instead
pliden
parents:
37216
diff
changeset
|
809 |
FLAG_SET_DEFAULT(opt, false); \ |
45e69c7b0bac
8152929: Remove UNSUPPORTED_GC_OPTION, use UNSUPPORTED_OPTION instead
pliden
parents:
37216
diff
changeset
|
810 |
} \ |
28838
da47c3cc5c98
8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents:
28650
diff
changeset
|
811 |
} while(0) |
da47c3cc5c98
8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents:
28650
diff
changeset
|
812 |
|
7397 | 813 |
#endif // SHARE_VM_RUNTIME_ARGUMENTS_HPP |