annotate src/share/vm/runtime/arguments.hpp @ 13212:eb03a7335eb0

Use fixed instead of virtual register for target in far foreign call, since the register allocator does not support virtual registers to be used at call sites.
author Christian Wimmer <christian.wimmer@oracle.com>
date Mon, 02 Dec 2013 14:20:32 -0800
parents 4dba97fb1a6f
children d8041d695d19
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
7951
8b46b0196eb0 8000692: Remove old KERNEL code
zgu
parents: 7452
diff changeset
2 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1284
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1284
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1284
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1891
diff changeset
25 #ifndef SHARE_VM_RUNTIME_ARGUMENTS_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1891
diff changeset
26 #define SHARE_VM_RUNTIME_ARGUMENTS_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1891
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1891
diff changeset
28 #include "runtime/java.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1891
diff changeset
29 #include "runtime/perfData.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1891
diff changeset
30 #include "utilities/top.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1891
diff changeset
31
0
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // Arguments parses the command line and recognizes options
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // Invocation API hook typedefs (these should really be defined in jni.hpp)
a61af66fc99e Initial load
duke
parents:
diff changeset
35 extern "C" {
a61af66fc99e Initial load
duke
parents:
diff changeset
36 typedef void (JNICALL *abort_hook_t)(void);
a61af66fc99e Initial load
duke
parents:
diff changeset
37 typedef void (JNICALL *exit_hook_t)(jint code);
a61af66fc99e Initial load
duke
parents:
diff changeset
38 typedef jint (JNICALL *vfprintf_hook_t)(FILE *fp, const char *format, va_list args);
a61af66fc99e Initial load
duke
parents:
diff changeset
39 }
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // Forward declarations
a61af66fc99e Initial load
duke
parents:
diff changeset
42
a61af66fc99e Initial load
duke
parents:
diff changeset
43 class SysClassPath;
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45 // Element describing System and User (-Dkey=value flags) defined property.
a61af66fc99e Initial load
duke
parents:
diff changeset
46
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 2362
diff changeset
47 class SystemProperty: public CHeapObj<mtInternal> {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
48 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
49 char* _key;
a61af66fc99e Initial load
duke
parents:
diff changeset
50 char* _value;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 SystemProperty* _next;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 bool _writeable;
a61af66fc99e Initial load
duke
parents:
diff changeset
53 bool writeable() { return _writeable; }
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // Accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
57 const char* key() const { return _key; }
a61af66fc99e Initial load
duke
parents:
diff changeset
58 char* value() const { return _value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
59 SystemProperty* next() const { return _next; }
a61af66fc99e Initial load
duke
parents:
diff changeset
60 void set_next(SystemProperty* next) { _next = next; }
a61af66fc99e Initial load
duke
parents:
diff changeset
61 bool set_value(char *value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
62 if (writeable()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
63 if (_value != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
64 FreeHeap(_value);
a61af66fc99e Initial load
duke
parents:
diff changeset
65 }
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 2362
diff changeset
66 _value = AllocateHeap(strlen(value)+1, mtInternal);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
67 if (_value != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
68 strcpy(_value, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
69 }
a61af66fc99e Initial load
duke
parents:
diff changeset
70 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
71 }
a61af66fc99e Initial load
duke
parents:
diff changeset
72 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
73 }
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 void append_value(const char *value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
76 char *sp;
a61af66fc99e Initial load
duke
parents:
diff changeset
77 size_t len = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
78 if (value != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
79 len = strlen(value);
a61af66fc99e Initial load
duke
parents:
diff changeset
80 if (_value != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
81 len += strlen(_value);
a61af66fc99e Initial load
duke
parents:
diff changeset
82 }
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 2362
diff changeset
83 sp = AllocateHeap(len+2, mtInternal);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
84 if (sp != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
85 if (_value != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
86 strcpy(sp, _value);
a61af66fc99e Initial load
duke
parents:
diff changeset
87 strcat(sp, os::path_separator());
a61af66fc99e Initial load
duke
parents:
diff changeset
88 strcat(sp, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
89 FreeHeap(_value);
a61af66fc99e Initial load
duke
parents:
diff changeset
90 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
91 strcpy(sp, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
92 }
a61af66fc99e Initial load
duke
parents:
diff changeset
93 _value = sp;
a61af66fc99e Initial load
duke
parents:
diff changeset
94 }
a61af66fc99e Initial load
duke
parents:
diff changeset
95 }
a61af66fc99e Initial load
duke
parents:
diff changeset
96 }
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98 // Constructor
a61af66fc99e Initial load
duke
parents:
diff changeset
99 SystemProperty(const char* key, const char* value, bool writeable) {
a61af66fc99e Initial load
duke
parents:
diff changeset
100 if (key == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
101 _key = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
102 } else {
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 2362
diff changeset
103 _key = AllocateHeap(strlen(key)+1, mtInternal);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
104 strcpy(_key, key);
a61af66fc99e Initial load
duke
parents:
diff changeset
105 }
a61af66fc99e Initial load
duke
parents:
diff changeset
106 if (value == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
107 _value = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
108 } else {
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 2362
diff changeset
109 _value = AllocateHeap(strlen(value)+1, mtInternal);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
110 strcpy(_value, value);
a61af66fc99e Initial load
duke
parents:
diff changeset
111 }
a61af66fc99e Initial load
duke
parents:
diff changeset
112 _next = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
113 _writeable = writeable;
a61af66fc99e Initial load
duke
parents:
diff changeset
114 }
a61af66fc99e Initial load
duke
parents:
diff changeset
115 };
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117
a61af66fc99e Initial load
duke
parents:
diff changeset
118 // For use by -agentlib, -agentpath and -Xrun
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 2362
diff changeset
119 class AgentLibrary : public CHeapObj<mtInternal> {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
120 friend class AgentLibraryList;
12117
f92b82d454fa 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 12056
diff changeset
121 public:
f92b82d454fa 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 12056
diff changeset
122 // Is this library valid or not. Don't rely on os_lib == NULL as statically
f92b82d454fa 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 12056
diff changeset
123 // linked lib could have handle of RTLD_DEFAULT which == 0 on some platforms
f92b82d454fa 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 12056
diff changeset
124 enum AgentState {
f92b82d454fa 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 12056
diff changeset
125 agent_invalid = 0,
f92b82d454fa 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 12056
diff changeset
126 agent_valid = 1
f92b82d454fa 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 12056
diff changeset
127 };
f92b82d454fa 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 12056
diff changeset
128
0
a61af66fc99e Initial load
duke
parents:
diff changeset
129 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
130 char* _name;
a61af66fc99e Initial load
duke
parents:
diff changeset
131 char* _options;
a61af66fc99e Initial load
duke
parents:
diff changeset
132 void* _os_lib;
a61af66fc99e Initial load
duke
parents:
diff changeset
133 bool _is_absolute_path;
12117
f92b82d454fa 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 12056
diff changeset
134 bool _is_static_lib;
f92b82d454fa 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 12056
diff changeset
135 AgentState _state;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
136 AgentLibrary* _next;
a61af66fc99e Initial load
duke
parents:
diff changeset
137
a61af66fc99e Initial load
duke
parents:
diff changeset
138 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
139 // Accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
140 const char* name() const { return _name; }
a61af66fc99e Initial load
duke
parents:
diff changeset
141 char* options() const { return _options; }
a61af66fc99e Initial load
duke
parents:
diff changeset
142 bool is_absolute_path() const { return _is_absolute_path; }
a61af66fc99e Initial load
duke
parents:
diff changeset
143 void* os_lib() const { return _os_lib; }
a61af66fc99e Initial load
duke
parents:
diff changeset
144 void set_os_lib(void* os_lib) { _os_lib = os_lib; }
a61af66fc99e Initial load
duke
parents:
diff changeset
145 AgentLibrary* next() const { return _next; }
12117
f92b82d454fa 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 12056
diff changeset
146 bool is_static_lib() const { return _is_static_lib; }
12220
8e94527f601e 8024007: Misc. cleanup of static agent code
bpittore
parents: 12182
diff changeset
147 void set_static_lib(bool is_static_lib) { _is_static_lib = is_static_lib; }
12117
f92b82d454fa 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 12056
diff changeset
148 bool valid() { return (_state == agent_valid); }
f92b82d454fa 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 12056
diff changeset
149 void set_valid() { _state = agent_valid; }
f92b82d454fa 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 12056
diff changeset
150 void set_invalid() { _state = agent_invalid; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
151
a61af66fc99e Initial load
duke
parents:
diff changeset
152 // Constructor
a61af66fc99e Initial load
duke
parents:
diff changeset
153 AgentLibrary(const char* name, const char* options, bool is_absolute_path, void* os_lib) {
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 2362
diff changeset
154 _name = AllocateHeap(strlen(name)+1, mtInternal);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
155 strcpy(_name, name);
a61af66fc99e Initial load
duke
parents:
diff changeset
156 if (options == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
157 _options = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
158 } else {
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 2362
diff changeset
159 _options = AllocateHeap(strlen(options)+1, mtInternal);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
160 strcpy(_options, options);
a61af66fc99e Initial load
duke
parents:
diff changeset
161 }
a61af66fc99e Initial load
duke
parents:
diff changeset
162 _is_absolute_path = is_absolute_path;
a61af66fc99e Initial load
duke
parents:
diff changeset
163 _os_lib = os_lib;
a61af66fc99e Initial load
duke
parents:
diff changeset
164 _next = NULL;
12117
f92b82d454fa 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 12056
diff changeset
165 _state = agent_invalid;
f92b82d454fa 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 12056
diff changeset
166 _is_static_lib = false;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
167 }
a61af66fc99e Initial load
duke
parents:
diff changeset
168 };
a61af66fc99e Initial load
duke
parents:
diff changeset
169
a61af66fc99e Initial load
duke
parents:
diff changeset
170 // maintain an order of entry list of AgentLibrary
a61af66fc99e Initial load
duke
parents:
diff changeset
171 class AgentLibraryList VALUE_OBJ_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
172 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
173 AgentLibrary* _first;
a61af66fc99e Initial load
duke
parents:
diff changeset
174 AgentLibrary* _last;
a61af66fc99e Initial load
duke
parents:
diff changeset
175 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
176 bool is_empty() const { return _first == NULL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
177 AgentLibrary* first() const { return _first; }
a61af66fc99e Initial load
duke
parents:
diff changeset
178
a61af66fc99e Initial load
duke
parents:
diff changeset
179 // add to the end of the list
a61af66fc99e Initial load
duke
parents:
diff changeset
180 void add(AgentLibrary* lib) {
a61af66fc99e Initial load
duke
parents:
diff changeset
181 if (is_empty()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
182 _first = _last = lib;
a61af66fc99e Initial load
duke
parents:
diff changeset
183 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
184 _last->_next = lib;
a61af66fc99e Initial load
duke
parents:
diff changeset
185 _last = lib;
a61af66fc99e Initial load
duke
parents:
diff changeset
186 }
a61af66fc99e Initial load
duke
parents:
diff changeset
187 lib->_next = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
188 }
a61af66fc99e Initial load
duke
parents:
diff changeset
189
a61af66fc99e Initial load
duke
parents:
diff changeset
190 // search for and remove a library known to be in the list
a61af66fc99e Initial load
duke
parents:
diff changeset
191 void remove(AgentLibrary* lib) {
a61af66fc99e Initial load
duke
parents:
diff changeset
192 AgentLibrary* curr;
a61af66fc99e Initial load
duke
parents:
diff changeset
193 AgentLibrary* prev = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
194 for (curr = first(); curr != NULL; prev = curr, curr = curr->next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
195 if (curr == lib) {
a61af66fc99e Initial load
duke
parents:
diff changeset
196 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
197 }
a61af66fc99e Initial load
duke
parents:
diff changeset
198 }
a61af66fc99e Initial load
duke
parents:
diff changeset
199 assert(curr != NULL, "always should be found");
a61af66fc99e Initial load
duke
parents:
diff changeset
200
a61af66fc99e Initial load
duke
parents:
diff changeset
201 if (curr != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
202 // it was found, by-pass this library
a61af66fc99e Initial load
duke
parents:
diff changeset
203 if (prev == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
204 _first = curr->_next;
a61af66fc99e Initial load
duke
parents:
diff changeset
205 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
206 prev->_next = curr->_next;
a61af66fc99e Initial load
duke
parents:
diff changeset
207 }
a61af66fc99e Initial load
duke
parents:
diff changeset
208 if (curr == _last) {
a61af66fc99e Initial load
duke
parents:
diff changeset
209 _last = prev;
a61af66fc99e Initial load
duke
parents:
diff changeset
210 }
a61af66fc99e Initial load
duke
parents:
diff changeset
211 curr->_next = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
212 }
a61af66fc99e Initial load
duke
parents:
diff changeset
213 }
a61af66fc99e Initial load
duke
parents:
diff changeset
214
a61af66fc99e Initial load
duke
parents:
diff changeset
215 AgentLibraryList() {
a61af66fc99e Initial load
duke
parents:
diff changeset
216 _first = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
217 _last = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
218 }
a61af66fc99e Initial load
duke
parents:
diff changeset
219 };
a61af66fc99e Initial load
duke
parents:
diff changeset
220
a61af66fc99e Initial load
duke
parents:
diff changeset
221
a61af66fc99e Initial load
duke
parents:
diff changeset
222 class Arguments : AllStatic {
a61af66fc99e Initial load
duke
parents:
diff changeset
223 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
224 friend class JvmtiExport;
a61af66fc99e Initial load
duke
parents:
diff changeset
225 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
226 // Operation modi
a61af66fc99e Initial load
duke
parents:
diff changeset
227 enum Mode {
a61af66fc99e Initial load
duke
parents:
diff changeset
228 _int, // corresponds to -Xint
a61af66fc99e Initial load
duke
parents:
diff changeset
229 _mixed, // corresponds to -Xmixed
a61af66fc99e Initial load
duke
parents:
diff changeset
230 _comp // corresponds to -Xcomp
a61af66fc99e Initial load
duke
parents:
diff changeset
231 };
a61af66fc99e Initial load
duke
parents:
diff changeset
232
a61af66fc99e Initial load
duke
parents:
diff changeset
233 enum ArgsRange {
a61af66fc99e Initial load
duke
parents:
diff changeset
234 arg_unreadable = -3,
a61af66fc99e Initial load
duke
parents:
diff changeset
235 arg_too_small = -2,
a61af66fc99e Initial load
duke
parents:
diff changeset
236 arg_too_big = -1,
a61af66fc99e Initial load
duke
parents:
diff changeset
237 arg_in_range = 0
a61af66fc99e Initial load
duke
parents:
diff changeset
238 };
a61af66fc99e Initial load
duke
parents:
diff changeset
239
a61af66fc99e Initial load
duke
parents:
diff changeset
240 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
241
a61af66fc99e Initial load
duke
parents:
diff changeset
242 // an array containing all flags specified in the .hotspotrc file
a61af66fc99e Initial load
duke
parents:
diff changeset
243 static char** _jvm_flags_array;
a61af66fc99e Initial load
duke
parents:
diff changeset
244 static int _num_jvm_flags;
a61af66fc99e Initial load
duke
parents:
diff changeset
245 // an array containing all jvm arguments specified in the command line
a61af66fc99e Initial load
duke
parents:
diff changeset
246 static char** _jvm_args_array;
a61af66fc99e Initial load
duke
parents:
diff changeset
247 static int _num_jvm_args;
4657
d4e039a3e083 Print java.exe when execuing "mx vm"
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4559
diff changeset
248 #ifdef GRAAL
7125
1baf7f1e3f23 decoupled C++ Graal runtime from C1
Doug Simon <doug.simon@oracle.com>
parents: 6948
diff changeset
249 // an array containing all Graal arguments specified in the command line
2891
75a99b4f1c98 Rebranded C++ part from C1X to Graal.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents: 2491
diff changeset
250 static char** _graal_args_array;
75a99b4f1c98 Rebranded C++ part from C1X to Graal.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents: 2491
diff changeset
251 static int _num_graal_args;
4657
d4e039a3e083 Print java.exe when execuing "mx vm"
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4559
diff changeset
252 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
253 // string containing all java command (class/jarfile name and app args)
a61af66fc99e Initial load
duke
parents:
diff changeset
254 static char* _java_command;
a61af66fc99e Initial load
duke
parents:
diff changeset
255
a61af66fc99e Initial load
duke
parents:
diff changeset
256 // Property list
a61af66fc99e Initial load
duke
parents:
diff changeset
257 static SystemProperty* _system_properties;
a61af66fc99e Initial load
duke
parents:
diff changeset
258
a61af66fc99e Initial load
duke
parents:
diff changeset
259 // Quick accessor to System properties in the list:
a61af66fc99e Initial load
duke
parents:
diff changeset
260 static SystemProperty *_java_ext_dirs;
a61af66fc99e Initial load
duke
parents:
diff changeset
261 static SystemProperty *_java_endorsed_dirs;
a61af66fc99e Initial load
duke
parents:
diff changeset
262 static SystemProperty *_sun_boot_library_path;
a61af66fc99e Initial load
duke
parents:
diff changeset
263 static SystemProperty *_java_library_path;
a61af66fc99e Initial load
duke
parents:
diff changeset
264 static SystemProperty *_java_home;
a61af66fc99e Initial load
duke
parents:
diff changeset
265 static SystemProperty *_java_class_path;
a61af66fc99e Initial load
duke
parents:
diff changeset
266 static SystemProperty *_sun_boot_class_path;
12490
4dba97fb1a6f available GPUs are exposed to Graal only by the graal.gpu.isalist system property which is set up during command line argument parsing
Doug Simon <doug.simon@oracle.com>
parents: 12355
diff changeset
267 #ifdef GRAAL
4dba97fb1a6f available GPUs are exposed to Graal only by the graal.gpu.isalist system property which is set up during command line argument parsing
Doug Simon <doug.simon@oracle.com>
parents: 12355
diff changeset
268 static SystemProperty *_graal_gpu_isalist;
4dba97fb1a6f available GPUs are exposed to Graal only by the graal.gpu.isalist system property which is set up during command line argument parsing
Doug Simon <doug.simon@oracle.com>
parents: 12355
diff changeset
269 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
270
a61af66fc99e Initial load
duke
parents:
diff changeset
271 // Meta-index for knowing what packages are in the boot class path
a61af66fc99e Initial load
duke
parents:
diff changeset
272 static char* _meta_index_path;
a61af66fc99e Initial load
duke
parents:
diff changeset
273 static char* _meta_index_dir;
a61af66fc99e Initial load
duke
parents:
diff changeset
274
a61af66fc99e Initial load
duke
parents:
diff changeset
275 // java.vendor.url.bug, bug reporting URL for fatal errors.
a61af66fc99e Initial load
duke
parents:
diff changeset
276 static const char* _java_vendor_url_bug;
a61af66fc99e Initial load
duke
parents:
diff changeset
277
a61af66fc99e Initial load
duke
parents:
diff changeset
278 // sun.java.launcher, private property to provide information about
a61af66fc99e Initial load
duke
parents:
diff changeset
279 // java/gamma launcher
a61af66fc99e Initial load
duke
parents:
diff changeset
280 static const char* _sun_java_launcher;
a61af66fc99e Initial load
duke
parents:
diff changeset
281
a61af66fc99e Initial load
duke
parents:
diff changeset
282 // sun.java.launcher.pid, private property
a61af66fc99e Initial load
duke
parents:
diff changeset
283 static int _sun_java_launcher_pid;
a61af66fc99e Initial load
duke
parents:
diff changeset
284
2302
da091bb67459 7022037: Pause when exiting if debugger is attached on windows
sla
parents: 1972
diff changeset
285 // was this VM created by the gamma launcher
da091bb67459 7022037: Pause when exiting if debugger is attached on windows
sla
parents: 1972
diff changeset
286 static bool _created_by_gamma_launcher;
da091bb67459 7022037: Pause when exiting if debugger is attached on windows
sla
parents: 1972
diff changeset
287
0
a61af66fc99e Initial load
duke
parents:
diff changeset
288 // Option flags
a61af66fc99e Initial load
duke
parents:
diff changeset
289 static bool _has_profile;
a61af66fc99e Initial load
duke
parents:
diff changeset
290 static const char* _gc_log_filename;
12233
40136aa2cdb1 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 12182
diff changeset
291 // Value of the conservative maximum heap alignment needed
40136aa2cdb1 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 12182
diff changeset
292 static size_t _conservative_max_heap_alignment;
40136aa2cdb1 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 12182
diff changeset
293
0
a61af66fc99e Initial load
duke
parents:
diff changeset
294 static uintx _min_heap_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
295
a61af66fc99e Initial load
duke
parents:
diff changeset
296 // -Xrun arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
297 static AgentLibraryList _libraryList;
a61af66fc99e Initial load
duke
parents:
diff changeset
298 static void add_init_library(const char* name, char* options)
a61af66fc99e Initial load
duke
parents:
diff changeset
299 { _libraryList.add(new AgentLibrary(name, options, false, NULL)); }
a61af66fc99e Initial load
duke
parents:
diff changeset
300
a61af66fc99e Initial load
duke
parents:
diff changeset
301 // -agentlib and -agentpath arguments
a61af66fc99e Initial load
duke
parents:
diff changeset
302 static AgentLibraryList _agentList;
a61af66fc99e Initial load
duke
parents:
diff changeset
303 static void add_init_agent(const char* name, char* options, bool absolute_path)
a61af66fc99e Initial load
duke
parents:
diff changeset
304 { _agentList.add(new AgentLibrary(name, options, absolute_path, NULL)); }
a61af66fc99e Initial load
duke
parents:
diff changeset
305
a61af66fc99e Initial load
duke
parents:
diff changeset
306 // Late-binding agents not started via arguments
12117
f92b82d454fa 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 12056
diff changeset
307 static void add_loaded_agent(AgentLibrary *agentLib)
f92b82d454fa 8014135: The JVMTI specification does not conform to recent changes in JNI specification
bpittore
parents: 12056
diff changeset
308 { _agentList.add(agentLib); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
309 static void add_loaded_agent(const char* name, char* options, bool absolute_path, void* os_lib)
a61af66fc99e Initial load
duke
parents:
diff changeset
310 { _agentList.add(new AgentLibrary(name, options, absolute_path, os_lib)); }
a61af66fc99e Initial load
duke
parents:
diff changeset
311
a61af66fc99e Initial load
duke
parents:
diff changeset
312 // Operation modi
a61af66fc99e Initial load
duke
parents:
diff changeset
313 static Mode _mode;
a61af66fc99e Initial load
duke
parents:
diff changeset
314 static void set_mode_flags(Mode mode);
a61af66fc99e Initial load
duke
parents:
diff changeset
315 static bool _java_compiler;
a61af66fc99e Initial load
duke
parents:
diff changeset
316 static void set_java_compiler(bool arg) { _java_compiler = arg; }
a61af66fc99e Initial load
duke
parents:
diff changeset
317 static bool java_compiler() { return _java_compiler; }
a61af66fc99e Initial load
duke
parents:
diff changeset
318
a61af66fc99e Initial load
duke
parents:
diff changeset
319 // -Xdebug flag
a61af66fc99e Initial load
duke
parents:
diff changeset
320 static bool _xdebug_mode;
a61af66fc99e Initial load
duke
parents:
diff changeset
321 static void set_xdebug_mode(bool arg) { _xdebug_mode = arg; }
a61af66fc99e Initial load
duke
parents:
diff changeset
322 static bool xdebug_mode() { return _xdebug_mode; }
a61af66fc99e Initial load
duke
parents:
diff changeset
323
a61af66fc99e Initial load
duke
parents:
diff changeset
324 // Used to save default settings
a61af66fc99e Initial load
duke
parents:
diff changeset
325 static bool _AlwaysCompileLoopMethods;
a61af66fc99e Initial load
duke
parents:
diff changeset
326 static bool _UseOnStackReplacement;
a61af66fc99e Initial load
duke
parents:
diff changeset
327 static bool _BackgroundCompilation;
a61af66fc99e Initial load
duke
parents:
diff changeset
328 static bool _ClipInlining;
a61af66fc99e Initial load
duke
parents:
diff changeset
329 static bool _CIDynamicCompilePriority;
a61af66fc99e Initial load
duke
parents:
diff changeset
330
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1744
diff changeset
331 // Tiered
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1744
diff changeset
332 static void set_tiered_flags();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
333 // CMS/ParNew garbage collectors
a61af66fc99e Initial load
duke
parents:
diff changeset
334 static void set_parnew_gc_flags();
a61af66fc99e Initial load
duke
parents:
diff changeset
335 static void set_cms_and_parnew_gc_flags();
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 10
diff changeset
336 // UseParallel[Old]GC
0
a61af66fc99e Initial load
duke
parents:
diff changeset
337 static void set_parallel_gc_flags();
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 10
diff changeset
338 // Garbage-First (UseG1GC)
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 10
diff changeset
339 static void set_g1_gc_flags();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
340 // GC ergonomics
12233
40136aa2cdb1 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 12182
diff changeset
341 static void set_conservative_max_heap_alignment();
8741
eac371996b44 8001049: VM crashes when running with large -Xms and not specifying ObjectAlignmentInBytes
brutisso
parents: 8734
diff changeset
342 static void set_use_compressed_oops();
12056
740e263c80c6 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 11096
diff changeset
343 static void set_use_compressed_klass_ptrs();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
344 static void set_ergonomics_flags();
2362
a2c2eac1ca62 7018056: large pages not always enabled by default
jcoomes
parents: 2302
diff changeset
345 static void set_shared_spaces_flags();
8854
754c24457b20 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 8741
diff changeset
346 // limits the given memory size by the maximum amount of memory this process is
754c24457b20 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 8741
diff changeset
347 // currently allowed to allocate or reserve.
754c24457b20 7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents: 8741
diff changeset
348 static julong limit_by_allocatable_memory(julong size);
1064
473cce303f13 6887571: Increase default heap config sizes
phh
parents: 691
diff changeset
349 // Setup heap size
473cce303f13 6887571: Increase default heap config sizes
phh
parents: 691
diff changeset
350 static void set_heap_size();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
351 // Based on automatic selection criteria, should the
a61af66fc99e Initial load
duke
parents:
diff changeset
352 // low pause collector be used.
a61af66fc99e Initial load
duke
parents:
diff changeset
353 static bool should_auto_select_low_pause_collector();
a61af66fc99e Initial load
duke
parents:
diff changeset
354
a61af66fc99e Initial load
duke
parents:
diff changeset
355 // Bytecode rewriting
a61af66fc99e Initial load
duke
parents:
diff changeset
356 static void set_bytecode_flags();
a61af66fc99e Initial load
duke
parents:
diff changeset
357
a61af66fc99e Initial load
duke
parents:
diff changeset
358 // Invocation API hooks
a61af66fc99e Initial load
duke
parents:
diff changeset
359 static abort_hook_t _abort_hook;
a61af66fc99e Initial load
duke
parents:
diff changeset
360 static exit_hook_t _exit_hook;
a61af66fc99e Initial load
duke
parents:
diff changeset
361 static vfprintf_hook_t _vfprintf_hook;
a61af66fc99e Initial load
duke
parents:
diff changeset
362
a61af66fc99e Initial load
duke
parents:
diff changeset
363 // System properties
a61af66fc99e Initial load
duke
parents:
diff changeset
364 static bool add_property(const char* prop);
a61af66fc99e Initial load
duke
parents:
diff changeset
365
a61af66fc99e Initial load
duke
parents:
diff changeset
366 // Aggressive optimization flags.
a61af66fc99e Initial load
duke
parents:
diff changeset
367 static void set_aggressive_opts_flags();
a61af66fc99e Initial load
duke
parents:
diff changeset
368
a61af66fc99e Initial load
duke
parents:
diff changeset
369 // Argument parsing
a61af66fc99e Initial load
duke
parents:
diff changeset
370 static void do_pd_flag_adjustments();
12322
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12253
diff changeset
371 static bool parse_argument(const char* arg, Flag::Flags origin);
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12253
diff changeset
372 static bool process_argument(const char* arg, jboolean ignore_unrecognized, Flag::Flags origin);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
373 static void process_java_launcher_argument(const char*, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
374 static void process_java_compiler_argument(char* arg);
a61af66fc99e Initial load
duke
parents:
diff changeset
375 static jint parse_options_environment_variable(const char* name, SysClassPath* scp_p, bool* scp_assembly_required_p);
a61af66fc99e Initial load
duke
parents:
diff changeset
376 static jint parse_java_tool_options_environment_variable(SysClassPath* scp_p, bool* scp_assembly_required_p);
a61af66fc99e Initial load
duke
parents:
diff changeset
377 static jint parse_java_options_environment_variable(SysClassPath* scp_p, bool* scp_assembly_required_p);
a61af66fc99e Initial load
duke
parents:
diff changeset
378 static jint parse_vm_init_args(const JavaVMInitArgs* args);
12322
72b7e96c1922 8024545: make develop and notproduct flag values available in product builds
twisti
parents: 12253
diff changeset
379 static jint parse_each_vm_init_arg(const JavaVMInitArgs* args, SysClassPath* scp_p, bool* scp_assembly_required_p, Flag::Flags origin);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
380 static jint finalize_vm_init_args(SysClassPath* scp_p, bool scp_assembly_required);
a61af66fc99e Initial load
duke
parents:
diff changeset
381 static bool is_bad_option(const JavaVMOption* option, jboolean ignore,
a61af66fc99e Initial load
duke
parents:
diff changeset
382 const char* option_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
383 static bool is_bad_option(const JavaVMOption* option, jboolean ignore) {
a61af66fc99e Initial load
duke
parents:
diff changeset
384 return is_bad_option(option, ignore, NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
385 }
1244
745c853ee57f 6885297: java -XX:RefDiscoveryPolicy=2 or -XX:TLABWasteTargetPercent=0 cause VM crash
johnc
parents: 1064
diff changeset
386 static bool verify_interval(uintx val, uintx min,
745c853ee57f 6885297: java -XX:RefDiscoveryPolicy=2 or -XX:TLABWasteTargetPercent=0 cause VM crash
johnc
parents: 1064
diff changeset
387 uintx max, const char* name);
1744
f8c5d1bdaad4 6885308: The incorrect -XX:StackRedPages, -XX:StackShadowPages, -XX:StackYellowPages could cause VM crash
ptisnovs
parents: 1552
diff changeset
388 static bool verify_min_value(intx val, intx min, const char* name);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
389 static bool verify_percentage(uintx value, const char* name);
a61af66fc99e Initial load
duke
parents:
diff changeset
390 static void describe_range_error(ArgsRange errcode);
489
2494ab195856 6653214: MemoryPoolMXBean.setUsageThreshold() does not support large heap sizes.
swamyv
parents: 356
diff changeset
391 static ArgsRange check_memory_size(julong size, julong min_size);
2494ab195856 6653214: MemoryPoolMXBean.setUsageThreshold() does not support large heap sizes.
swamyv
parents: 356
diff changeset
392 static ArgsRange parse_memory_size(const char* s, julong* long_arg,
2494ab195856 6653214: MemoryPoolMXBean.setUsageThreshold() does not support large heap sizes.
swamyv
parents: 356
diff changeset
393 julong min_size);
1284
5f1f51edaff6 6928081: G1: rename parameters common with CMS
jmasa
parents: 1244
diff changeset
394 // Parse a string for a unsigned integer. Returns true if value
5f1f51edaff6 6928081: G1: rename parameters common with CMS
jmasa
parents: 1244
diff changeset
395 // is an unsigned integer greater than or equal to the minimum
5f1f51edaff6 6928081: G1: rename parameters common with CMS
jmasa
parents: 1244
diff changeset
396 // parameter passed and returns the value in uintx_arg. Returns
5f1f51edaff6 6928081: G1: rename parameters common with CMS
jmasa
parents: 1244
diff changeset
397 // false otherwise, with uintx_arg undefined.
5f1f51edaff6 6928081: G1: rename parameters common with CMS
jmasa
parents: 1244
diff changeset
398 static bool parse_uintx(const char* value, uintx* uintx_arg,
5f1f51edaff6 6928081: G1: rename parameters common with CMS
jmasa
parents: 1244
diff changeset
399 uintx min_size);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
400
a61af66fc99e Initial load
duke
parents:
diff changeset
401 // methods to build strings from individual args
a61af66fc99e Initial load
duke
parents:
diff changeset
402 static void build_jvm_args(const char* arg);
a61af66fc99e Initial load
duke
parents:
diff changeset
403 static void build_jvm_flags(const char* arg);
4559
723df37192d6 Make it possible again to build a real client libjvm, drop the UseGraal flag.
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 3546
diff changeset
404 #ifdef GRAAL
2891
75a99b4f1c98 Rebranded C++ part from C1X to Graal.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents: 2491
diff changeset
405 static void add_graal_arg(const char* arg);
4559
723df37192d6 Make it possible again to build a real client libjvm, drop the UseGraal flag.
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 3546
diff changeset
406 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
407 static void add_string(char*** bldarray, int* count, const char* arg);
a61af66fc99e Initial load
duke
parents:
diff changeset
408 static const char* build_resource_string(char** args, int count);
a61af66fc99e Initial load
duke
parents:
diff changeset
409
a61af66fc99e Initial load
duke
parents:
diff changeset
410 static bool methodExists(
a61af66fc99e Initial load
duke
parents:
diff changeset
411 char* className, char* methodName,
a61af66fc99e Initial load
duke
parents:
diff changeset
412 int classesNum, char** classes, bool* allMethods,
a61af66fc99e Initial load
duke
parents:
diff changeset
413 int methodsNum, char** methods, bool* allClasses
a61af66fc99e Initial load
duke
parents:
diff changeset
414 );
a61af66fc99e Initial load
duke
parents:
diff changeset
415
a61af66fc99e Initial load
duke
parents:
diff changeset
416 static void parseOnlyLine(
a61af66fc99e Initial load
duke
parents:
diff changeset
417 const char* line,
a61af66fc99e Initial load
duke
parents:
diff changeset
418 short* classesNum, short* classesMax, char*** classes, bool** allMethods,
a61af66fc99e Initial load
duke
parents:
diff changeset
419 short* methodsNum, short* methodsMax, char*** methods, bool** allClasses
a61af66fc99e Initial load
duke
parents:
diff changeset
420 );
a61af66fc99e Initial load
duke
parents:
diff changeset
421
242
d95b224e9f17 6721093: -XX:AppendRatio=N not supported
kamg
parents: 196
diff changeset
422 // Returns true if the string s is in the list of flags that have recently
d95b224e9f17 6721093: -XX:AppendRatio=N not supported
kamg
parents: 196
diff changeset
423 // been made obsolete. If we detect one of these flags on the command
d95b224e9f17 6721093: -XX:AppendRatio=N not supported
kamg
parents: 196
diff changeset
424 // line, instead of failing we print a warning message and ignore the
d95b224e9f17 6721093: -XX:AppendRatio=N not supported
kamg
parents: 196
diff changeset
425 // flag. This gives the user a release or so to stop using the flag.
d95b224e9f17 6721093: -XX:AppendRatio=N not supported
kamg
parents: 196
diff changeset
426 static bool is_newly_obsolete(const char* s, JDK_Version* buffer);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
427
a61af66fc99e Initial load
duke
parents:
diff changeset
428 static short CompileOnlyClassesNum;
a61af66fc99e Initial load
duke
parents:
diff changeset
429 static short CompileOnlyClassesMax;
a61af66fc99e Initial load
duke
parents:
diff changeset
430 static char** CompileOnlyClasses;
a61af66fc99e Initial load
duke
parents:
diff changeset
431 static bool* CompileOnlyAllMethods;
a61af66fc99e Initial load
duke
parents:
diff changeset
432
a61af66fc99e Initial load
duke
parents:
diff changeset
433 static short CompileOnlyMethodsNum;
a61af66fc99e Initial load
duke
parents:
diff changeset
434 static short CompileOnlyMethodsMax;
a61af66fc99e Initial load
duke
parents:
diff changeset
435 static char** CompileOnlyMethods;
a61af66fc99e Initial load
duke
parents:
diff changeset
436 static bool* CompileOnlyAllClasses;
a61af66fc99e Initial load
duke
parents:
diff changeset
437
a61af66fc99e Initial load
duke
parents:
diff changeset
438 static short InterpretOnlyClassesNum;
a61af66fc99e Initial load
duke
parents:
diff changeset
439 static short InterpretOnlyClassesMax;
a61af66fc99e Initial load
duke
parents:
diff changeset
440 static char** InterpretOnlyClasses;
a61af66fc99e Initial load
duke
parents:
diff changeset
441 static bool* InterpretOnlyAllMethods;
a61af66fc99e Initial load
duke
parents:
diff changeset
442
a61af66fc99e Initial load
duke
parents:
diff changeset
443 static bool CheckCompileOnly;
a61af66fc99e Initial load
duke
parents:
diff changeset
444
a61af66fc99e Initial load
duke
parents:
diff changeset
445 static char* SharedArchivePath;
a61af66fc99e Initial load
duke
parents:
diff changeset
446
a61af66fc99e Initial load
duke
parents:
diff changeset
447 public:
12233
40136aa2cdb1 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 12182
diff changeset
448 // Parses the arguments, first phase
0
a61af66fc99e Initial load
duke
parents:
diff changeset
449 static jint parse(const JavaVMInitArgs* args);
12233
40136aa2cdb1 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 12182
diff changeset
450 // Apply ergonomics
40136aa2cdb1 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 12182
diff changeset
451 static jint apply_ergo();
7177
53715fb1597d 7198334: UseNUMA modifies system parameters on non-NUMA system
brutisso
parents: 6842
diff changeset
452 // Adjusts the arguments after the OS have adjusted the arguments
53715fb1597d 7198334: UseNUMA modifies system parameters on non-NUMA system
brutisso
parents: 6842
diff changeset
453 static jint adjust_after_os();
10
28372612af5e 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 0
diff changeset
454 // Check for consistency in the selection of the garbage collector.
28372612af5e 6362677: Change parallel GC collector default number of parallel GC threads.
jmasa
parents: 0
diff changeset
455 static bool check_gc_consistency();
7452
e0ab18eafbde 8003820: Deprecate untested and rarely used GC combinations
brutisso
parents: 7177
diff changeset
456 static void check_deprecated_gcs();
8734
209f8ba5020b 8008368: Deprecate MaxGCMinorPauseMillis
tamao
parents: 7951
diff changeset
457 static void check_deprecated_gc_flags();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
458 // Check consistecy or otherwise of VM argument settings
a61af66fc99e Initial load
duke
parents:
diff changeset
459 static bool check_vm_args_consistency();
1744
f8c5d1bdaad4 6885308: The incorrect -XX:StackRedPages, -XX:StackShadowPages, -XX:StackYellowPages could cause VM crash
ptisnovs
parents: 1552
diff changeset
460 // Check stack pages settings
f8c5d1bdaad4 6885308: The incorrect -XX:StackRedPages, -XX:StackShadowPages, -XX:StackYellowPages could cause VM crash
ptisnovs
parents: 1552
diff changeset
461 static bool check_stack_pages();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
462 // Used by os_solaris
a61af66fc99e Initial load
duke
parents:
diff changeset
463 static bool process_settings_file(const char* file_name, bool should_exist, jboolean ignore_unrecognized);
a61af66fc99e Initial load
duke
parents:
diff changeset
464
12233
40136aa2cdb1 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 12182
diff changeset
465 static size_t conservative_max_heap_alignment() { return _conservative_max_heap_alignment; }
40136aa2cdb1 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 12182
diff changeset
466 // Return the maximum size a heap with compressed oops can take
40136aa2cdb1 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 12182
diff changeset
467 static size_t max_heap_for_compressed_oops();
40136aa2cdb1 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 12182
diff changeset
468
0
a61af66fc99e Initial load
duke
parents:
diff changeset
469 // return a char* array containing all options
a61af66fc99e Initial load
duke
parents:
diff changeset
470 static char** jvm_flags_array() { return _jvm_flags_array; }
a61af66fc99e Initial load
duke
parents:
diff changeset
471 static char** jvm_args_array() { return _jvm_args_array; }
4559
723df37192d6 Make it possible again to build a real client libjvm, drop the UseGraal flag.
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 3546
diff changeset
472 #ifdef GRAAL
2891
75a99b4f1c98 Rebranded C++ part from C1X to Graal.
Thomas Wuerthinger <thomas@wuerthinger.net>
parents: 2491
diff changeset
473 static char** graal_args_array() { return _graal_args_array; }
4657
d4e039a3e083 Print java.exe when execuing "mx vm"
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4559
diff changeset
474 static int num_graal_args() { return _num_graal_args; }
4559
723df37192d6 Make it possible again to build a real client libjvm, drop the UseGraal flag.
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 3546
diff changeset
475 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
476 static int num_jvm_flags() { return _num_jvm_flags; }
a61af66fc99e Initial load
duke
parents:
diff changeset
477 static int num_jvm_args() { return _num_jvm_args; }
a61af66fc99e Initial load
duke
parents:
diff changeset
478 // return the arguments passed to the Java application
a61af66fc99e Initial load
duke
parents:
diff changeset
479 static const char* java_command() { return _java_command; }
a61af66fc99e Initial load
duke
parents:
diff changeset
480
a61af66fc99e Initial load
duke
parents:
diff changeset
481 // print jvm_flags, jvm_args and java_command
a61af66fc99e Initial load
duke
parents:
diff changeset
482 static void print_on(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
483
a61af66fc99e Initial load
duke
parents:
diff changeset
484 // convenient methods to obtain / print jvm_flags and jvm_args
a61af66fc99e Initial load
duke
parents:
diff changeset
485 static const char* jvm_flags() { return build_resource_string(_jvm_flags_array, _num_jvm_flags); }
a61af66fc99e Initial load
duke
parents:
diff changeset
486 static const char* jvm_args() { return build_resource_string(_jvm_args_array, _num_jvm_args); }
a61af66fc99e Initial load
duke
parents:
diff changeset
487 static void print_jvm_flags_on(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
488 static void print_jvm_args_on(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
489
a61af66fc99e Initial load
duke
parents:
diff changeset
490 // -Dkey=value flags
a61af66fc99e Initial load
duke
parents:
diff changeset
491 static SystemProperty* system_properties() { return _system_properties; }
a61af66fc99e Initial load
duke
parents:
diff changeset
492 static const char* get_property(const char* key);
a61af66fc99e Initial load
duke
parents:
diff changeset
493
a61af66fc99e Initial load
duke
parents:
diff changeset
494 // -Djava.vendor.url.bug
a61af66fc99e Initial load
duke
parents:
diff changeset
495 static const char* java_vendor_url_bug() { return _java_vendor_url_bug; }
a61af66fc99e Initial load
duke
parents:
diff changeset
496
a61af66fc99e Initial load
duke
parents:
diff changeset
497 // -Dsun.java.launcher
a61af66fc99e Initial load
duke
parents:
diff changeset
498 static const char* sun_java_launcher() { return _sun_java_launcher; }
a61af66fc99e Initial load
duke
parents:
diff changeset
499 // Was VM created by a Java launcher?
a61af66fc99e Initial load
duke
parents:
diff changeset
500 static bool created_by_java_launcher();
2302
da091bb67459 7022037: Pause when exiting if debugger is attached on windows
sla
parents: 1972
diff changeset
501 // Was VM created by the gamma Java launcher?
da091bb67459 7022037: Pause when exiting if debugger is attached on windows
sla
parents: 1972
diff changeset
502 static bool created_by_gamma_launcher();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
503 // -Dsun.java.launcher.pid
a61af66fc99e Initial load
duke
parents:
diff changeset
504 static int sun_java_launcher_pid() { return _sun_java_launcher_pid; }
a61af66fc99e Initial load
duke
parents:
diff changeset
505
a61af66fc99e Initial load
duke
parents:
diff changeset
506 // -Xloggc:<file>, if not specified will be NULL
a61af66fc99e Initial load
duke
parents:
diff changeset
507 static const char* gc_log_filename() { return _gc_log_filename; }
a61af66fc99e Initial load
duke
parents:
diff changeset
508
11096
71180a6e5080 7133260: AllocationProfiler uses space in metadata and doesn't seem to do anything useful.
jiangli
parents: 10990
diff changeset
509 // -Xprof
0
a61af66fc99e Initial load
duke
parents:
diff changeset
510 static bool has_profile() { return _has_profile; }
a61af66fc99e Initial load
duke
parents:
diff changeset
511
1064
473cce303f13 6887571: Increase default heap config sizes
phh
parents: 691
diff changeset
512 // -Xms, -Xmx
0
a61af66fc99e Initial load
duke
parents:
diff changeset
513 static uintx min_heap_size() { return _min_heap_size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
514 static void set_min_heap_size(uintx v) { _min_heap_size = v; }
a61af66fc99e Initial load
duke
parents:
diff changeset
515
a61af66fc99e Initial load
duke
parents:
diff changeset
516 // -Xrun
a61af66fc99e Initial load
duke
parents:
diff changeset
517 static AgentLibrary* libraries() { return _libraryList.first(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
518 static bool init_libraries_at_startup() { return !_libraryList.is_empty(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
519 static void convert_library_to_agent(AgentLibrary* lib)
a61af66fc99e Initial load
duke
parents:
diff changeset
520 { _libraryList.remove(lib);
a61af66fc99e Initial load
duke
parents:
diff changeset
521 _agentList.add(lib); }
a61af66fc99e Initial load
duke
parents:
diff changeset
522
a61af66fc99e Initial load
duke
parents:
diff changeset
523 // -agentlib -agentpath
a61af66fc99e Initial load
duke
parents:
diff changeset
524 static AgentLibrary* agents() { return _agentList.first(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
525 static bool init_agents_at_startup() { return !_agentList.is_empty(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
526
a61af66fc99e Initial load
duke
parents:
diff changeset
527 // abort, exit, vfprintf hooks
a61af66fc99e Initial load
duke
parents:
diff changeset
528 static abort_hook_t abort_hook() { return _abort_hook; }
a61af66fc99e Initial load
duke
parents:
diff changeset
529 static exit_hook_t exit_hook() { return _exit_hook; }
a61af66fc99e Initial load
duke
parents:
diff changeset
530 static vfprintf_hook_t vfprintf_hook() { return _vfprintf_hook; }
a61af66fc99e Initial load
duke
parents:
diff changeset
531
a61af66fc99e Initial load
duke
parents:
diff changeset
532 static bool GetCheckCompileOnly () { return CheckCompileOnly; }
a61af66fc99e Initial load
duke
parents:
diff changeset
533
a61af66fc99e Initial load
duke
parents:
diff changeset
534 static const char* GetSharedArchivePath() { return SharedArchivePath; }
a61af66fc99e Initial load
duke
parents:
diff changeset
535
a61af66fc99e Initial load
duke
parents:
diff changeset
536 static bool CompileMethod(char* className, char* methodName) {
a61af66fc99e Initial load
duke
parents:
diff changeset
537 return
a61af66fc99e Initial load
duke
parents:
diff changeset
538 methodExists(
a61af66fc99e Initial load
duke
parents:
diff changeset
539 className, methodName,
a61af66fc99e Initial load
duke
parents:
diff changeset
540 CompileOnlyClassesNum, CompileOnlyClasses, CompileOnlyAllMethods,
a61af66fc99e Initial load
duke
parents:
diff changeset
541 CompileOnlyMethodsNum, CompileOnlyMethods, CompileOnlyAllClasses
a61af66fc99e Initial load
duke
parents:
diff changeset
542 );
a61af66fc99e Initial load
duke
parents:
diff changeset
543 }
a61af66fc99e Initial load
duke
parents:
diff changeset
544
a61af66fc99e Initial load
duke
parents:
diff changeset
545 // Java launcher properties
a61af66fc99e Initial load
duke
parents:
diff changeset
546 static void process_sun_java_launcher_properties(JavaVMInitArgs* args);
a61af66fc99e Initial load
duke
parents:
diff changeset
547
a61af66fc99e Initial load
duke
parents:
diff changeset
548 // System properties
a61af66fc99e Initial load
duke
parents:
diff changeset
549 static void init_system_properties();
a61af66fc99e Initial load
duke
parents:
diff changeset
550
1864
dfb38ea7da17 6988363: Rebrand vm vendor property settings (jdk7 only)
zgu
parents: 1783
diff changeset
551 // Update/Initialize System properties after JDK version number is known
dfb38ea7da17 6988363: Rebrand vm vendor property settings (jdk7 only)
zgu
parents: 1783
diff changeset
552 static void init_version_specific_system_properties();
dfb38ea7da17 6988363: Rebrand vm vendor property settings (jdk7 only)
zgu
parents: 1783
diff changeset
553
691
956304450e80 6819213: revive sun.boot.library.path
phh
parents: 579
diff changeset
554 // Property List manipulation
0
a61af66fc99e Initial load
duke
parents:
diff changeset
555 static void PropertyList_add(SystemProperty** plist, SystemProperty *element);
a61af66fc99e Initial load
duke
parents:
diff changeset
556 static void PropertyList_add(SystemProperty** plist, const char* k, char* v);
691
956304450e80 6819213: revive sun.boot.library.path
phh
parents: 579
diff changeset
557 static void PropertyList_unique_add(SystemProperty** plist, const char* k, char* v) {
956304450e80 6819213: revive sun.boot.library.path
phh
parents: 579
diff changeset
558 PropertyList_unique_add(plist, k, v, false);
956304450e80 6819213: revive sun.boot.library.path
phh
parents: 579
diff changeset
559 }
956304450e80 6819213: revive sun.boot.library.path
phh
parents: 579
diff changeset
560 static void PropertyList_unique_add(SystemProperty** plist, const char* k, char* v, jboolean append);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
561 static const char* PropertyList_get_value(SystemProperty* plist, const char* key);
a61af66fc99e Initial load
duke
parents:
diff changeset
562 static int PropertyList_count(SystemProperty* pl);
a61af66fc99e Initial load
duke
parents:
diff changeset
563 static const char* PropertyList_get_key_at(SystemProperty* pl,int index);
a61af66fc99e Initial load
duke
parents:
diff changeset
564 static char* PropertyList_get_value_at(SystemProperty* pl,int index);
a61af66fc99e Initial load
duke
parents:
diff changeset
565
a61af66fc99e Initial load
duke
parents:
diff changeset
566 // Miscellaneous System property value getter and setters.
a61af66fc99e Initial load
duke
parents:
diff changeset
567 static void set_dll_dir(char *value) { _sun_boot_library_path->set_value(value); }
a61af66fc99e Initial load
duke
parents:
diff changeset
568 static void set_java_home(char *value) { _java_home->set_value(value); }
a61af66fc99e Initial load
duke
parents:
diff changeset
569 static void set_library_path(char *value) { _java_library_path->set_value(value); }
a61af66fc99e Initial load
duke
parents:
diff changeset
570 static void set_ext_dirs(char *value) { _java_ext_dirs->set_value(value); }
a61af66fc99e Initial load
duke
parents:
diff changeset
571 static void set_endorsed_dirs(char *value) { _java_endorsed_dirs->set_value(value); }
a61af66fc99e Initial load
duke
parents:
diff changeset
572 static void set_sysclasspath(char *value) { _sun_boot_class_path->set_value(value); }
a61af66fc99e Initial load
duke
parents:
diff changeset
573 static void append_sysclasspath(const char *value) { _sun_boot_class_path->append_value(value); }
a61af66fc99e Initial load
duke
parents:
diff changeset
574 static void set_meta_index_path(char* meta_index_path, char* meta_index_dir) {
a61af66fc99e Initial load
duke
parents:
diff changeset
575 _meta_index_path = meta_index_path;
a61af66fc99e Initial load
duke
parents:
diff changeset
576 _meta_index_dir = meta_index_dir;
a61af66fc99e Initial load
duke
parents:
diff changeset
577 }
a61af66fc99e Initial load
duke
parents:
diff changeset
578
a61af66fc99e Initial load
duke
parents:
diff changeset
579 static char *get_java_home() { return _java_home->value(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
580 static char *get_dll_dir() { return _sun_boot_library_path->value(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
581 static char *get_endorsed_dir() { return _java_endorsed_dirs->value(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
582 static char *get_sysclasspath() { return _sun_boot_class_path->value(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
583 static char* get_meta_index_path() { return _meta_index_path; }
a61af66fc99e Initial load
duke
parents:
diff changeset
584 static char* get_meta_index_dir() { return _meta_index_dir; }
a61af66fc99e Initial load
duke
parents:
diff changeset
585
a61af66fc99e Initial load
duke
parents:
diff changeset
586 // Operation modi
a61af66fc99e Initial load
duke
parents:
diff changeset
587 static Mode mode() { return _mode; }
a61af66fc99e Initial load
duke
parents:
diff changeset
588
a61af66fc99e Initial load
duke
parents:
diff changeset
589 // Utility: copies src into buf, replacing "%%" with "%" and "%p" with pid.
a61af66fc99e Initial load
duke
parents:
diff changeset
590 static bool copy_expand_pid(const char* src, size_t srclen, char* buf, size_t buflen);
a61af66fc99e Initial load
duke
parents:
diff changeset
591 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1891
diff changeset
592
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1891
diff changeset
593 #endif // SHARE_VM_RUNTIME_ARGUMENTS_HPP