author | jmasa |
Sun, 19 Oct 2014 20:23:12 -0700 | |
changeset 29870 | ea8305ce32fa |
parent 29697 | 92501504191b |
child 30201 | cfe623bb3f9c |
permissions | -rw-r--r-- |
1 | 1 |
/* |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
27926
diff
changeset
|
2 |
* Copyright (c) 1997, 2015, 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 |
||
28 |
#include "runtime/java.hpp" |
|
25468
5331df506290
8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents:
25074
diff
changeset
|
29 |
#include "runtime/os.hpp" |
7397 | 30 |
#include "runtime/perfData.hpp" |
22555
ea32f6c51d08
8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents:
22551
diff
changeset
|
31 |
#include "utilities/debug.hpp" |
7397 | 32 |
#include "utilities/top.hpp" |
33 |
||
1 | 34 |
// Arguments parses the command line and recognizes options |
35 |
||
36 |
// Invocation API hook typedefs (these should really be defined in jni.hpp) |
|
37 |
extern "C" { |
|
38 |
typedef void (JNICALL *abort_hook_t)(void); |
|
39 |
typedef void (JNICALL *exit_hook_t)(jint code); |
|
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
22735
diff
changeset
|
40 |
typedef jint (JNICALL *vfprintf_hook_t)(FILE *fp, const char *format, va_list args) ATTRIBUTE_PRINTF(2, 0); |
1 | 41 |
} |
42 |
||
43 |
// Forward declarations |
|
44 |
||
45 |
class SysClassPath; |
|
46 |
||
47 |
// Element describing System and User (-Dkey=value flags) defined property. |
|
48 |
||
13195 | 49 |
class SystemProperty: public CHeapObj<mtInternal> { |
1 | 50 |
private: |
51 |
char* _key; |
|
52 |
char* _value; |
|
53 |
SystemProperty* _next; |
|
54 |
bool _writeable; |
|
55 |
bool writeable() { return _writeable; } |
|
56 |
||
57 |
public: |
|
58 |
// Accessors |
|
59 |
const char* key() const { return _key; } |
|
60 |
char* value() const { return _value; } |
|
61 |
SystemProperty* next() const { return _next; } |
|
62 |
void set_next(SystemProperty* next) { _next = next; } |
|
63 |
bool set_value(char *value) { |
|
64 |
if (writeable()) { |
|
65 |
if (_value != NULL) { |
|
66 |
FreeHeap(_value); |
|
67 |
} |
|
13195 | 68 |
_value = AllocateHeap(strlen(value)+1, mtInternal); |
1 | 69 |
if (_value != NULL) { |
70 |
strcpy(_value, value); |
|
71 |
} |
|
72 |
return true; |
|
73 |
} |
|
74 |
return false; |
|
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 |
} |
|
13195 | 85 |
sp = AllocateHeap(len+2, mtInternal); |
1 | 86 |
if (sp != NULL) { |
87 |
if (_value != NULL) { |
|
88 |
strcpy(sp, _value); |
|
89 |
strcat(sp, os::path_separator()); |
|
90 |
strcat(sp, value); |
|
91 |
FreeHeap(_value); |
|
92 |
} else { |
|
93 |
strcpy(sp, value); |
|
94 |
} |
|
95 |
_value = sp; |
|
96 |
} |
|
97 |
} |
|
98 |
} |
|
99 |
||
100 |
// Constructor |
|
101 |
SystemProperty(const char* key, const char* value, bool writeable) { |
|
102 |
if (key == NULL) { |
|
103 |
_key = NULL; |
|
104 |
} else { |
|
13195 | 105 |
_key = AllocateHeap(strlen(key)+1, mtInternal); |
1 | 106 |
strcpy(_key, key); |
107 |
} |
|
108 |
if (value == NULL) { |
|
109 |
_value = NULL; |
|
110 |
} else { |
|
13195 | 111 |
_value = AllocateHeap(strlen(value)+1, mtInternal); |
1 | 112 |
strcpy(_value, value); |
113 |
} |
|
114 |
_next = NULL; |
|
115 |
_writeable = writeable; |
|
116 |
} |
|
117 |
}; |
|
118 |
||
119 |
||
120 |
// For use by -agentlib, -agentpath and -Xrun |
|
13195 | 121 |
class AgentLibrary : public CHeapObj<mtInternal> { |
1 | 122 |
friend class AgentLibraryList; |
19553
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
123 |
public: |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
124 |
// 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
|
125 |
// 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
|
126 |
enum AgentState { |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
127 |
agent_invalid = 0, |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
128 |
agent_valid = 1 |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
129 |
}; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
130 |
|
1 | 131 |
private: |
132 |
char* _name; |
|
133 |
char* _options; |
|
134 |
void* _os_lib; |
|
135 |
bool _is_absolute_path; |
|
19553
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
136 |
bool _is_static_lib; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
137 |
AgentState _state; |
1 | 138 |
AgentLibrary* _next; |
139 |
||
140 |
public: |
|
141 |
// Accessors |
|
142 |
const char* name() const { return _name; } |
|
143 |
char* options() const { return _options; } |
|
144 |
bool is_absolute_path() const { return _is_absolute_path; } |
|
145 |
void* os_lib() const { return _os_lib; } |
|
146 |
void set_os_lib(void* os_lib) { _os_lib = os_lib; } |
|
147 |
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
|
148 |
bool is_static_lib() const { return _is_static_lib; } |
19973 | 149 |
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
|
150 |
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
|
151 |
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
|
152 |
void set_invalid() { _state = agent_invalid; } |
1 | 153 |
|
154 |
// Constructor |
|
155 |
AgentLibrary(const char* name, const char* options, bool is_absolute_path, void* os_lib) { |
|
13195 | 156 |
_name = AllocateHeap(strlen(name)+1, mtInternal); |
1 | 157 |
strcpy(_name, name); |
158 |
if (options == NULL) { |
|
159 |
_options = NULL; |
|
160 |
} else { |
|
13195 | 161 |
_options = AllocateHeap(strlen(options)+1, mtInternal); |
1 | 162 |
strcpy(_options, options); |
163 |
} |
|
164 |
_is_absolute_path = is_absolute_path; |
|
165 |
_os_lib = os_lib; |
|
166 |
_next = NULL; |
|
19553
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
167 |
_state = agent_invalid; |
9bbd930be684
8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents:
19319
diff
changeset
|
168 |
_is_static_lib = false; |
1 | 169 |
} |
170 |
}; |
|
171 |
||
172 |
// maintain an order of entry list of AgentLibrary |
|
173 |
class AgentLibraryList VALUE_OBJ_CLASS_SPEC { |
|
174 |
private: |
|
175 |
AgentLibrary* _first; |
|
176 |
AgentLibrary* _last; |
|
177 |
public: |
|
178 |
bool is_empty() const { return _first == NULL; } |
|
179 |
AgentLibrary* first() const { return _first; } |
|
180 |
||
181 |
// add to the end of the list |
|
182 |
void add(AgentLibrary* lib) { |
|
183 |
if (is_empty()) { |
|
184 |
_first = _last = lib; |
|
185 |
} else { |
|
186 |
_last->_next = lib; |
|
187 |
_last = lib; |
|
188 |
} |
|
189 |
lib->_next = NULL; |
|
190 |
} |
|
191 |
||
192 |
// search for and remove a library known to be in the list |
|
193 |
void remove(AgentLibrary* lib) { |
|
194 |
AgentLibrary* curr; |
|
195 |
AgentLibrary* prev = NULL; |
|
196 |
for (curr = first(); curr != NULL; prev = curr, curr = curr->next()) { |
|
197 |
if (curr == lib) { |
|
198 |
break; |
|
199 |
} |
|
200 |
} |
|
201 |
assert(curr != NULL, "always should be found"); |
|
202 |
||
203 |
if (curr != NULL) { |
|
204 |
// it was found, by-pass this library |
|
205 |
if (prev == NULL) { |
|
206 |
_first = curr->_next; |
|
207 |
} else { |
|
208 |
prev->_next = curr->_next; |
|
209 |
} |
|
210 |
if (curr == _last) { |
|
211 |
_last = prev; |
|
212 |
} |
|
213 |
curr->_next = NULL; |
|
214 |
} |
|
215 |
} |
|
216 |
||
217 |
AgentLibraryList() { |
|
218 |
_first = NULL; |
|
219 |
_last = NULL; |
|
220 |
} |
|
221 |
}; |
|
222 |
||
223 |
||
224 |
class Arguments : AllStatic { |
|
225 |
friend class VMStructs; |
|
226 |
friend class JvmtiExport; |
|
227 |
public: |
|
228 |
// Operation modi |
|
229 |
enum Mode { |
|
230 |
_int, // corresponds to -Xint |
|
231 |
_mixed, // corresponds to -Xmixed |
|
232 |
_comp // corresponds to -Xcomp |
|
233 |
}; |
|
234 |
||
235 |
enum ArgsRange { |
|
236 |
arg_unreadable = -3, |
|
237 |
arg_too_small = -2, |
|
238 |
arg_too_big = -1, |
|
239 |
arg_in_range = 0 |
|
240 |
}; |
|
241 |
||
242 |
private: |
|
243 |
||
244 |
// an array containing all flags specified in the .hotspotrc file |
|
245 |
static char** _jvm_flags_array; |
|
246 |
static int _num_jvm_flags; |
|
247 |
// an array containing all jvm arguments specified in the command line |
|
248 |
static char** _jvm_args_array; |
|
249 |
static int _num_jvm_args; |
|
250 |
// string containing all java command (class/jarfile name and app args) |
|
251 |
static char* _java_command; |
|
252 |
||
253 |
// Property list |
|
254 |
static SystemProperty* _system_properties; |
|
255 |
||
256 |
// Quick accessor to System properties in the list: |
|
257 |
static SystemProperty *_sun_boot_library_path; |
|
258 |
static SystemProperty *_java_library_path; |
|
259 |
static SystemProperty *_java_home; |
|
260 |
static SystemProperty *_java_class_path; |
|
261 |
static SystemProperty *_sun_boot_class_path; |
|
262 |
||
27562 | 263 |
// temporary: to emit warning if the default ext dirs are not empty. |
264 |
// remove this variable when the warning is no longer needed. |
|
265 |
static char* _ext_dirs; |
|
266 |
||
1 | 267 |
// java.vendor.url.bug, bug reporting URL for fatal errors. |
268 |
static const char* _java_vendor_url_bug; |
|
269 |
||
270 |
// 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
|
271 |
// java launcher |
1 | 272 |
static const char* _sun_java_launcher; |
273 |
||
274 |
// sun.java.launcher.pid, private property |
|
275 |
static int _sun_java_launcher_pid; |
|
276 |
||
22734
41757c1f3946
8027113: decouple the '-XXaltjvm=<path>' option from the gamma launcher
rdurbin
parents:
20288
diff
changeset
|
277 |
// 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
|
278 |
static bool _sun_java_launcher_is_altjvm; |
8476
7e34c2d4cf9b
7022037: Pause when exiting if debugger is attached on windows
sla
parents:
7397
diff
changeset
|
279 |
|
1 | 280 |
// Option flags |
281 |
static bool _has_profile; |
|
282 |
static const char* _gc_log_filename; |
|
19986
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19732
diff
changeset
|
283 |
// 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
|
284 |
static size_t _conservative_max_heap_alignment; |
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19732
diff
changeset
|
285 |
|
26824
a04a1291103f
8055006: Store original value of Min/MaxHeapFreeRatio
jwilhelm
parents:
26585
diff
changeset
|
286 |
static uintx _min_heap_size; |
a04a1291103f
8055006: Store original value of Min/MaxHeapFreeRatio
jwilhelm
parents:
26585
diff
changeset
|
287 |
|
a04a1291103f
8055006: Store original value of Min/MaxHeapFreeRatio
jwilhelm
parents:
26585
diff
changeset
|
288 |
// Used to store original flag values |
a04a1291103f
8055006: Store original value of Min/MaxHeapFreeRatio
jwilhelm
parents:
26585
diff
changeset
|
289 |
static uintx _min_heap_free_ratio; |
a04a1291103f
8055006: Store original value of Min/MaxHeapFreeRatio
jwilhelm
parents:
26585
diff
changeset
|
290 |
static uintx _max_heap_free_ratio; |
1 | 291 |
|
292 |
// -Xrun arguments |
|
293 |
static AgentLibraryList _libraryList; |
|
294 |
static void add_init_library(const char* name, char* options) |
|
295 |
{ _libraryList.add(new AgentLibrary(name, options, false, NULL)); } |
|
296 |
||
297 |
// -agentlib and -agentpath arguments |
|
298 |
static AgentLibraryList _agentList; |
|
299 |
static void add_init_agent(const char* name, char* options, bool absolute_path) |
|
300 |
{ _agentList.add(new AgentLibrary(name, options, absolute_path, NULL)); } |
|
301 |
||
302 |
// 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
|
303 |
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
|
304 |
{ _agentList.add(agentLib); } |
1 | 305 |
static void add_loaded_agent(const char* name, char* options, bool absolute_path, void* os_lib) |
306 |
{ _agentList.add(new AgentLibrary(name, options, absolute_path, os_lib)); } |
|
307 |
||
308 |
// Operation modi |
|
309 |
static Mode _mode; |
|
310 |
static void set_mode_flags(Mode mode); |
|
311 |
static bool _java_compiler; |
|
312 |
static void set_java_compiler(bool arg) { _java_compiler = arg; } |
|
313 |
static bool java_compiler() { return _java_compiler; } |
|
314 |
||
315 |
// -Xdebug flag |
|
316 |
static bool _xdebug_mode; |
|
317 |
static void set_xdebug_mode(bool arg) { _xdebug_mode = arg; } |
|
318 |
static bool xdebug_mode() { return _xdebug_mode; } |
|
319 |
||
320 |
// Used to save default settings |
|
321 |
static bool _AlwaysCompileLoopMethods; |
|
322 |
static bool _UseOnStackReplacement; |
|
323 |
static bool _BackgroundCompilation; |
|
324 |
static bool _ClipInlining; |
|
325 |
static bool _CIDynamicCompilePriority; |
|
326 |
||
6453 | 327 |
// Tiered |
328 |
static void set_tiered_flags(); |
|
24437
4770f8076932
8042431: compiler/7200264/TestIntVect.java fails with: Test Failed: AddVI 0 < 4
anoll
parents:
22735
diff
changeset
|
329 |
static int get_min_number_of_compiler_threads(); |
1 | 330 |
// CMS/ParNew garbage collectors |
331 |
static void set_parnew_gc_flags(); |
|
332 |
static void set_cms_and_parnew_gc_flags(); |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
183
diff
changeset
|
333 |
// UseParallel[Old]GC |
1 | 334 |
static void set_parallel_gc_flags(); |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
183
diff
changeset
|
335 |
// Garbage-First (UseG1GC) |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
183
diff
changeset
|
336 |
static void set_g1_gc_flags(); |
1 | 337 |
// GC ergonomics |
19986
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19732
diff
changeset
|
338 |
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
|
339 |
static void set_use_compressed_oops(); |
19319
0ad35be0733a
8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents:
18687
diff
changeset
|
340 |
static void set_use_compressed_klass_ptrs(); |
26836
b27ec66071c7
8057531: refactor gc argument processing code slightly
jcoomes
parents:
26824
diff
changeset
|
341 |
static void select_gc(); |
1 | 342 |
static void set_ergonomics_flags(); |
8681
c691d94813f9
7018056: large pages not always enabled by default
jcoomes
parents:
8476
diff
changeset
|
343 |
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
|
344 |
// 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
|
345 |
// 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
|
346 |
static julong limit_by_allocatable_memory(julong size); |
4434 | 347 |
// Setup heap size |
348 |
static void set_heap_size(); |
|
1 | 349 |
// Based on automatic selection criteria, should the |
350 |
// low pause collector be used. |
|
351 |
static bool should_auto_select_low_pause_collector(); |
|
352 |
||
353 |
// Bytecode rewriting |
|
354 |
static void set_bytecode_flags(); |
|
355 |
||
356 |
// Invocation API hooks |
|
357 |
static abort_hook_t _abort_hook; |
|
358 |
static exit_hook_t _exit_hook; |
|
359 |
static vfprintf_hook_t _vfprintf_hook; |
|
360 |
||
361 |
// System properties |
|
362 |
static bool add_property(const char* prop); |
|
363 |
||
364 |
// Aggressive optimization flags. |
|
365 |
static void set_aggressive_opts_flags(); |
|
366 |
||
367 |
// Argument parsing |
|
368 |
static void do_pd_flag_adjustments(); |
|
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20006
diff
changeset
|
369 |
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
|
370 |
static bool process_argument(const char* arg, jboolean ignore_unrecognized, Flag::Flags origin); |
1 | 371 |
static void process_java_launcher_argument(const char*, void*); |
372 |
static void process_java_compiler_argument(char* arg); |
|
373 |
static jint parse_options_environment_variable(const char* name, SysClassPath* scp_p, bool* scp_assembly_required_p); |
|
374 |
static jint parse_java_tool_options_environment_variable(SysClassPath* scp_p, bool* scp_assembly_required_p); |
|
375 |
static jint parse_java_options_environment_variable(SysClassPath* scp_p, bool* scp_assembly_required_p); |
|
376 |
static jint parse_vm_init_args(const JavaVMInitArgs* args); |
|
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20006
diff
changeset
|
377 |
static jint parse_each_vm_init_arg(const JavaVMInitArgs* args, SysClassPath* scp_p, bool* scp_assembly_required_p, Flag::Flags origin); |
1 | 378 |
static jint finalize_vm_init_args(SysClassPath* scp_p, bool scp_assembly_required); |
22555
ea32f6c51d08
8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents:
22551
diff
changeset
|
379 |
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
|
380 |
|
1 | 381 |
static bool is_bad_option(const JavaVMOption* option, jboolean ignore) { |
382 |
return is_bad_option(option, ignore, NULL); |
|
383 |
} |
|
22555
ea32f6c51d08
8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents:
22551
diff
changeset
|
384 |
|
ea32f6c51d08
8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents:
22551
diff
changeset
|
385 |
static bool is_percentage(uintx val) { |
ea32f6c51d08
8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents:
22551
diff
changeset
|
386 |
return val <= 100; |
ea32f6c51d08
8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents:
22551
diff
changeset
|
387 |
} |
ea32f6c51d08
8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents:
22551
diff
changeset
|
388 |
|
4885
cee90a57b58f
6885297: java -XX:RefDiscoveryPolicy=2 or -XX:TLABWasteTargetPercent=0 cause VM crash
johnc
parents:
4434
diff
changeset
|
389 |
static bool verify_interval(uintx val, uintx min, |
cee90a57b58f
6885297: java -XX:RefDiscoveryPolicy=2 or -XX:TLABWasteTargetPercent=0 cause VM crash
johnc
parents:
4434
diff
changeset
|
390 |
uintx max, const char* name); |
6414
ef8d1e9052a8
6885308: The incorrect -XX:StackRedPages, -XX:StackShadowPages, -XX:StackYellowPages could cause VM crash
ptisnovs
parents:
5547
diff
changeset
|
391 |
static bool verify_min_value(intx val, intx min, const char* name); |
1 | 392 |
static bool verify_percentage(uintx value, const char* name); |
393 |
static void describe_range_error(ArgsRange errcode); |
|
1676
d80e69372634
6653214: MemoryPoolMXBean.setUsageThreshold() does not support large heap sizes.
swamyv
parents:
1388
diff
changeset
|
394 |
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
|
395 |
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
|
396 |
julong min_size); |
5035 | 397 |
// Parse a string for a unsigned integer. Returns true if value |
398 |
// is an unsigned integer greater than or equal to the minimum |
|
399 |
// parameter passed and returns the value in uintx_arg. Returns |
|
400 |
// false otherwise, with uintx_arg undefined. |
|
401 |
static bool parse_uintx(const char* value, uintx* uintx_arg, |
|
402 |
uintx min_size); |
|
1 | 403 |
|
404 |
// methods to build strings from individual args |
|
405 |
static void build_jvm_args(const char* arg); |
|
406 |
static void build_jvm_flags(const char* arg); |
|
407 |
static void add_string(char*** bldarray, int* count, const char* arg); |
|
408 |
static const char* build_resource_string(char** args, int count); |
|
409 |
||
410 |
static bool methodExists( |
|
411 |
char* className, char* methodName, |
|
412 |
int classesNum, char** classes, bool* allMethods, |
|
413 |
int methodsNum, char** methods, bool* allClasses |
|
414 |
); |
|
415 |
||
416 |
static void parseOnlyLine( |
|
417 |
const char* line, |
|
418 |
short* classesNum, short* classesMax, char*** classes, bool** allMethods, |
|
419 |
short* methodsNum, short* methodsMax, char*** methods, bool** allClasses |
|
420 |
); |
|
421 |
||
950 | 422 |
// Returns true if the string s is in the list of flags that have recently |
423 |
// been made obsolete. If we detect one of these flags on the command |
|
424 |
// line, instead of failing we print a warning message and ignore the |
|
425 |
// flag. This gives the user a release or so to stop using the flag. |
|
426 |
static bool is_newly_obsolete(const char* s, JDK_Version* buffer); |
|
1 | 427 |
|
428 |
static short CompileOnlyClassesNum; |
|
429 |
static short CompileOnlyClassesMax; |
|
430 |
static char** CompileOnlyClasses; |
|
431 |
static bool* CompileOnlyAllMethods; |
|
432 |
||
433 |
static short CompileOnlyMethodsNum; |
|
434 |
static short CompileOnlyMethodsMax; |
|
435 |
static char** CompileOnlyMethods; |
|
436 |
static bool* CompileOnlyAllClasses; |
|
437 |
||
438 |
static short InterpretOnlyClassesNum; |
|
439 |
static short InterpretOnlyClassesMax; |
|
440 |
static char** InterpretOnlyClasses; |
|
441 |
static bool* InterpretOnlyAllMethods; |
|
442 |
||
443 |
static bool CheckCompileOnly; |
|
444 |
||
445 |
static char* SharedArchivePath; |
|
446 |
||
447 |
public: |
|
28650
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28372
diff
changeset
|
448 |
// Scale compile thresholds |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28372
diff
changeset
|
449 |
// Returns threshold scaled with CompileThresholdScaling |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28372
diff
changeset
|
450 |
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
|
451 |
static intx scaled_compile_threshold(intx threshold) { |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28372
diff
changeset
|
452 |
return scaled_compile_threshold(threshold, CompileThresholdScaling); |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28372
diff
changeset
|
453 |
} |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28372
diff
changeset
|
454 |
// Returns freq_log scaled with CompileThresholdScaling |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28372
diff
changeset
|
455 |
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
|
456 |
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
|
457 |
return scaled_freq_log(freq_log, CompileThresholdScaling); |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28372
diff
changeset
|
458 |
} |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28372
diff
changeset
|
459 |
|
19986
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19732
diff
changeset
|
460 |
// Parses the arguments, first phase |
1 | 461 |
static jint parse(const JavaVMInitArgs* args); |
19986
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19732
diff
changeset
|
462 |
// Apply ergonomics |
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19732
diff
changeset
|
463 |
static jint apply_ergo(); |
14580
3e2316663327
7198334: UseNUMA modifies system parameters on non-NUMA system
brutisso
parents:
13963
diff
changeset
|
464 |
// 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
|
465 |
static jint adjust_after_os(); |
22555
ea32f6c51d08
8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents:
22551
diff
changeset
|
466 |
|
27892
06a143c836ad
8065305: Make it possible to extend the G1CollectorPolicy
jwilhelm
parents:
27148
diff
changeset
|
467 |
static void set_gc_specific_flags(); |
26836
b27ec66071c7
8057531: refactor gc argument processing code slightly
jcoomes
parents:
26824
diff
changeset
|
468 |
static inline bool gc_selected(); // whether a gc has been selected |
b27ec66071c7
8057531: refactor gc argument processing code slightly
jcoomes
parents:
26824
diff
changeset
|
469 |
static void select_gc_ergonomically(); |
b27ec66071c7
8057531: refactor gc argument processing code slightly
jcoomes
parents:
26824
diff
changeset
|
470 |
|
22555
ea32f6c51d08
8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents:
22551
diff
changeset
|
471 |
// Verifies that the given value will fit as a MinHeapFreeRatio. If not, an error |
ea32f6c51d08
8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents:
22551
diff
changeset
|
472 |
// message is returned in the provided buffer. |
ea32f6c51d08
8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents:
22551
diff
changeset
|
473 |
static bool verify_MinHeapFreeRatio(FormatBuffer<80>& err_msg, uintx min_heap_free_ratio); |
ea32f6c51d08
8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents:
22551
diff
changeset
|
474 |
|
ea32f6c51d08
8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents:
22551
diff
changeset
|
475 |
// Verifies that the given value will fit as a MaxHeapFreeRatio. If not, an error |
ea32f6c51d08
8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents:
22551
diff
changeset
|
476 |
// message is returned in the provided buffer. |
ea32f6c51d08
8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents:
22551
diff
changeset
|
477 |
static bool verify_MaxHeapFreeRatio(FormatBuffer<80>& err_msg, uintx max_heap_free_ratio); |
ea32f6c51d08
8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents:
22551
diff
changeset
|
478 |
|
183
ba55c7f3fd45
6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents:
1
diff
changeset
|
479 |
// Check for consistency in the selection of the garbage collector. |
29696
01571dfab5be
8073944: Simplify ArgumentsExt and remove unneeded functionallity
sjohanss
parents:
29076
diff
changeset
|
480 |
static bool check_gc_consistency(); // Check user-selected gc |
15950 | 481 |
static void check_deprecated_gc_flags(); |
22551 | 482 |
// Check consistency or otherwise of VM argument settings |
1 | 483 |
static bool check_vm_args_consistency(); |
6414
ef8d1e9052a8
6885308: The incorrect -XX:StackRedPages, -XX:StackShadowPages, -XX:StackYellowPages could cause VM crash
ptisnovs
parents:
5547
diff
changeset
|
484 |
// Check stack pages settings |
ef8d1e9052a8
6885308: The incorrect -XX:StackRedPages, -XX:StackShadowPages, -XX:StackYellowPages could cause VM crash
ptisnovs
parents:
5547
diff
changeset
|
485 |
static bool check_stack_pages(); |
1 | 486 |
// Used by os_solaris |
487 |
static bool process_settings_file(const char* file_name, bool should_exist, jboolean ignore_unrecognized); |
|
488 |
||
19986
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19732
diff
changeset
|
489 |
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
|
490 |
// 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
|
491 |
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
|
492 |
|
1 | 493 |
// return a char* array containing all options |
494 |
static char** jvm_flags_array() { return _jvm_flags_array; } |
|
495 |
static char** jvm_args_array() { return _jvm_args_array; } |
|
496 |
static int num_jvm_flags() { return _num_jvm_flags; } |
|
497 |
static int num_jvm_args() { return _num_jvm_args; } |
|
498 |
// return the arguments passed to the Java application |
|
499 |
static const char* java_command() { return _java_command; } |
|
500 |
||
501 |
// print jvm_flags, jvm_args and java_command |
|
502 |
static void print_on(outputStream* st); |
|
503 |
||
504 |
// convenient methods to obtain / print jvm_flags and jvm_args |
|
505 |
static const char* jvm_flags() { return build_resource_string(_jvm_flags_array, _num_jvm_flags); } |
|
506 |
static const char* jvm_args() { return build_resource_string(_jvm_args_array, _num_jvm_args); } |
|
507 |
static void print_jvm_flags_on(outputStream* st); |
|
508 |
static void print_jvm_args_on(outputStream* st); |
|
509 |
||
510 |
// -Dkey=value flags |
|
511 |
static SystemProperty* system_properties() { return _system_properties; } |
|
512 |
static const char* get_property(const char* key); |
|
513 |
||
514 |
// -Djava.vendor.url.bug |
|
515 |
static const char* java_vendor_url_bug() { return _java_vendor_url_bug; } |
|
516 |
||
517 |
// -Dsun.java.launcher |
|
518 |
static const char* sun_java_launcher() { return _sun_java_launcher; } |
|
519 |
// Was VM created by a Java launcher? |
|
520 |
static bool created_by_java_launcher(); |
|
22734
41757c1f3946
8027113: decouple the '-XXaltjvm=<path>' option from the gamma launcher
rdurbin
parents:
20288
diff
changeset
|
521 |
// -Dsun.java.launcher.is_altjvm |
41757c1f3946
8027113: decouple the '-XXaltjvm=<path>' option from the gamma launcher
rdurbin
parents:
20288
diff
changeset
|
522 |
static bool sun_java_launcher_is_altjvm(); |
1 | 523 |
// -Dsun.java.launcher.pid |
524 |
static int sun_java_launcher_pid() { return _sun_java_launcher_pid; } |
|
525 |
||
526 |
// -Xloggc:<file>, if not specified will be NULL |
|
527 |
static const char* gc_log_filename() { return _gc_log_filename; } |
|
528 |
||
18687
5a0543c157c9
7133260: AllocationProfiler uses space in metadata and doesn't seem to do anything useful.
jiangli
parents:
18090
diff
changeset
|
529 |
// -Xprof |
1 | 530 |
static bool has_profile() { return _has_profile; } |
531 |
||
22551 | 532 |
// -Xms |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29696
diff
changeset
|
533 |
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
|
534 |
static void set_min_heap_size(size_t v) { _min_heap_size = v; } |
1 | 535 |
|
26824
a04a1291103f
8055006: Store original value of Min/MaxHeapFreeRatio
jwilhelm
parents:
26585
diff
changeset
|
536 |
// Returns the original values of -XX:MinHeapFreeRatio and -XX:MaxHeapFreeRatio |
a04a1291103f
8055006: Store original value of Min/MaxHeapFreeRatio
jwilhelm
parents:
26585
diff
changeset
|
537 |
static uintx min_heap_free_ratio() { return _min_heap_free_ratio; } |
a04a1291103f
8055006: Store original value of Min/MaxHeapFreeRatio
jwilhelm
parents:
26585
diff
changeset
|
538 |
static uintx max_heap_free_ratio() { return _max_heap_free_ratio; } |
a04a1291103f
8055006: Store original value of Min/MaxHeapFreeRatio
jwilhelm
parents:
26585
diff
changeset
|
539 |
|
1 | 540 |
// -Xrun |
541 |
static AgentLibrary* libraries() { return _libraryList.first(); } |
|
542 |
static bool init_libraries_at_startup() { return !_libraryList.is_empty(); } |
|
543 |
static void convert_library_to_agent(AgentLibrary* lib) |
|
544 |
{ _libraryList.remove(lib); |
|
545 |
_agentList.add(lib); } |
|
546 |
||
547 |
// -agentlib -agentpath |
|
548 |
static AgentLibrary* agents() { return _agentList.first(); } |
|
549 |
static bool init_agents_at_startup() { return !_agentList.is_empty(); } |
|
550 |
||
551 |
// abort, exit, vfprintf hooks |
|
552 |
static abort_hook_t abort_hook() { return _abort_hook; } |
|
553 |
static exit_hook_t exit_hook() { return _exit_hook; } |
|
554 |
static vfprintf_hook_t vfprintf_hook() { return _vfprintf_hook; } |
|
555 |
||
556 |
static bool GetCheckCompileOnly () { return CheckCompileOnly; } |
|
557 |
||
558 |
static const char* GetSharedArchivePath() { return SharedArchivePath; } |
|
559 |
||
560 |
static bool CompileMethod(char* className, char* methodName) { |
|
561 |
return |
|
562 |
methodExists( |
|
563 |
className, methodName, |
|
564 |
CompileOnlyClassesNum, CompileOnlyClasses, CompileOnlyAllMethods, |
|
565 |
CompileOnlyMethodsNum, CompileOnlyMethods, CompileOnlyAllClasses |
|
566 |
); |
|
567 |
} |
|
568 |
||
569 |
// Java launcher properties |
|
570 |
static void process_sun_java_launcher_properties(JavaVMInitArgs* args); |
|
571 |
||
572 |
// System properties |
|
573 |
static void init_system_properties(); |
|
574 |
||
6961
a32b2fc66321
6988363: Rebrand vm vendor property settings (jdk7 only)
zgu
parents:
6453
diff
changeset
|
575 |
// Update/Initialize System properties after JDK version number is known |
a32b2fc66321
6988363: Rebrand vm vendor property settings (jdk7 only)
zgu
parents:
6453
diff
changeset
|
576 |
static void init_version_specific_system_properties(); |
a32b2fc66321
6988363: Rebrand vm vendor property settings (jdk7 only)
zgu
parents:
6453
diff
changeset
|
577 |
|
2358 | 578 |
// Property List manipulation |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
27926
diff
changeset
|
579 |
static void PropertyList_add(SystemProperty *element); |
1 | 580 |
static void PropertyList_add(SystemProperty** plist, SystemProperty *element); |
581 |
static void PropertyList_add(SystemProperty** plist, const char* k, char* v); |
|
2358 | 582 |
static void PropertyList_unique_add(SystemProperty** plist, const char* k, char* v) { |
583 |
PropertyList_unique_add(plist, k, v, false); |
|
584 |
} |
|
585 |
static void PropertyList_unique_add(SystemProperty** plist, const char* k, char* v, jboolean append); |
|
1 | 586 |
static const char* PropertyList_get_value(SystemProperty* plist, const char* key); |
587 |
static int PropertyList_count(SystemProperty* pl); |
|
588 |
static const char* PropertyList_get_key_at(SystemProperty* pl,int index); |
|
589 |
static char* PropertyList_get_value_at(SystemProperty* pl,int index); |
|
590 |
||
591 |
// Miscellaneous System property value getter and setters. |
|
592 |
static void set_dll_dir(char *value) { _sun_boot_library_path->set_value(value); } |
|
593 |
static void set_java_home(char *value) { _java_home->set_value(value); } |
|
594 |
static void set_library_path(char *value) { _java_library_path->set_value(value); } |
|
27562 | 595 |
static void set_ext_dirs(char *value) { _ext_dirs = os::strdup_check_oom(value); } |
1 | 596 |
static void set_sysclasspath(char *value) { _sun_boot_class_path->set_value(value); } |
597 |
static void append_sysclasspath(const char *value) { _sun_boot_class_path->append_value(value); } |
|
598 |
||
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25468
diff
changeset
|
599 |
static char* get_java_home() { return _java_home->value(); } |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25468
diff
changeset
|
600 |
static char* get_dll_dir() { return _sun_boot_library_path->value(); } |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25468
diff
changeset
|
601 |
static char* get_sysclasspath() { return _sun_boot_class_path->value(); } |
27562 | 602 |
static char* get_ext_dirs() { return _ext_dirs; } |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25468
diff
changeset
|
603 |
static char* get_appclasspath() { return _java_class_path->value(); } |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25468
diff
changeset
|
604 |
static void fix_appclasspath(); |
1 | 605 |
|
27562 | 606 |
|
1 | 607 |
// Operation modi |
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
|
608 |
static Mode mode() { return _mode; } |
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
|
609 |
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
|
610 |
|
1 | 611 |
|
612 |
// Utility: copies src into buf, replacing "%%" with "%" and "%p" with pid. |
|
613 |
static bool copy_expand_pid(const char* src, size_t srclen, char* buf, size_t buflen); |
|
614 |
}; |
|
7397 | 615 |
|
26836
b27ec66071c7
8057531: refactor gc argument processing code slightly
jcoomes
parents:
26824
diff
changeset
|
616 |
bool Arguments::gc_selected() { |
27898
813ad96387b3
8065972: Remove support for ParNew+SerialOld and DefNew+CMS
brutisso
parents:
27892
diff
changeset
|
617 |
return UseConcMarkSweepGC || UseG1GC || UseParallelGC || UseParallelOldGC || UseSerialGC; |
26836
b27ec66071c7
8057531: refactor gc argument processing code slightly
jcoomes
parents:
26824
diff
changeset
|
618 |
} |
26838
344fb68e970a
8057623: add an extension class for argument handling
jcoomes
parents:
26836
diff
changeset
|
619 |
|
28838
da47c3cc5c98
8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents:
28650
diff
changeset
|
620 |
// 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
|
621 |
// were explicitly requested on the command-line |
da47c3cc5c98
8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents:
28650
diff
changeset
|
622 |
#define UNSUPPORTED_OPTION(opt, description) \ |
da47c3cc5c98
8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents:
28650
diff
changeset
|
623 |
do { \ |
da47c3cc5c98
8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents:
28650
diff
changeset
|
624 |
if (opt) { \ |
da47c3cc5c98
8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents:
28650
diff
changeset
|
625 |
if (FLAG_IS_CMDLINE(opt)) { \ |
da47c3cc5c98
8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents:
28650
diff
changeset
|
626 |
warning(description " is disabled in this release."); \ |
da47c3cc5c98
8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents:
28650
diff
changeset
|
627 |
} \ |
da47c3cc5c98
8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents:
28650
diff
changeset
|
628 |
FLAG_SET_DEFAULT(opt, false); \ |
da47c3cc5c98
8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents:
28650
diff
changeset
|
629 |
} \ |
da47c3cc5c98
8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents:
28650
diff
changeset
|
630 |
} while(0) |
da47c3cc5c98
8067460: G1: TestResourceManagementFlagWithCommercialBuild.java failed on embedded platform
aharlap
parents:
28650
diff
changeset
|
631 |
|
7397 | 632 |
#endif // SHARE_VM_RUNTIME_ARGUMENTS_HPP |