author | jbachorik |
Fri, 24 Jul 2015 20:45:07 +0200 | |
changeset 31989 | 3ba773bbacbe |
parent 31983 | ab6d61a620df |
parent 31867 | 5d39059535ba |
child 31995 | aa4049b4184a |
permissions | -rw-r--r-- |
1 | 1 |
/* |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28368
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:
5539
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5539
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:
5539
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_RUNTIME_GLOBALS_HPP |
26 |
#define SHARE_VM_RUNTIME_GLOBALS_HPP |
|
27 |
||
28 |
#include "utilities/debug.hpp" |
|
11632 | 29 |
|
30 |
// use this for flags that are true per default in the tiered build |
|
31 |
// but false in non-tiered builds, and vice versa |
|
32 |
#ifdef TIERED |
|
33 |
#define trueInTiered true |
|
34 |
#define falseInTiered false |
|
35 |
#else |
|
36 |
#define trueInTiered false |
|
37 |
#define falseInTiered true |
|
38 |
#endif |
|
39 |
||
7397 | 40 |
#ifdef TARGET_ARCH_x86 |
41 |
# include "globals_x86.hpp" |
|
42 |
#endif |
|
43 |
#ifdef TARGET_ARCH_sparc |
|
44 |
# include "globals_sparc.hpp" |
|
45 |
#endif |
|
46 |
#ifdef TARGET_ARCH_zero |
|
47 |
# include "globals_zero.hpp" |
|
48 |
#endif |
|
8107
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
49 |
#ifdef TARGET_ARCH_arm |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
50 |
# include "globals_arm.hpp" |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
51 |
#endif |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
52 |
#ifdef TARGET_ARCH_ppc |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
53 |
# include "globals_ppc.hpp" |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
54 |
#endif |
29180 | 55 |
#ifdef TARGET_ARCH_aarch64 |
56 |
# include "globals_aarch64.hpp" |
|
57 |
#endif |
|
7397 | 58 |
#ifdef TARGET_OS_FAMILY_linux |
59 |
# include "globals_linux.hpp" |
|
60 |
#endif |
|
61 |
#ifdef TARGET_OS_FAMILY_solaris |
|
62 |
# include "globals_solaris.hpp" |
|
63 |
#endif |
|
64 |
#ifdef TARGET_OS_FAMILY_windows |
|
65 |
# include "globals_windows.hpp" |
|
66 |
#endif |
|
22827 | 67 |
#ifdef TARGET_OS_FAMILY_aix |
68 |
# include "globals_aix.hpp" |
|
69 |
#endif |
|
10565 | 70 |
#ifdef TARGET_OS_FAMILY_bsd |
71 |
# include "globals_bsd.hpp" |
|
72 |
#endif |
|
7397 | 73 |
#ifdef TARGET_OS_ARCH_linux_x86 |
74 |
# include "globals_linux_x86.hpp" |
|
75 |
#endif |
|
76 |
#ifdef TARGET_OS_ARCH_linux_sparc |
|
77 |
# include "globals_linux_sparc.hpp" |
|
78 |
#endif |
|
79 |
#ifdef TARGET_OS_ARCH_linux_zero |
|
80 |
# include "globals_linux_zero.hpp" |
|
81 |
#endif |
|
82 |
#ifdef TARGET_OS_ARCH_solaris_x86 |
|
83 |
# include "globals_solaris_x86.hpp" |
|
84 |
#endif |
|
85 |
#ifdef TARGET_OS_ARCH_solaris_sparc |
|
86 |
# include "globals_solaris_sparc.hpp" |
|
87 |
#endif |
|
88 |
#ifdef TARGET_OS_ARCH_windows_x86 |
|
89 |
# include "globals_windows_x86.hpp" |
|
90 |
#endif |
|
8107
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
91 |
#ifdef TARGET_OS_ARCH_linux_arm |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
92 |
# include "globals_linux_arm.hpp" |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
93 |
#endif |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
94 |
#ifdef TARGET_OS_ARCH_linux_ppc |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
95 |
# include "globals_linux_ppc.hpp" |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
96 |
#endif |
29180 | 97 |
#ifdef TARGET_OS_ARCH_linux_aarch64 |
98 |
# include "globals_linux_aarch64.hpp" |
|
99 |
#endif |
|
22827 | 100 |
#ifdef TARGET_OS_ARCH_aix_ppc |
101 |
# include "globals_aix_ppc.hpp" |
|
102 |
#endif |
|
10565 | 103 |
#ifdef TARGET_OS_ARCH_bsd_x86 |
104 |
# include "globals_bsd_x86.hpp" |
|
105 |
#endif |
|
106 |
#ifdef TARGET_OS_ARCH_bsd_zero |
|
107 |
# include "globals_bsd_zero.hpp" |
|
108 |
#endif |
|
7397 | 109 |
#ifdef COMPILER1 |
110 |
#ifdef TARGET_ARCH_x86 |
|
111 |
# include "c1_globals_x86.hpp" |
|
112 |
#endif |
|
113 |
#ifdef TARGET_ARCH_sparc |
|
114 |
# include "c1_globals_sparc.hpp" |
|
115 |
#endif |
|
8107
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
116 |
#ifdef TARGET_ARCH_arm |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
117 |
# include "c1_globals_arm.hpp" |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
118 |
#endif |
29180 | 119 |
#ifdef TARGET_ARCH_aarch64 |
120 |
# include "c1_globals_aarch64.hpp" |
|
8107
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
121 |
#endif |
7397 | 122 |
#ifdef TARGET_OS_FAMILY_linux |
123 |
# include "c1_globals_linux.hpp" |
|
124 |
#endif |
|
125 |
#ifdef TARGET_OS_FAMILY_solaris |
|
126 |
# include "c1_globals_solaris.hpp" |
|
127 |
#endif |
|
128 |
#ifdef TARGET_OS_FAMILY_windows |
|
129 |
# include "c1_globals_windows.hpp" |
|
130 |
#endif |
|
22827 | 131 |
#ifdef TARGET_OS_FAMILY_aix |
132 |
# include "c1_globals_aix.hpp" |
|
133 |
#endif |
|
10565 | 134 |
#ifdef TARGET_OS_FAMILY_bsd |
135 |
# include "c1_globals_bsd.hpp" |
|
136 |
#endif |
|
29180 | 137 |
#ifdef TARGET_ARCH_ppc |
138 |
# include "c1_globals_ppc.hpp" |
|
139 |
#endif |
|
7397 | 140 |
#endif |
141 |
#ifdef COMPILER2 |
|
142 |
#ifdef TARGET_ARCH_x86 |
|
143 |
# include "c2_globals_x86.hpp" |
|
144 |
#endif |
|
145 |
#ifdef TARGET_ARCH_sparc |
|
146 |
# include "c2_globals_sparc.hpp" |
|
147 |
#endif |
|
8107
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
148 |
#ifdef TARGET_ARCH_arm |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
149 |
# include "c2_globals_arm.hpp" |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
150 |
#endif |
22827 | 151 |
#ifdef TARGET_ARCH_ppc |
152 |
# include "c2_globals_ppc.hpp" |
|
153 |
#endif |
|
29180 | 154 |
#ifdef TARGET_ARCH_aarch64 |
155 |
# include "c2_globals_aarch64.hpp" |
|
156 |
#endif |
|
7397 | 157 |
#ifdef TARGET_OS_FAMILY_linux |
158 |
# include "c2_globals_linux.hpp" |
|
159 |
#endif |
|
160 |
#ifdef TARGET_OS_FAMILY_solaris |
|
161 |
# include "c2_globals_solaris.hpp" |
|
162 |
#endif |
|
163 |
#ifdef TARGET_OS_FAMILY_windows |
|
164 |
# include "c2_globals_windows.hpp" |
|
165 |
#endif |
|
22827 | 166 |
#ifdef TARGET_OS_FAMILY_aix |
167 |
# include "c2_globals_aix.hpp" |
|
168 |
#endif |
|
10565 | 169 |
#ifdef TARGET_OS_FAMILY_bsd |
170 |
# include "c2_globals_bsd.hpp" |
|
171 |
#endif |
|
7397 | 172 |
#endif |
173 |
#ifdef SHARK |
|
174 |
#ifdef TARGET_ARCH_zero |
|
175 |
# include "shark_globals_zero.hpp" |
|
176 |
#endif |
|
177 |
#endif |
|
178 |
||
6187 | 179 |
#if !defined(COMPILER1) && !defined(COMPILER2) && !defined(SHARK) |
1 | 180 |
define_pd_global(bool, BackgroundCompilation, false); |
181 |
define_pd_global(bool, UseTLAB, false); |
|
182 |
define_pd_global(bool, CICompileOSR, false); |
|
183 |
define_pd_global(bool, UseTypeProfile, false); |
|
184 |
define_pd_global(bool, UseOnStackReplacement, false); |
|
185 |
define_pd_global(bool, InlineIntrinsics, false); |
|
186 |
define_pd_global(bool, PreferInterpreterNativeStubs, true); |
|
187 |
define_pd_global(bool, ProfileInterpreter, false); |
|
188 |
define_pd_global(bool, ProfileTraps, false); |
|
189 |
define_pd_global(bool, TieredCompilation, false); |
|
190 |
||
191 |
define_pd_global(intx, CompileThreshold, 0); |
|
192 |
||
193 |
define_pd_global(intx, OnStackReplacePercentage, 0); |
|
194 |
define_pd_global(bool, ResizeTLAB, false); |
|
195 |
define_pd_global(intx, FreqInlineSize, 0); |
|
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
196 |
define_pd_global(size_t, NewSizeThreadIncrease, 4*K); |
1 | 197 |
define_pd_global(intx, InlineClassNatives, true); |
198 |
define_pd_global(intx, InlineUnsafeOps, true); |
|
199 |
define_pd_global(intx, InitialCodeCacheSize, 160*K); |
|
200 |
define_pd_global(intx, ReservedCodeCacheSize, 32*M); |
|
26796 | 201 |
define_pd_global(intx, NonProfiledCodeHeapSize, 0); |
202 |
define_pd_global(intx, ProfiledCodeHeapSize, 0); |
|
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
203 |
define_pd_global(intx, NonNMethodCodeHeapSize, 32*M); |
26796 | 204 |
|
1 | 205 |
define_pd_global(intx, CodeCacheExpansionSize, 32*K); |
206 |
define_pd_global(intx, CodeCacheMinBlockLength, 1); |
|
18697
bb36f3118c9d
8020059: The flag introduced by 8014972 is not defined if Hotspot is built without a compiler (zero, ppc64 core build).
goetz
parents:
18510
diff
changeset
|
207 |
define_pd_global(intx, CodeCacheMinimumUseSpace, 200*K); |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
208 |
define_pd_global(size_t, MetaspaceSize, ScaleForWordSize(4*M)); |
1 | 209 |
define_pd_global(bool, NeverActAsServerClassMachine, true); |
4434 | 210 |
define_pd_global(uint64_t,MaxRAM, 1ULL*G); |
1 | 211 |
#define CI_COMPILER_COUNT 0 |
212 |
#else |
|
213 |
||
214 |
#ifdef COMPILER2 |
|
215 |
#define CI_COMPILER_COUNT 2 |
|
216 |
#else |
|
217 |
#define CI_COMPILER_COUNT 1 |
|
218 |
#endif // COMPILER2 |
|
219 |
||
220 |
#endif // no compilers |
|
221 |
||
222 |
// string type aliases used only in this file |
|
223 |
typedef const char* ccstr; |
|
224 |
typedef const char* ccstrlist; // represents string arguments which accumulate |
|
225 |
||
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
226 |
struct Flag { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
227 |
enum Flags { |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
228 |
// value origin |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
229 |
DEFAULT = 0, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
230 |
COMMAND_LINE = 1, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
231 |
ENVIRON_VAR = 2, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
232 |
CONFIG_FILE = 3, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
233 |
MANAGEMENT = 4, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
234 |
ERGONOMIC = 5, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
235 |
ATTACH_ON_DEMAND = 6, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
236 |
INTERNAL = 7, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
237 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
238 |
LAST_VALUE_ORIGIN = INTERNAL, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
239 |
VALUE_ORIGIN_BITS = 4, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
240 |
VALUE_ORIGIN_MASK = right_n_bits(VALUE_ORIGIN_BITS), |
1 | 241 |
|
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
242 |
// flag kind |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
243 |
KIND_PRODUCT = 1 << 4, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
244 |
KIND_MANAGEABLE = 1 << 5, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
245 |
KIND_DIAGNOSTIC = 1 << 6, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
246 |
KIND_EXPERIMENTAL = 1 << 7, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
247 |
KIND_NOT_PRODUCT = 1 << 8, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
248 |
KIND_DEVELOP = 1 << 9, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
249 |
KIND_PLATFORM_DEPENDENT = 1 << 10, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
250 |
KIND_READ_WRITE = 1 << 11, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
251 |
KIND_C1 = 1 << 12, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
252 |
KIND_C2 = 1 << 13, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
253 |
KIND_ARCH = 1 << 14, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
254 |
KIND_SHARK = 1 << 15, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
255 |
KIND_LP64_PRODUCT = 1 << 16, |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
256 |
KIND_COMMERCIAL = 1 << 17, |
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6419
diff
changeset
|
257 |
|
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
258 |
KIND_MASK = ~VALUE_ORIGIN_MASK |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
259 |
}; |
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6419
diff
changeset
|
260 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
261 |
enum Error { |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
262 |
// no error |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
263 |
SUCCESS = 0, |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
264 |
// flag name is missing |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
265 |
MISSING_NAME, |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
266 |
// flag value is missing |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
267 |
MISSING_VALUE, |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
268 |
// error parsing the textual form of the value |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
269 |
WRONG_FORMAT, |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
270 |
// flag is not writeable |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
271 |
NON_WRITABLE, |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
272 |
// flag value is outside of its bounds |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
273 |
OUT_OF_BOUNDS, |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
274 |
// flag value violates its constraint |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
275 |
VIOLATES_CONSTRAINT, |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
276 |
// there is no flag with the given name |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
277 |
INVALID_FLAG, |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
278 |
// other, unspecified error related to setting the flag |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
279 |
ERR_OTHER |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
280 |
}; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
281 |
|
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
282 |
const char* _type; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
283 |
const char* _name; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
284 |
void* _addr; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
285 |
NOT_PRODUCT(const char* _doc;) |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
286 |
Flags _flags; |
1 | 287 |
|
288 |
// points to all Flags static array |
|
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
289 |
static Flag* flags; |
1 | 290 |
|
291 |
// number of flags |
|
292 |
static size_t numFlags; |
|
293 |
||
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
294 |
static Flag* find_flag(const char* name) { return find_flag(name, strlen(name), true, true); }; |
22518
e23c5545e376
8027314: Java should recognize Diagnostic options if -XX:+UnlockDiagnosticVMOptions is not specified and print an informative message
ccheung
parents:
22248
diff
changeset
|
295 |
static Flag* find_flag(const char* name, size_t length, bool allow_locked = false, bool return_flag = false); |
18497 | 296 |
static Flag* fuzzy_match(const char* name, size_t length, bool allow_locked = false); |
1 | 297 |
|
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
298 |
void check_writable(); |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
299 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
300 |
bool is_bool() const; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
301 |
bool get_bool() const; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
302 |
void set_bool(bool value); |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
303 |
|
31236 | 304 |
bool is_int() const; |
305 |
int get_int() const; |
|
306 |
void set_int(int value); |
|
307 |
||
308 |
bool is_uint() const; |
|
309 |
uint get_uint() const; |
|
310 |
void set_uint(uint value); |
|
311 |
||
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
312 |
bool is_intx() const; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
313 |
intx get_intx() const; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
314 |
void set_intx(intx value); |
1 | 315 |
|
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
316 |
bool is_uintx() const; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
317 |
uintx get_uintx() const; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
318 |
void set_uintx(uintx value); |
1 | 319 |
|
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
320 |
bool is_uint64_t() const; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
321 |
uint64_t get_uint64_t() const; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
322 |
void set_uint64_t(uint64_t value); |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
323 |
|
25959 | 324 |
bool is_size_t() const; |
325 |
size_t get_size_t() const; |
|
326 |
void set_size_t(size_t value); |
|
327 |
||
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
328 |
bool is_double() const; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
329 |
double get_double() const; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
330 |
void set_double(double value); |
1 | 331 |
|
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
332 |
bool is_ccstr() const; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
333 |
bool ccstr_accumulates() const; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
334 |
ccstr get_ccstr() const; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
335 |
void set_ccstr(ccstr value); |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
336 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
337 |
Flags get_origin(); |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
338 |
void set_origin(Flags origin); |
4434 | 339 |
|
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
340 |
bool is_default(); |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
341 |
bool is_ergonomic(); |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
342 |
bool is_command_line(); |
1 | 343 |
|
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
344 |
bool is_product() const; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
345 |
bool is_manageable() const; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
346 |
bool is_diagnostic() const; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
347 |
bool is_experimental() const; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
348 |
bool is_notproduct() const; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
349 |
bool is_develop() const; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
350 |
bool is_read_write() const; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
351 |
bool is_commercial() const; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
352 |
|
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
353 |
bool is_constant_in_binary() const; |
1 | 354 |
|
355 |
bool is_unlocker() const; |
|
356 |
bool is_unlocked() const; |
|
357 |
bool is_writeable() const; |
|
358 |
bool is_external() const; |
|
359 |
||
11183
a81bb5c041d3
7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents:
11167
diff
changeset
|
360 |
bool is_unlocker_ext() const; |
a81bb5c041d3
7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents:
11167
diff
changeset
|
361 |
bool is_unlocked_ext() const; |
11254
e2dd3c32a7cb
7122880: Extend vendor-specific command interface to include manageable switches
phh
parents:
11201
diff
changeset
|
362 |
bool is_writeable_ext() const; |
e2dd3c32a7cb
7122880: Extend vendor-specific command interface to include manageable switches
phh
parents:
11201
diff
changeset
|
363 |
bool is_external_ext() const; |
11183
a81bb5c041d3
7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents:
11167
diff
changeset
|
364 |
|
27166
4ce0d93a8287
8047934: Adding new API for unlocking diagnostic argument.
jiangli
parents:
26919
diff
changeset
|
365 |
void unlock_diagnostic(); |
4ce0d93a8287
8047934: Adding new API for unlocking diagnostic argument.
jiangli
parents:
26919
diff
changeset
|
366 |
|
12157
439a7166bf0f
7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents:
12095
diff
changeset
|
367 |
void get_locked_message(char*, int) const; |
439a7166bf0f
7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents:
12095
diff
changeset
|
368 |
void get_locked_message_ext(char*, int) const; |
439a7166bf0f
7144328: Improper commandlines for -XX:+-UnlockCommercialFeatures require proper warning/error messages
jmelvin
parents:
12095
diff
changeset
|
369 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
370 |
// printRanges will print out flags type, name and range values as expected by -XX:+PrintFlagsRanges |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
371 |
void print_on(outputStream* st, bool withComments = false, bool printRanges = false); |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
372 |
void print_kind(outputStream* st); |
1 | 373 |
void print_as_flag(outputStream* st); |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
374 |
|
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
375 |
static const char* flag_error_str(Flag::Error error) { |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
376 |
switch (error) { |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
377 |
case Flag::MISSING_NAME: return "MISSING_NAME"; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
378 |
case Flag::MISSING_VALUE: return "MISSING_VALUE"; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
379 |
case Flag::NON_WRITABLE: return "NON_WRITABLE"; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
380 |
case Flag::OUT_OF_BOUNDS: return "OUT_OF_BOUNDS"; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
381 |
case Flag::VIOLATES_CONSTRAINT: return "VIOLATES_CONSTRAINT"; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
382 |
case Flag::INVALID_FLAG: return "INVALID_FLAG"; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
383 |
case Flag::ERR_OTHER: return "ERR_OTHER"; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
384 |
case Flag::SUCCESS: return "SUCCESS"; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
385 |
default: return "NULL"; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
386 |
} |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
387 |
} |
1 | 388 |
}; |
389 |
||
390 |
// debug flags control various aspects of the VM and are global accessible |
|
391 |
||
392 |
// use FlagSetting to temporarily change some debug flag |
|
393 |
// e.g. FlagSetting fs(DebugThisAndThat, true); |
|
394 |
// restored to previous value upon leaving scope |
|
395 |
class FlagSetting { |
|
396 |
bool val; |
|
397 |
bool* flag; |
|
398 |
public: |
|
399 |
FlagSetting(bool& fl, bool newValue) { flag = &fl; val = fl; fl = newValue; } |
|
400 |
~FlagSetting() { *flag = val; } |
|
401 |
}; |
|
402 |
||
403 |
||
404 |
class CounterSetting { |
|
405 |
intx* counter; |
|
406 |
public: |
|
407 |
CounterSetting(intx* cnt) { counter = cnt; (*counter)++; } |
|
408 |
~CounterSetting() { (*counter)--; } |
|
409 |
}; |
|
410 |
||
31236 | 411 |
class IntFlagSetting { |
412 |
int val; |
|
413 |
int* flag; |
|
414 |
public: |
|
415 |
IntFlagSetting(int& fl, int newValue) { flag = &fl; val = fl; fl = newValue; } |
|
416 |
~IntFlagSetting() { *flag = val; } |
|
417 |
}; |
|
1 | 418 |
|
17392
2f967c0e4246
6843347: Boundary values in some public GC options cause crashes
tschatzl
parents:
17322
diff
changeset
|
419 |
class UIntFlagSetting { |
31236 | 420 |
uint val; |
421 |
uint* flag; |
|
422 |
public: |
|
423 |
UIntFlagSetting(uint& fl, uint newValue) { flag = &fl; val = fl; fl = newValue; } |
|
424 |
~UIntFlagSetting() { *flag = val; } |
|
425 |
}; |
|
426 |
||
427 |
class UIntXFlagSetting { |
|
17392
2f967c0e4246
6843347: Boundary values in some public GC options cause crashes
tschatzl
parents:
17322
diff
changeset
|
428 |
uintx val; |
2f967c0e4246
6843347: Boundary values in some public GC options cause crashes
tschatzl
parents:
17322
diff
changeset
|
429 |
uintx* flag; |
1 | 430 |
public: |
31236 | 431 |
UIntXFlagSetting(uintx& fl, uintx newValue) { flag = &fl; val = fl; fl = newValue; } |
432 |
~UIntXFlagSetting() { *flag = val; } |
|
1 | 433 |
}; |
434 |
||
435 |
class DoubleFlagSetting { |
|
436 |
double val; |
|
437 |
double* flag; |
|
438 |
public: |
|
439 |
DoubleFlagSetting(double& fl, double newValue) { flag = &fl; val = fl; fl = newValue; } |
|
440 |
~DoubleFlagSetting() { *flag = val; } |
|
441 |
}; |
|
442 |
||
25959 | 443 |
class SizeTFlagSetting { |
444 |
size_t val; |
|
445 |
size_t* flag; |
|
446 |
public: |
|
447 |
SizeTFlagSetting(size_t& fl, size_t newValue) { flag = &fl; val = fl; fl = newValue; } |
|
448 |
~SizeTFlagSetting() { *flag = val; } |
|
449 |
}; |
|
450 |
||
1 | 451 |
|
452 |
class CommandLineFlags { |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
453 |
static bool _finished_initializing; |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
454 |
public: |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
455 |
static Flag::Error boolAt(const char* name, size_t len, bool* value, bool allow_locked = false, bool return_flag = false); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
456 |
static Flag::Error boolAt(const char* name, bool* value, bool allow_locked = false, bool return_flag = false) { return boolAt(name, strlen(name), value, allow_locked, return_flag); } |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
457 |
static Flag::Error boolAtPut(const char* name, size_t len, bool* value, Flag::Flags origin); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
458 |
static Flag::Error boolAtPut(const char* name, bool* value, Flag::Flags origin) { return boolAtPut(name, strlen(name), value, origin); } |
1 | 459 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
460 |
static Flag::Error intAt(const char* name, size_t len, int* value, bool allow_locked = false, bool return_flag = false); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
461 |
static Flag::Error intAt(const char* name, int* value, bool allow_locked = false, bool return_flag = false) { return intAt(name, strlen(name), value, allow_locked, return_flag); } |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
462 |
static Flag::Error intAtPut(const char* name, size_t len, int* value, Flag::Flags origin); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
463 |
static Flag::Error intAtPut(const char* name, int* value, Flag::Flags origin) { return intAtPut(name, strlen(name), value, origin); } |
31236 | 464 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
465 |
static Flag::Error uintAt(const char* name, size_t len, uint* value, bool allow_locked = false, bool return_flag = false); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
466 |
static Flag::Error uintAt(const char* name, uint* value, bool allow_locked = false, bool return_flag = false) { return uintAt(name, strlen(name), value, allow_locked, return_flag); } |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
467 |
static Flag::Error uintAtPut(const char* name, size_t len, uint* value, Flag::Flags origin); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
468 |
static Flag::Error uintAtPut(const char* name, uint* value, Flag::Flags origin) { return uintAtPut(name, strlen(name), value, origin); } |
31236 | 469 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
470 |
static Flag::Error intxAt(const char* name, size_t len, intx* value, bool allow_locked = false, bool return_flag = false); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
471 |
static Flag::Error intxAt(const char* name, intx* value, bool allow_locked = false, bool return_flag = false) { return intxAt(name, strlen(name), value, allow_locked, return_flag); } |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
472 |
static Flag::Error intxAtPut(const char* name, size_t len, intx* value, Flag::Flags origin); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
473 |
static Flag::Error intxAtPut(const char* name, intx* value, Flag::Flags origin) { return intxAtPut(name, strlen(name), value, origin); } |
1 | 474 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
475 |
static Flag::Error uintxAt(const char* name, size_t len, uintx* value, bool allow_locked = false, bool return_flag = false); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
476 |
static Flag::Error uintxAt(const char* name, uintx* value, bool allow_locked = false, bool return_flag = false) { return uintxAt(name, strlen(name), value, allow_locked, return_flag); } |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
477 |
static Flag::Error uintxAtPut(const char* name, size_t len, uintx* value, Flag::Flags origin); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
478 |
static Flag::Error uintxAtPut(const char* name, uintx* value, Flag::Flags origin) { return uintxAtPut(name, strlen(name), value, origin); } |
1 | 479 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
480 |
static Flag::Error size_tAt(const char* name, size_t len, size_t* value, bool allow_locked = false, bool return_flag = false); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
481 |
static Flag::Error size_tAt(const char* name, size_t* value, bool allow_locked = false, bool return_flag = false) { return size_tAt(name, strlen(name), value, allow_locked, return_flag); } |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
482 |
static Flag::Error size_tAtPut(const char* name, size_t len, size_t* value, Flag::Flags origin); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
483 |
static Flag::Error size_tAtPut(const char* name, size_t* value, Flag::Flags origin) { return size_tAtPut(name, strlen(name), value, origin); } |
25959 | 484 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
485 |
static Flag::Error uint64_tAt(const char* name, size_t len, uint64_t* value, bool allow_locked = false, bool return_flag = false); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
486 |
static Flag::Error uint64_tAt(const char* name, uint64_t* value, bool allow_locked = false, bool return_flag = false) { return uint64_tAt(name, strlen(name), value, allow_locked, return_flag); } |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
487 |
static Flag::Error uint64_tAtPut(const char* name, size_t len, uint64_t* value, Flag::Flags origin); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
488 |
static Flag::Error uint64_tAtPut(const char* name, uint64_t* value, Flag::Flags origin) { return uint64_tAtPut(name, strlen(name), value, origin); } |
4434 | 489 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
490 |
static Flag::Error doubleAt(const char* name, size_t len, double* value, bool allow_locked = false, bool return_flag = false); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
491 |
static Flag::Error doubleAt(const char* name, double* value, bool allow_locked = false, bool return_flag = false) { return doubleAt(name, strlen(name), value, allow_locked, return_flag); } |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
492 |
static Flag::Error doubleAtPut(const char* name, size_t len, double* value, Flag::Flags origin); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
493 |
static Flag::Error doubleAtPut(const char* name, double* value, Flag::Flags origin) { return doubleAtPut(name, strlen(name), value, origin); } |
1 | 494 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
495 |
static Flag::Error ccstrAt(const char* name, size_t len, ccstr* value, bool allow_locked = false, bool return_flag = false); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
496 |
static Flag::Error ccstrAt(const char* name, ccstr* value, bool allow_locked = false, bool return_flag = false) { return ccstrAt(name, strlen(name), value, allow_locked, return_flag); } |
22194 | 497 |
// Contract: Flag will make private copy of the incoming value. |
498 |
// Outgoing value is always malloc-ed, and caller MUST call free. |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
499 |
static Flag::Error ccstrAtPut(const char* name, size_t len, ccstr* value, Flag::Flags origin); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
500 |
static Flag::Error ccstrAtPut(const char* name, ccstr* value, Flag::Flags origin) { return ccstrAtPut(name, strlen(name), value, origin); } |
1 | 501 |
|
502 |
// Returns false if name is not a command line flag. |
|
503 |
static bool wasSetOnCmdline(const char* name, bool* value); |
|
11441 | 504 |
static void printSetFlags(outputStream* out); |
1 | 505 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
506 |
// printRanges will print out flags type, name and range values as expected by -XX:+PrintFlagsRanges |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
507 |
static void printFlags(outputStream* out, bool withComments, bool printRanges = false); |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
508 |
|
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
509 |
// Returns true if all flags have their final values set (ready for ranges and constraint check) |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
510 |
static bool finishedInitializing() { return _finished_initializing; } |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
511 |
|
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
512 |
// Check the final values of all flags for ranges and constraints |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
513 |
static bool check_all_ranges_and_constraints(); |
1 | 514 |
|
515 |
static void verify() PRODUCT_RETURN; |
|
516 |
}; |
|
517 |
||
518 |
// use this for flags that are true by default in the debug version but |
|
519 |
// false in the optimized version, and vice versa |
|
520 |
#ifdef ASSERT |
|
521 |
#define trueInDebug true |
|
522 |
#define falseInDebug false |
|
523 |
#else |
|
524 |
#define trueInDebug false |
|
525 |
#define falseInDebug true |
|
526 |
#endif |
|
527 |
||
528 |
// use this for flags that are true per default in the product build |
|
529 |
// but false in development builds, and vice versa |
|
530 |
#ifdef PRODUCT |
|
531 |
#define trueInProduct true |
|
532 |
#define falseInProduct false |
|
533 |
#else |
|
534 |
#define trueInProduct false |
|
535 |
#define falseInProduct true |
|
536 |
#endif |
|
537 |
||
10020
9325b4244ec4
7061192: option handling adjustments for oracle and embedded builds
jcoomes
parents:
10003
diff
changeset
|
538 |
#ifdef JAVASE_EMBEDDED |
9325b4244ec4
7061192: option handling adjustments for oracle and embedded builds
jcoomes
parents:
10003
diff
changeset
|
539 |
#define falseInEmbedded false |
9325b4244ec4
7061192: option handling adjustments for oracle and embedded builds
jcoomes
parents:
10003
diff
changeset
|
540 |
#else |
9325b4244ec4
7061192: option handling adjustments for oracle and embedded builds
jcoomes
parents:
10003
diff
changeset
|
541 |
#define falseInEmbedded true |
9325b4244ec4
7061192: option handling adjustments for oracle and embedded builds
jcoomes
parents:
10003
diff
changeset
|
542 |
#endif |
9325b4244ec4
7061192: option handling adjustments for oracle and embedded builds
jcoomes
parents:
10003
diff
changeset
|
543 |
|
1 | 544 |
// develop flags are settable / visible only during development and are constant in the PRODUCT version |
545 |
// product flags are always settable / visible |
|
546 |
// notproduct flags are settable / visible only during development and are not declared in the PRODUCT version |
|
547 |
||
548 |
// A flag must be declared with one of the following types: |
|
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
549 |
// bool, intx, uintx, size_t, ccstr, double, or uint64_t. |
1 | 550 |
// The type "ccstr" is an alias for "const char*" and is used |
551 |
// only in this file, because the macrology requires single-token type names. |
|
552 |
||
553 |
// Note: Diagnostic options not meant for VM tuning or for product modes. |
|
554 |
// They are to be used for VM quality assurance or field diagnosis |
|
555 |
// of VM bugs. They are hidden so that users will not be encouraged to |
|
556 |
// try them as if they were VM ordinary execution options. However, they |
|
557 |
// are available in the product version of the VM. Under instruction |
|
558 |
// from support engineers, VM customers can turn them on to collect |
|
559 |
// diagnostic information about VM problems. To use a VM diagnostic |
|
560 |
// option, you must first specify +UnlockDiagnosticVMOptions. |
|
561 |
// (This master switch also affects the behavior of -Xprintflags.) |
|
1382
fa3de4068282
6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents:
1380
diff
changeset
|
562 |
// |
fa3de4068282
6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents:
1380
diff
changeset
|
563 |
// experimental flags are in support of features that are not |
fa3de4068282
6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents:
1380
diff
changeset
|
564 |
// part of the officially supported product, but are available |
fa3de4068282
6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents:
1380
diff
changeset
|
565 |
// for experimenting with. They could, for example, be performance |
fa3de4068282
6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents:
1380
diff
changeset
|
566 |
// features that may not have undergone full or rigorous QA, but which may |
fa3de4068282
6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents:
1380
diff
changeset
|
567 |
// help performance in some cases and released for experimentation |
fa3de4068282
6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents:
1380
diff
changeset
|
568 |
// by the community of users and developers. This flag also allows one to |
fa3de4068282
6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents:
1380
diff
changeset
|
569 |
// be able to build a fully supported product that nonetheless also |
fa3de4068282
6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents:
1380
diff
changeset
|
570 |
// ships with some unsupported, lightly tested, experimental features. |
fa3de4068282
6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents:
1380
diff
changeset
|
571 |
// Like the UnlockDiagnosticVMOptions flag above, there is a corresponding |
fa3de4068282
6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents:
1380
diff
changeset
|
572 |
// UnlockExperimentalVMOptions flag, which allows the control and |
fa3de4068282
6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents:
1380
diff
changeset
|
573 |
// modification of the experimental flags. |
fa3de4068282
6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents:
1380
diff
changeset
|
574 |
// |
6763
711b8a44c4dd
6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents:
6762
diff
changeset
|
575 |
// Nota bene: neither diagnostic nor experimental options should be used casually, |
711b8a44c4dd
6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents:
6762
diff
changeset
|
576 |
// and they are not supported on production loads, except under explicit |
711b8a44c4dd
6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents:
6762
diff
changeset
|
577 |
// direction from support engineers. |
711b8a44c4dd
6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents:
6762
diff
changeset
|
578 |
// |
1 | 579 |
// manageable flags are writeable external product flags. |
580 |
// They are dynamically writeable through the JDK management interface |
|
581 |
// (com.sun.management.HotSpotDiagnosticMXBean API) and also through JConsole. |
|
582 |
// These flags are external exported interface (see CCC). The list of |
|
583 |
// manageable flags can be queried programmatically through the management |
|
584 |
// interface. |
|
585 |
// |
|
586 |
// A flag can be made as "manageable" only if |
|
587 |
// - the flag is defined in a CCC as an external exported interface. |
|
588 |
// - the VM implementation supports dynamic setting of the flag. |
|
589 |
// This implies that the VM must *always* query the flag variable |
|
590 |
// and not reuse state related to the flag state at any given time. |
|
591 |
// - you want the flag to be queried programmatically by the customers. |
|
592 |
// |
|
593 |
// product_rw flags are writeable internal product flags. |
|
594 |
// They are like "manageable" flags but for internal/private use. |
|
595 |
// The list of product_rw flags are internal/private flags which |
|
596 |
// may be changed/removed in a future release. It can be set |
|
597 |
// through the management interface to get/set value |
|
598 |
// when the name of flag is supplied. |
|
599 |
// |
|
600 |
// A flag can be made as "product_rw" only if |
|
601 |
// - the VM implementation supports dynamic setting of the flag. |
|
602 |
// This implies that the VM must *always* query the flag variable |
|
603 |
// and not reuse state related to the flag state at any given time. |
|
604 |
// |
|
605 |
// Note that when there is a need to support develop flags to be writeable, |
|
606 |
// it can be done in the same way as product_rw. |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
607 |
// |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
608 |
// range is a macro that will expand to min and max arguments for range |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
609 |
// checking code if provided - see commandLineFlagRangeList.hpp |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
610 |
// |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
611 |
// constraint is a macro that will expand to custom function call |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
612 |
// for constraint checking if provided - see commandLineFlagConstraintList.hpp |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
613 |
// |
1 | 614 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
615 |
#define RUNTIME_FLAGS(develop, develop_pd, product, product_pd, diagnostic, experimental, notproduct, manageable, product_rw, lp64_product, range, constraint) \ |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
356
diff
changeset
|
616 |
\ |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
356
diff
changeset
|
617 |
lp64_product(bool, UseCompressedOops, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
618 |
"Use 32-bit object references in 64-bit VM. " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
619 |
"lp64_product means flag is always constant in 32 bit VM") \ |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
620 |
\ |
19979
ebe1dbb6e1aa
8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
19704
diff
changeset
|
621 |
lp64_product(bool, UseCompressedClassPointers, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
622 |
"Use 32-bit class pointers in 64-bit VM. " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
623 |
"lp64_product means flag is always constant in 32 bit VM") \ |
1 | 624 |
\ |
2254
f13dda645a4b
6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents:
2141
diff
changeset
|
625 |
notproduct(bool, CheckCompressedOops, true, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
626 |
"Generate checks in encoding/decoding code in debug VM") \ |
2254
f13dda645a4b
6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents:
2141
diff
changeset
|
627 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
628 |
product_pd(size_t, HeapBaseMinAddress, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
629 |
"OS specific low limit for heap base address") \ |
2254
f13dda645a4b
6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents:
2141
diff
changeset
|
630 |
\ |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28368
diff
changeset
|
631 |
product(uintx, HeapSearchSteps, 3 PPC64_ONLY(+17), \ |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28368
diff
changeset
|
632 |
"Heap allocation steps through preferred address regions to find" \ |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28368
diff
changeset
|
633 |
" where it can allocate the heap. Number of steps to take per " \ |
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28368
diff
changeset
|
634 |
"region.") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
635 |
range(1, max_uintx) \ |
28372
ce0aad4b8c44
8064457: Introduce compressed oops mode disjoint base and improve compressed heap handling.
goetz
parents:
28368
diff
changeset
|
636 |
\ |
2254
f13dda645a4b
6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents:
2141
diff
changeset
|
637 |
diagnostic(bool, PrintCompressedOopsMode, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
638 |
"Print compressed oops base address and encoding mode") \ |
1129
ec4dfac10759
6741004: UseLargePages + UseCompressedOops breaks implicit null checking guard page
coleenp
parents:
1062
diff
changeset
|
639 |
\ |
5694
1e0532a6abff
6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents:
5539
diff
changeset
|
640 |
lp64_product(intx, ObjectAlignmentInBytes, 8, \ |
1e0532a6abff
6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents:
5539
diff
changeset
|
641 |
"Default object alignment in bytes, 8 is minimum") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
642 |
range(8, 256) \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
643 |
constraint(ObjectAlignmentInBytesConstraintFunc) \ |
5694
1e0532a6abff
6916623: Align object to 16 bytes to use Compressed Oops with java heap up to 64Gb
kvn
parents:
5539
diff
changeset
|
644 |
\ |
16596
905d4419a089
2178143: JVM crashes if the number of bound CPUs changed during runtime
minqi
parents:
16445
diff
changeset
|
645 |
product(bool, AssumeMP, false, \ |
905d4419a089
2178143: JVM crashes if the number of bound CPUs changed during runtime
minqi
parents:
16445
diff
changeset
|
646 |
"Instruct the VM to assume multiple processors are available") \ |
905d4419a089
2178143: JVM crashes if the number of bound CPUs changed during runtime
minqi
parents:
16445
diff
changeset
|
647 |
\ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
648 |
/* UseMembar is theoretically a temp flag used for memory barrier */ \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
649 |
/* removal testing. It was supposed to be removed before FCS but has */ \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
650 |
/* been re-added (see 6401008) */ \ |
6965
4ef36b2a6a3a
6989297: Integrate additional portability improvements
bobv
parents:
6466
diff
changeset
|
651 |
product_pd(bool, UseMembar, \ |
1 | 652 |
"(Unstable) Issues membars on thread state transitions") \ |
653 |
\ |
|
10022
377345fb5fb5
7061204: clean the chunk table synchronously in embedded builds
jcoomes
parents:
10020
diff
changeset
|
654 |
develop(bool, CleanChunkPoolAsync, falseInEmbedded, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
655 |
"Clean the chunk pool asynchronously") \ |
10022
377345fb5fb5
7061204: clean the chunk table synchronously in embedded builds
jcoomes
parents:
10020
diff
changeset
|
656 |
\ |
23190
e8bbf9cd711e
8031818: Experimental VM flag for enforcing safe object construction
shade
parents:
23189
diff
changeset
|
657 |
experimental(bool, AlwaysSafeConstructors, false, \ |
e8bbf9cd711e
8031818: Experimental VM flag for enforcing safe object construction
shade
parents:
23189
diff
changeset
|
658 |
"Force safe construction, as if all fields are final.") \ |
e8bbf9cd711e
8031818: Experimental VM flag for enforcing safe object construction
shade
parents:
23189
diff
changeset
|
659 |
\ |
13925 | 660 |
/* Temporary: See 6948537 */ \ |
5431
5c4054a50dbb
6948537: CMS: BOT walkers observe out-of-thin-air zeros on sun4v sparc/CMT
ysr
parents:
5403
diff
changeset
|
661 |
experimental(bool, UseMemSetInBOT, true, \ |
5c4054a50dbb
6948537: CMS: BOT walkers observe out-of-thin-air zeros on sun4v sparc/CMT
ysr
parents:
5403
diff
changeset
|
662 |
"(Unstable) uses memset in BOT updates in GC code") \ |
5c4054a50dbb
6948537: CMS: BOT walkers observe out-of-thin-air zeros on sun4v sparc/CMT
ysr
parents:
5403
diff
changeset
|
663 |
\ |
1 | 664 |
diagnostic(bool, UnlockDiagnosticVMOptions, trueInDebug, \ |
1382
fa3de4068282
6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents:
1380
diff
changeset
|
665 |
"Enable normal processing of flags relating to field diagnostics")\ |
fa3de4068282
6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents:
1380
diff
changeset
|
666 |
\ |
fa3de4068282
6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents:
1380
diff
changeset
|
667 |
experimental(bool, UnlockExperimentalVMOptions, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
668 |
"Enable normal processing of flags relating to experimental " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
669 |
"features") \ |
1 | 670 |
\ |
671 |
product(bool, JavaMonitorsInStackTrace, true, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
672 |
"Print information about Java monitor locks when the stacks are" \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
673 |
"dumped") \ |
1 | 674 |
\ |
675 |
product_pd(bool, UseLargePages, \ |
|
676 |
"Use large page memory") \ |
|
677 |
\ |
|
1421
a7ef1a3b2644
6660681: Incrementally reserve pages on win server 2003 for better large page affinity
jmasa
parents:
1409
diff
changeset
|
678 |
product_pd(bool, UseLargePagesIndividualAllocation, \ |
a7ef1a3b2644
6660681: Incrementally reserve pages on win server 2003 for better large page affinity
jmasa
parents:
1409
diff
changeset
|
679 |
"Allocate large pages individually for better affinity") \ |
a7ef1a3b2644
6660681: Incrementally reserve pages on win server 2003 for better large page affinity
jmasa
parents:
1409
diff
changeset
|
680 |
\ |
a7ef1a3b2644
6660681: Incrementally reserve pages on win server 2003 for better large page affinity
jmasa
parents:
1409
diff
changeset
|
681 |
develop(bool, LargePagesIndividualAllocationInjectError, false, \ |
a7ef1a3b2644
6660681: Incrementally reserve pages on win server 2003 for better large page affinity
jmasa
parents:
1409
diff
changeset
|
682 |
"Fail large pages individual allocation") \ |
a7ef1a3b2644
6660681: Incrementally reserve pages on win server 2003 for better large page affinity
jmasa
parents:
1409
diff
changeset
|
683 |
\ |
20406
934f0b12daa9
8024547: MaxMetaspaceSize should limit the committed memory used by the metaspaces
stefank
parents:
20404
diff
changeset
|
684 |
product(bool, UseLargePagesInMetaspace, false, \ |
934f0b12daa9
8024547: MaxMetaspaceSize should limit the committed memory used by the metaspaces
stefank
parents:
20404
diff
changeset
|
685 |
"Use large page memory in metaspace. " \ |
934f0b12daa9
8024547: MaxMetaspaceSize should limit the committed memory used by the metaspaces
stefank
parents:
20404
diff
changeset
|
686 |
"Only used if UseLargePages is enabled.") \ |
934f0b12daa9
8024547: MaxMetaspaceSize should limit the committed memory used by the metaspaces
stefank
parents:
20404
diff
changeset
|
687 |
\ |
1 | 688 |
develop(bool, TracePageSizes, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
689 |
"Trace page size selection and usage") \ |
1 | 690 |
\ |
691 |
product(bool, UseNUMA, false, \ |
|
692 |
"Use NUMA if available") \ |
|
693 |
\ |
|
10494 | 694 |
product(bool, UseNUMAInterleaving, false, \ |
695 |
"Interleave memory across NUMA nodes if available") \ |
|
696 |
\ |
|
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
697 |
product(size_t, NUMAInterleaveGranularity, 2*M, \ |
10494 | 698 |
"Granularity to use for NUMA interleaving on Windows OS") \ |
699 |
\ |
|
1615
b46d9f19bde2
6779436: NUMA allocator: libnuma expects certain size of the buffer in numa_node_to_cpus()
iveresov
parents:
1608
diff
changeset
|
700 |
product(bool, ForceNUMA, false, \ |
b46d9f19bde2
6779436: NUMA allocator: libnuma expects certain size of the buffer in numa_node_to_cpus()
iveresov
parents:
1608
diff
changeset
|
701 |
"Force NUMA optimizations on single-node/UMA systems") \ |
b46d9f19bde2
6779436: NUMA allocator: libnuma expects certain size of the buffer in numa_node_to_cpus()
iveresov
parents:
1608
diff
changeset
|
702 |
\ |
17392
2f967c0e4246
6843347: Boundary values in some public GC options cause crashes
tschatzl
parents:
17322
diff
changeset
|
703 |
product(uintx, NUMAChunkResizeWeight, 20, \ |
22775 | 704 |
"Percentage (0-100) used to weight the current sample when " \ |
1 | 705 |
"computing exponentially decaying average for " \ |
706 |
"AdaptiveNUMAChunkSizing") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
707 |
range(0, 100) \ |
1 | 708 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
709 |
product(size_t, NUMASpaceResizeRate, 1*G, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
710 |
"Do not reallocate more than this amount per collection") \ |
1 | 711 |
\ |
712 |
product(bool, UseAdaptiveNUMAChunkSizing, true, \ |
|
713 |
"Enable adaptive chunk sizing for NUMA") \ |
|
714 |
\ |
|
715 |
product(bool, NUMAStats, false, \ |
|
716 |
"Print NUMA stats in detailed heap information") \ |
|
717 |
\ |
|
17392
2f967c0e4246
6843347: Boundary values in some public GC options cause crashes
tschatzl
parents:
17322
diff
changeset
|
718 |
product(uintx, NUMAPageScanRate, 256, \ |
1 | 719 |
"Maximum number of pages to include in the page scan procedure") \ |
720 |
\ |
|
721 |
product_pd(bool, NeedsDeoptSuspend, \ |
|
722 |
"True for register window machines (sparc/ia64)") \ |
|
723 |
\ |
|
724 |
product(intx, UseSSE, 99, \ |
|
725 |
"Highest supported SSE instructions set on x86/x64") \ |
|
726 |
\ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
727 |
product(bool, UseAES, false, \ |
14132 | 728 |
"Control whether AES instructions can be used on x86/x64") \ |
729 |
\ |
|
24953
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24931
diff
changeset
|
730 |
product(bool, UseSHA, false, \ |
31588
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31587
diff
changeset
|
731 |
"Control whether SHA instructions can be used " \ |
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31587
diff
changeset
|
732 |
"on SPARC and on ARM") \ |
24953
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24931
diff
changeset
|
733 |
\ |
31404
63e8fcd70bfc
8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents:
30310
diff
changeset
|
734 |
product(bool, UseGHASHIntrinsics, false, \ |
63e8fcd70bfc
8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents:
30310
diff
changeset
|
735 |
"Use intrinsics for GHASH versions of crypto") \ |
63e8fcd70bfc
8073108: Use x86 and SPARC CPU instructions for GHASH acceleration
ascarpino
parents:
30310
diff
changeset
|
736 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
737 |
product(size_t, LargePageSizeInBytes, 0, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
738 |
"Large page size (0 to let VM choose the page size)") \ |
1 | 739 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
740 |
product(size_t, LargePageHeapSizeThreshold, 128*M, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
741 |
"Use large pages if maximum heap is at least this big") \ |
1 | 742 |
\ |
743 |
product(bool, ForceTimeHighResolution, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
744 |
"Using high time resolution (for Win32 only)") \ |
1 | 745 |
\ |
746 |
develop(bool, TraceItables, false, \ |
|
747 |
"Trace initialization and use of itables") \ |
|
748 |
\ |
|
749 |
develop(bool, TracePcPatching, false, \ |
|
750 |
"Trace usage of frame::patch_pc") \ |
|
751 |
\ |
|
752 |
develop(bool, TraceJumps, false, \ |
|
753 |
"Trace assembly jumps in thread ring buffer") \ |
|
754 |
\ |
|
755 |
develop(bool, TraceRelocator, false, \ |
|
756 |
"Trace the bytecode relocator") \ |
|
757 |
\ |
|
758 |
develop(bool, TraceLongCompiles, false, \ |
|
759 |
"Print out every time compilation is longer than " \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
760 |
"a given threshold") \ |
1 | 761 |
\ |
762 |
develop(bool, SafepointALot, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
763 |
"Generate a lot of safepoints. This works with " \ |
1 | 764 |
"GuaranteedSafepointInterval") \ |
765 |
\ |
|
766 |
product_pd(bool, BackgroundCompilation, \ |
|
767 |
"A thread requesting compilation is not blocked during " \ |
|
768 |
"compilation") \ |
|
769 |
\ |
|
770 |
product(bool, PrintVMQWaitTime, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
771 |
"Print out the waiting time in VM operation queue") \ |
1 | 772 |
\ |
773 |
develop(bool, TraceOopMapGeneration, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
774 |
"Show OopMapGeneration") \ |
1 | 775 |
\ |
776 |
product(bool, MethodFlushing, true, \ |
|
777 |
"Reclamation of zombie and not-entrant methods") \ |
|
778 |
\ |
|
779 |
develop(bool, VerifyStack, false, \ |
|
780 |
"Verify stack of each thread when it is entering a runtime call") \ |
|
781 |
\ |
|
10983
9ab65f4cec18
7104960: JSR 292: +VerifyMethodHandles in product JVM can overflow buffer
never
parents:
10963
diff
changeset
|
782 |
diagnostic(bool, ForceUnreachable, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
783 |
"Make all non code cache addresses to be unreachable by " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
784 |
"forcing use of 64bit literal fixups") \ |
1 | 785 |
\ |
786 |
notproduct(bool, StressDerivedPointers, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
787 |
"Force scavenge when a derived pointer is detected on stack " \ |
1 | 788 |
"after rtm call") \ |
789 |
\ |
|
790 |
develop(bool, TraceDerivedPointers, false, \ |
|
791 |
"Trace traversal of derived pointers on stack") \ |
|
792 |
\ |
|
793 |
notproduct(bool, TraceCodeBlobStacks, false, \ |
|
794 |
"Trace stack-walk of codeblobs") \ |
|
795 |
\ |
|
796 |
product(bool, PrintJNIResolving, false, \ |
|
797 |
"Used to implement -v:jni") \ |
|
798 |
\ |
|
799 |
notproduct(bool, PrintRewrites, false, \ |
|
800 |
"Print methods that are being rewritten") \ |
|
801 |
\ |
|
802 |
product(bool, UseInlineCaches, true, \ |
|
803 |
"Use Inline Caches for virtual calls ") \ |
|
804 |
\ |
|
805 |
develop(bool, InlineArrayCopy, true, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
806 |
"Inline arraycopy native that is known to be part of " \ |
1 | 807 |
"base library DLL") \ |
808 |
\ |
|
809 |
develop(bool, InlineObjectHash, true, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
810 |
"Inline Object::hashCode() native that is known to be part " \ |
1 | 811 |
"of base library DLL") \ |
812 |
\ |
|
813 |
develop(bool, InlineNatives, true, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
814 |
"Inline natives that are known to be part of base library DLL") \ |
1 | 815 |
\ |
816 |
develop(bool, InlineMathNatives, true, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
817 |
"Inline SinD, CosD, etc.") \ |
1 | 818 |
\ |
819 |
develop(bool, InlineClassNatives, true, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
820 |
"Inline Class.isInstance, etc") \ |
1 | 821 |
\ |
822 |
develop(bool, InlineThreadNatives, true, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
823 |
"Inline Thread.currentThread, etc") \ |
1 | 824 |
\ |
825 |
develop(bool, InlineUnsafeOps, true, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
826 |
"Inline memory ops (native methods) from sun.misc.Unsafe") \ |
1 | 827 |
\ |
11637
030466036615
7013347: allow crypto functions to be called inline to enhance performance
never
parents:
11636
diff
changeset
|
828 |
product(bool, CriticalJNINatives, true, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
829 |
"Check for critical JNI entry points") \ |
11637
030466036615
7013347: allow crypto functions to be called inline to enhance performance
never
parents:
11636
diff
changeset
|
830 |
\ |
030466036615
7013347: allow crypto functions to be called inline to enhance performance
never
parents:
11636
diff
changeset
|
831 |
notproduct(bool, StressCriticalJNINatives, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
832 |
"Exercise register saving code in critical natives") \ |
11637
030466036615
7013347: allow crypto functions to be called inline to enhance performance
never
parents:
11636
diff
changeset
|
833 |
\ |
2348 | 834 |
product(bool, UseSSE42Intrinsics, false, \ |
835 |
"SSE4.2 versions of intrinsics") \ |
|
836 |
\ |
|
14132 | 837 |
product(bool, UseAESIntrinsics, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
838 |
"Use intrinsics for AES versions of crypto") \ |
14132 | 839 |
\ |
24953
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24931
diff
changeset
|
840 |
product(bool, UseSHA1Intrinsics, false, \ |
31588
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31587
diff
changeset
|
841 |
"Use intrinsics for SHA-1 crypto hash function. " \ |
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31587
diff
changeset
|
842 |
"Requires that UseSHA is enabled.") \ |
24953
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24931
diff
changeset
|
843 |
\ |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24931
diff
changeset
|
844 |
product(bool, UseSHA256Intrinsics, false, \ |
31588
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31587
diff
changeset
|
845 |
"Use intrinsics for SHA-224 and SHA-256 crypto hash functions. " \ |
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31587
diff
changeset
|
846 |
"Requires that UseSHA is enabled.") \ |
24953
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24931
diff
changeset
|
847 |
\ |
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24931
diff
changeset
|
848 |
product(bool, UseSHA512Intrinsics, false, \ |
31588
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31587
diff
changeset
|
849 |
"Use intrinsics for SHA-384 and SHA-512 crypto hash functions. " \ |
2a864a4a414c
8130120: Handling of SHA intrinsics inconsistent across platforms
zmajo
parents:
31587
diff
changeset
|
850 |
"Requires that UseSHA is enabled.") \ |
24953
9680119572be
8035968: Leverage CPU Instructions to Improve SHA Performance on SPARC
kvn
parents:
24931
diff
changeset
|
851 |
\ |
18507
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
18506
diff
changeset
|
852 |
product(bool, UseCRC32Intrinsics, false, \ |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
18506
diff
changeset
|
853 |
"use intrinsics for java.util.zip.CRC32") \ |
61bfc8995bb3
7088419: Use x86 Hardware CRC32 Instruction with java.util.zip.CRC32
drchase
parents:
18506
diff
changeset
|
854 |
\ |
31515 | 855 |
product(bool, UseCRC32CIntrinsics, false, \ |
856 |
"use intrinsics for java.util.zip.CRC32C") \ |
|
857 |
\ |
|
1 | 858 |
develop(bool, TraceCallFixup, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
859 |
"Trace all call fixups") \ |
1 | 860 |
\ |
861 |
develop(bool, DeoptimizeALot, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
862 |
"Deoptimize at every exit from the runtime system") \ |
1 | 863 |
\ |
1553 | 864 |
notproduct(ccstrlist, DeoptimizeOnlyAt, "", \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
865 |
"A comma separated list of bcis to deoptimize at") \ |
1 | 866 |
\ |
867 |
product(bool, DeoptimizeRandom, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
868 |
"Deoptimize random frames on random exit from the runtime system")\ |
1 | 869 |
\ |
870 |
notproduct(bool, ZombieALot, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
871 |
"Create zombies (non-entrant) at exit from the runtime system") \ |
1 | 872 |
\ |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7896
diff
changeset
|
873 |
product(bool, UnlinkSymbolsALot, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
874 |
"Unlink unreferenced symbols from the symbol table at safepoints")\ |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7896
diff
changeset
|
875 |
\ |
1 | 876 |
notproduct(bool, WalkStackALot, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
877 |
"Trace stack (no print) at every exit from the runtime system") \ |
1 | 878 |
\ |
10739 | 879 |
product(bool, Debugging, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
880 |
"Set when executing debug methods in debug.cpp " \ |
1 | 881 |
"(to prevent triggering assertions)") \ |
882 |
\ |
|
883 |
notproduct(bool, StrictSafepointChecks, trueInDebug, \ |
|
884 |
"Enable strict checks that safepoints cannot happen for threads " \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
885 |
"that use No_Safepoint_Verifier") \ |
1 | 886 |
\ |
887 |
notproduct(bool, VerifyLastFrame, false, \ |
|
888 |
"Verify oops on last frame on entry to VM") \ |
|
889 |
\ |
|
890 |
develop(bool, TraceHandleAllocation, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
891 |
"Print out warnings when suspiciously many handles are allocated")\ |
1 | 892 |
\ |
893 |
product(bool, FailOverToOldVerifier, true, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
894 |
"Fail over to old verifier when split verifier fails") \ |
1 | 895 |
\ |
896 |
develop(bool, ShowSafepointMsgs, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
897 |
"Show message about safepoint synchronization") \ |
1 | 898 |
\ |
899 |
product(bool, SafepointTimeout, false, \ |
|
900 |
"Time out and warn or fail after SafepointTimeoutDelay " \ |
|
901 |
"milliseconds if failed to reach safepoint") \ |
|
902 |
\ |
|
903 |
develop(bool, DieOnSafepointTimeout, false, \ |
|
904 |
"Die upon failure to reach safepoint (see SafepointTimeout)") \ |
|
905 |
\ |
|
906 |
/* 50 retries * (5 * current_retry_count) millis = ~6.375 seconds */ \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
907 |
/* typically, at most a few retries are needed */ \ |
1 | 908 |
product(intx, SuspendRetryCount, 50, \ |
909 |
"Maximum retry count for an external suspend request") \ |
|
910 |
\ |
|
911 |
product(intx, SuspendRetryDelay, 5, \ |
|
912 |
"Milliseconds to delay per retry (* current_retry_count)") \ |
|
913 |
\ |
|
914 |
product(bool, AssertOnSuspendWaitFailure, false, \ |
|
915 |
"Assert/Guarantee on external suspend wait failure") \ |
|
916 |
\ |
|
917 |
product(bool, TraceSuspendWaitFailures, false, \ |
|
918 |
"Trace external suspend wait failures") \ |
|
919 |
\ |
|
920 |
product(bool, MaxFDLimit, true, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
921 |
"Bump the number of file descriptors to maximum in Solaris") \ |
1 | 922 |
\ |
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11632
diff
changeset
|
923 |
diagnostic(bool, LogEvents, true, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
924 |
"Enable the various ring buffer event logs") \ |
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11632
diff
changeset
|
925 |
\ |
17392
2f967c0e4246
6843347: Boundary values in some public GC options cause crashes
tschatzl
parents:
17322
diff
changeset
|
926 |
diagnostic(uintx, LogEventsBufferEntries, 10, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
927 |
"Number of ring buffer event logs") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
928 |
range(1, NOT_LP64(1*K) LP64_ONLY(1*M)) \ |
1 | 929 |
\ |
930 |
product(bool, BytecodeVerificationRemote, true, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
931 |
"Enable the Java bytecode verifier for remote classes") \ |
1 | 932 |
\ |
933 |
product(bool, BytecodeVerificationLocal, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
934 |
"Enable the Java bytecode verifier for local classes") \ |
1 | 935 |
\ |
936 |
develop(bool, ForceFloatExceptions, trueInDebug, \ |
|
937 |
"Force exceptions on FP stack under/overflow") \ |
|
938 |
\ |
|
939 |
develop(bool, VerifyStackAtCalls, false, \ |
|
940 |
"Verify that the stack pointer is unchanged after calls") \ |
|
941 |
\ |
|
942 |
develop(bool, TraceJavaAssertions, false, \ |
|
943 |
"Trace java language assertions") \ |
|
944 |
\ |
|
945 |
notproduct(bool, CheckAssertionStatusDirectives, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
946 |
"Temporary - see javaClasses.cpp") \ |
1 | 947 |
\ |
948 |
notproduct(bool, PrintMallocFree, false, \ |
|
949 |
"Trace calls to C heap malloc/free allocation") \ |
|
950 |
\ |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
6062
diff
changeset
|
951 |
product(bool, PrintOopAddress, false, \ |
1 | 952 |
"Always print the location of the oop") \ |
953 |
\ |
|
23214
b6426873cb37
8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents:
23192
diff
changeset
|
954 |
notproduct(bool, VerifyCodeCache, false, \ |
b6426873cb37
8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents:
23192
diff
changeset
|
955 |
"Verify code cache on memory allocation/deallocation") \ |
1 | 956 |
\ |
957 |
develop(bool, ZapDeadCompiledLocals, false, \ |
|
958 |
"Zap dead locals in compiler frames") \ |
|
959 |
\ |
|
960 |
notproduct(bool, ZapDeadLocalsOld, false, \ |
|
961 |
"Zap dead locals (old version, zaps all frames when " \ |
|
962 |
"entering the VM") \ |
|
963 |
\ |
|
964 |
notproduct(bool, CheckOopishValues, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
965 |
"Warn if value contains oop (requires ZapDeadLocals)") \ |
1 | 966 |
\ |
967 |
develop(bool, UseMallocOnly, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
968 |
"Use only malloc/free for allocation (no resource area/arena)") \ |
1 | 969 |
\ |
970 |
develop(bool, PrintMalloc, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
971 |
"Print all malloc/free calls") \ |
1 | 972 |
\ |
8320 | 973 |
develop(bool, PrintMallocStatistics, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
974 |
"Print malloc/free statistics") \ |
8320 | 975 |
\ |
1 | 976 |
develop(bool, ZapResourceArea, trueInDebug, \ |
977 |
"Zap freed resource/arena space with 0xABABABAB") \ |
|
978 |
\ |
|
979 |
notproduct(bool, ZapVMHandleArea, trueInDebug, \ |
|
980 |
"Zap freed VM handle space with 0xBCBCBCBC") \ |
|
981 |
\ |
|
982 |
develop(bool, ZapJNIHandleArea, trueInDebug, \ |
|
983 |
"Zap freed JNI handle space with 0xFEFEFEFE") \ |
|
984 |
\ |
|
6762
f8d1b560700e
6423256: GC stacks should use a better data structure
jcoomes
parents:
6448
diff
changeset
|
985 |
notproduct(bool, ZapStackSegments, trueInDebug, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
986 |
"Zap allocated/freed stack segments with 0xFADFADED") \ |
6762
f8d1b560700e
6423256: GC stacks should use a better data structure
jcoomes
parents:
6448
diff
changeset
|
987 |
\ |
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
765
diff
changeset
|
988 |
develop(bool, ZapUnusedHeapArea, trueInDebug, \ |
1 | 989 |
"Zap unused heap space with 0xBAADBABE") \ |
990 |
\ |
|
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
765
diff
changeset
|
991 |
develop(bool, TraceZapUnusedHeapArea, false, \ |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
765
diff
changeset
|
992 |
"Trace zapping of unused heap space") \ |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
765
diff
changeset
|
993 |
\ |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
765
diff
changeset
|
994 |
develop(bool, CheckZapUnusedHeapArea, false, \ |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
765
diff
changeset
|
995 |
"Check zapping of unused heap space") \ |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
765
diff
changeset
|
996 |
\ |
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1615
diff
changeset
|
997 |
develop(bool, ZapFillerObjects, trueInDebug, \ |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1615
diff
changeset
|
998 |
"Zap filler objects with 0xDEAFBABE") \ |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1615
diff
changeset
|
999 |
\ |
1 | 1000 |
develop(bool, PrintVMMessages, true, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1001 |
"Print VM messages on console") \ |
1 | 1002 |
\ |
1003 |
product(bool, PrintGCApplicationConcurrentTime, false, \ |
|
1004 |
"Print the time the application has been running") \ |
|
1005 |
\ |
|
1006 |
product(bool, PrintGCApplicationStoppedTime, false, \ |
|
1007 |
"Print the time the application has been stopped") \ |
|
1008 |
\ |
|
13476 | 1009 |
diagnostic(bool, VerboseVerification, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1010 |
"Display detailed verification details") \ |
13476 | 1011 |
\ |
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
5251
diff
changeset
|
1012 |
notproduct(uintx, ErrorHandlerTest, 0, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1013 |
"If > 0, provokes an error after VM initialization; the value " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1014 |
"determines which error to provoke. See test_error_handler() " \ |
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
5251
diff
changeset
|
1015 |
"in debug.cpp.") \ |
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
5251
diff
changeset
|
1016 |
\ |
28943
679546f0cc1f
8065895: Synchronous signals during error reporting may terminate or hang VM process
dholmes
parents:
28650
diff
changeset
|
1017 |
notproduct(uintx, TestCrashInErrorHandler, 0, \ |
679546f0cc1f
8065895: Synchronous signals during error reporting may terminate or hang VM process
dholmes
parents:
28650
diff
changeset
|
1018 |
"If > 0, provokes an error inside VM error handler (a secondary " \ |
679546f0cc1f
8065895: Synchronous signals during error reporting may terminate or hang VM process
dholmes
parents:
28650
diff
changeset
|
1019 |
"crash). see test_error_handler() in debug.cpp.") \ |
679546f0cc1f
8065895: Synchronous signals during error reporting may terminate or hang VM process
dholmes
parents:
28650
diff
changeset
|
1020 |
\ |
29573
2d800e5d575f
8074552: SafeFetch32 and SafeFetchN do not work in error handling
dholmes
parents:
29459
diff
changeset
|
1021 |
notproduct(bool, TestSafeFetchInErrorHandler, false, \ |
2d800e5d575f
8074552: SafeFetch32 and SafeFetchN do not work in error handling
dholmes
parents:
29459
diff
changeset
|
1022 |
"If true, tests SafeFetch inside error handler.") \ |
2d800e5d575f
8074552: SafeFetch32 and SafeFetchN do not work in error handling
dholmes
parents:
29459
diff
changeset
|
1023 |
\ |
1 | 1024 |
develop(bool, Verbose, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1025 |
"Print additional debugging information from other modes") \ |
1 | 1026 |
\ |
1027 |
develop(bool, PrintMiscellaneous, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1028 |
"Print uncategorized debugging information (requires +Verbose)") \ |
1 | 1029 |
\ |
1030 |
develop(bool, WizardMode, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1031 |
"Print much more debugging information") \ |
1 | 1032 |
\ |
1033 |
product(bool, ShowMessageBoxOnError, false, \ |
|
1034 |
"Keep process alive on VM fatal error") \ |
|
1035 |
\ |
|
30240
a7ba42fa1df6
8074354: Make CreateMinidumpOnCrash a new name and available on all platforms
minqi
parents:
30120
diff
changeset
|
1036 |
product(bool, CreateCoredumpOnCrash, true, \ |
a7ba42fa1df6
8074354: Make CreateMinidumpOnCrash a new name and available on all platforms
minqi
parents:
30120
diff
changeset
|
1037 |
"Create core/mini dump on VM fatal error") \ |
8119
81eef1b06988
7014918: Improve core/minidump handling in Hotspot
ctornqvi
parents:
8114
diff
changeset
|
1038 |
\ |
31611
c1fcef5c1925
8080925: Make error log write timeout parameter configurable
stuefe
parents:
31608
diff
changeset
|
1039 |
product(uintx, ErrorLogTimeout, 2 * 60, \ |
c1fcef5c1925
8080925: Make error log write timeout parameter configurable
stuefe
parents:
31608
diff
changeset
|
1040 |
"Timeout, in seconds, to limit the time spent on writing an " \ |
c1fcef5c1925
8080925: Make error log write timeout parameter configurable
stuefe
parents:
31608
diff
changeset
|
1041 |
"error log in case of a crash.") \ |
c1fcef5c1925
8080925: Make error log write timeout parameter configurable
stuefe
parents:
31608
diff
changeset
|
1042 |
\ |
1 | 1043 |
product_pd(bool, UseOSErrorReporting, \ |
1044 |
"Let VM fatal error propagate to the OS (ie. WER on Windows)") \ |
|
1045 |
\ |
|
1046 |
product(bool, SuppressFatalErrorMessage, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1047 |
"Report NO fatal error message (avoid deadlock)") \ |
1 | 1048 |
\ |
1049 |
product(ccstrlist, OnError, "", \ |
|
1050 |
"Run user-defined commands on fatal error; see VMError.cpp " \ |
|
1051 |
"for examples") \ |
|
1052 |
\ |
|
1053 |
product(ccstrlist, OnOutOfMemoryError, "", \ |
|
1054 |
"Run user-defined commands on first java.lang.OutOfMemoryError") \ |
|
1055 |
\ |
|
2141
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
2034
diff
changeset
|
1056 |
manageable(bool, HeapDumpBeforeFullGC, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1057 |
"Dump heap to file before any major stop-the-world GC") \ |
2141
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
2034
diff
changeset
|
1058 |
\ |
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
2034
diff
changeset
|
1059 |
manageable(bool, HeapDumpAfterFullGC, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1060 |
"Dump heap to file after any major stop-the-world GC") \ |
2141
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
2034
diff
changeset
|
1061 |
\ |
1 | 1062 |
manageable(bool, HeapDumpOnOutOfMemoryError, false, \ |
1063 |
"Dump heap to file when java.lang.OutOfMemoryError is thrown") \ |
|
1064 |
\ |
|
1065 |
manageable(ccstr, HeapDumpPath, NULL, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1066 |
"When HeapDumpOnOutOfMemoryError is on, the path (filename or " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1067 |
"directory) of the dump file (defaults to java_pid<pid>.hprof " \ |
1 | 1068 |
"in the working directory)") \ |
1069 |
\ |
|
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
1070 |
develop(size_t, SegmentedHeapDumpThreshold, 2*G, \ |
1 | 1071 |
"Generate a segmented heap dump (JAVA PROFILE 1.0.2 format) " \ |
1072 |
"when the heap usage is larger than this") \ |
|
1073 |
\ |
|
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
1074 |
develop(size_t, HeapDumpSegmentSize, 1*G, \ |
1 | 1075 |
"Approximate segment size when generating a segmented heap dump") \ |
1076 |
\ |
|
1077 |
develop(bool, BreakAtWarning, false, \ |
|
1078 |
"Execute breakpoint upon encountering VM warning") \ |
|
1079 |
\ |
|
1080 |
develop(bool, TraceVMOperation, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1081 |
"Trace VM operations") \ |
1 | 1082 |
\ |
1083 |
develop(bool, UseFakeTimers, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1084 |
"Tell whether the VM should use system time or a fake timer") \ |
1 | 1085 |
\ |
13195 | 1086 |
product(ccstr, NativeMemoryTracking, "off", \ |
1087 |
"Native memory tracking options") \ |
|
1088 |
\ |
|
13861
619cff4bfb8b
7188594: Print statistic collected by NMT with VM flag
zgu
parents:
13739
diff
changeset
|
1089 |
diagnostic(bool, PrintNMTStatistics, false, \ |
619cff4bfb8b
7188594: Print statistic collected by NMT with VM flag
zgu
parents:
13739
diff
changeset
|
1090 |
"Print native memory tracking summary data if it is on") \ |
619cff4bfb8b
7188594: Print statistic collected by NMT with VM flag
zgu
parents:
13739
diff
changeset
|
1091 |
\ |
1 | 1092 |
diagnostic(bool, LogCompilation, false, \ |
20010
c66a7254680c
8023134: Rename VM LogFile to hotspot_pid{pid}.log (was hotspot.log)
vlivanov
parents:
19770
diff
changeset
|
1093 |
"Log compilation activity in detail to LogFile") \ |
1 | 1094 |
\ |
1095 |
product(bool, PrintCompilation, false, \ |
|
1096 |
"Print compilations") \ |
|
1097 |
\ |
|
1098 |
diagnostic(bool, TraceNMethodInstalls, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1099 |
"Trace nmethod installation") \ |
1 | 1100 |
\ |
11195
48e0d7ae1378
7110058: change default for ScavengeRootsInCode to 2
twisti
parents:
10989
diff
changeset
|
1101 |
diagnostic(intx, ScavengeRootsInCode, 2, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1102 |
"0: do not allow scavengable oops in the code cache; " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1103 |
"1: allow scavenging from the code cache; " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1104 |
"2: emit as many constants as the compiler can see") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1105 |
range(0, 2) \ |
3908
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
3610
diff
changeset
|
1106 |
\ |
1 | 1107 |
product(bool, AlwaysRestoreFPU, false, \ |
1108 |
"Restore the FPU control word after every JNI call (expensive)") \ |
|
1109 |
\ |
|
31608 | 1110 |
product(bool, MemoryMapImage, false, \ |
1111 |
"Memory map entire runtime image") \ |
|
1112 |
\ |
|
10988
a3b2bd43ef4f
7107042: assert(no_dead_loop) failed: dead loop detected
kvn
parents:
10983
diff
changeset
|
1113 |
diagnostic(bool, PrintCompilation2, false, \ |
1 | 1114 |
"Print additional statistics per compilation") \ |
1115 |
\ |
|
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
249
diff
changeset
|
1116 |
diagnostic(bool, PrintAdapterHandlers, false, \ |
1 | 1117 |
"Print code generated for i2c/c2i adapters") \ |
1118 |
\ |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13197
diff
changeset
|
1119 |
diagnostic(bool, VerifyAdapterCalls, trueInDebug, \ |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13197
diff
changeset
|
1120 |
"Verify that i2c/c2i adapters are called properly") \ |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13197
diff
changeset
|
1121 |
\ |
4755
eee57ea6d910
6921922: fix for 6911204 breaks tagged stack interpreter
never
parents:
4754
diff
changeset
|
1122 |
develop(bool, VerifyAdapterSharing, false, \ |
eee57ea6d910
6921922: fix for 6911204 breaks tagged stack interpreter
never
parents:
4754
diff
changeset
|
1123 |
"Verify that the code for shared adapters is the equivalent") \ |
eee57ea6d910
6921922: fix for 6911204 breaks tagged stack interpreter
never
parents:
4754
diff
changeset
|
1124 |
\ |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
249
diff
changeset
|
1125 |
diagnostic(bool, PrintAssembly, false, \ |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
249
diff
changeset
|
1126 |
"Print assembly code (using external disassembler.so)") \ |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
249
diff
changeset
|
1127 |
\ |
1402
ccb40ce62b79
6744783: HotSpot segfaults if given -XX options with an empty string argument
never
parents:
1129
diff
changeset
|
1128 |
diagnostic(ccstr, PrintAssemblyOptions, NULL, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1129 |
"Print options string passed to disassembler.so") \ |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
249
diff
changeset
|
1130 |
\ |
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
249
diff
changeset
|
1131 |
diagnostic(bool, PrintNMethods, false, \ |
1 | 1132 |
"Print assembly code for nmethods when generated") \ |
1133 |
\ |
|
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
249
diff
changeset
|
1134 |
diagnostic(bool, PrintNativeNMethods, false, \ |
1 | 1135 |
"Print assembly code for native nmethods when generated") \ |
1136 |
\ |
|
1137 |
develop(bool, PrintDebugInfo, false, \ |
|
1138 |
"Print debug information for all nmethods when generated") \ |
|
1139 |
\ |
|
1140 |
develop(bool, PrintRelocations, false, \ |
|
1141 |
"Print relocation information for all nmethods when generated") \ |
|
1142 |
\ |
|
1143 |
develop(bool, PrintDependencies, false, \ |
|
1144 |
"Print dependency information for all nmethods when generated") \ |
|
1145 |
\ |
|
1146 |
develop(bool, PrintExceptionHandlers, false, \ |
|
1147 |
"Print exception handler tables for all nmethods when generated") \ |
|
1148 |
\ |
|
14835
70896cb93c35
8004741: Missing compiled exception handle table entry for multidimensional array allocation
kvn
parents:
14490
diff
changeset
|
1149 |
develop(bool, StressCompiledExceptionHandlers, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1150 |
"Exercise compiled exception handlers") \ |
14835
70896cb93c35
8004741: Missing compiled exception handle table entry for multidimensional array allocation
kvn
parents:
14490
diff
changeset
|
1151 |
\ |
1 | 1152 |
develop(bool, InterceptOSException, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1153 |
"Start debugger when an implicit OS (e.g. NULL) " \ |
1 | 1154 |
"exception happens") \ |
1155 |
\ |
|
15201
f3d755b11424
8005204: Code Cache Reduction: command line options implementation
vladidan
parents:
15107
diff
changeset
|
1156 |
product(bool, PrintCodeCache, false, \ |
f3d755b11424
8005204: Code Cache Reduction: command line options implementation
vladidan
parents:
15107
diff
changeset
|
1157 |
"Print the code cache memory usage when exiting") \ |
1 | 1158 |
\ |
1159 |
develop(bool, PrintCodeCache2, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1160 |
"Print detailed usage information on the code cache when exiting")\ |
15201
f3d755b11424
8005204: Code Cache Reduction: command line options implementation
vladidan
parents:
15107
diff
changeset
|
1161 |
\ |
f3d755b11424
8005204: Code Cache Reduction: command line options implementation
vladidan
parents:
15107
diff
changeset
|
1162 |
product(bool, PrintCodeCacheOnCompilation, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1163 |
"Print the code cache memory usage each time a method is " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1164 |
"compiled") \ |
1 | 1165 |
\ |
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
249
diff
changeset
|
1166 |
diagnostic(bool, PrintStubCode, false, \ |
1 | 1167 |
"Print generated stub code") \ |
1168 |
\ |
|
1169 |
product(bool, StackTraceInThrowable, true, \ |
|
1170 |
"Collect backtrace in throwable when exception happens") \ |
|
1171 |
\ |
|
1172 |
product(bool, OmitStackTraceInFastThrow, true, \ |
|
1173 |
"Omit backtraces for some 'hot' exceptions in optimized code") \ |
|
1174 |
\ |
|
1175 |
product(bool, ProfilerPrintByteCodeStatistics, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1176 |
"Print bytecode statistics when dumping profiler output") \ |
1 | 1177 |
\ |
1178 |
product(bool, ProfilerRecordPC, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1179 |
"Collect ticks for each 16 byte interval of compiled code") \ |
1 | 1180 |
\ |
4434 | 1181 |
product(bool, ProfileVM, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1182 |
"Profile ticks that fall within VM (either in the VM Thread " \ |
1 | 1183 |
"or VM code called through stubs)") \ |
1184 |
\ |
|
1185 |
product(bool, ProfileIntervals, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1186 |
"Print profiles for each interval (see ProfileIntervalsTicks)") \ |
1 | 1187 |
\ |
1188 |
notproduct(bool, ProfilerCheckIntervals, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1189 |
"Collect and print information on spacing of profiler ticks") \ |
1 | 1190 |
\ |
6967
c5ebdcf8372e
6392697: Additional flag needed to supress Hotspot warning messages
kamg
parents:
6965
diff
changeset
|
1191 |
product(bool, PrintWarnings, true, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1192 |
"Print JVM warnings to output stream") \ |
6967
c5ebdcf8372e
6392697: Additional flag needed to supress Hotspot warning messages
kamg
parents:
6965
diff
changeset
|
1193 |
\ |
1 | 1194 |
notproduct(uintx, WarnOnStalledSpinLock, 0, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1195 |
"Print warnings for stalled SpinLocks") \ |
1 | 1196 |
\ |
1197 |
product(bool, RegisterFinalizersAtInit, true, \ |
|
1198 |
"Register finalizable objects at end of Object.<init> or " \ |
|
4434 | 1199 |
"after allocation") \ |
1 | 1200 |
\ |
1201 |
develop(bool, RegisterReferences, true, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1202 |
"Tell whether the VM should register soft/weak/final/phantom " \ |
1 | 1203 |
"references") \ |
1204 |
\ |
|
1205 |
develop(bool, IgnoreRewrites, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1206 |
"Suppress rewrites of bytecodes in the oopmap generator. " \ |
1 | 1207 |
"This is unsafe!") \ |
1208 |
\ |
|
1209 |
develop(bool, PrintCodeCacheExtension, false, \ |
|
1210 |
"Print extension of code cache") \ |
|
1211 |
\ |
|
1212 |
develop(bool, UsePrivilegedStack, true, \ |
|
1213 |
"Enable the security JVM functions") \ |
|
1214 |
\ |
|
1215 |
develop(bool, ProtectionDomainVerification, true, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1216 |
"Verify protection domain before resolution in system dictionary")\ |
1 | 1217 |
\ |
1218 |
product(bool, ClassUnloading, true, \ |
|
1219 |
"Do unloading of classes") \ |
|
1220 |
\ |
|
25908
8adb2fb6fc3c
8048269: Add flag to turn off class unloading after G1 concurrent mark
stefank
parents:
25905
diff
changeset
|
1221 |
product(bool, ClassUnloadingWithConcurrentMark, true, \ |
8adb2fb6fc3c
8048269: Add flag to turn off class unloading after G1 concurrent mark
stefank
parents:
25905
diff
changeset
|
1222 |
"Do unloading of classes with a concurrent marking cycle") \ |
8adb2fb6fc3c
8048269: Add flag to turn off class unloading after G1 concurrent mark
stefank
parents:
25905
diff
changeset
|
1223 |
\ |
1 | 1224 |
develop(bool, DisableStartThread, false, \ |
1225 |
"Disable starting of additional Java threads " \ |
|
1226 |
"(for debugging only)") \ |
|
1227 |
\ |
|
1228 |
develop(bool, MemProfiling, false, \ |
|
1229 |
"Write memory usage profiling to log file") \ |
|
1230 |
\ |
|
1231 |
notproduct(bool, PrintSystemDictionaryAtExit, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1232 |
"Print the system dictionary at exit") \ |
1 | 1233 |
\ |
11628
13155c0c00b4
7114376: Make system dictionary hashtable bucket array size configurable
acorn
parents:
11601
diff
changeset
|
1234 |
experimental(intx, PredictedLoadedClassCount, 0, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1235 |
"Experimental: Tune loaded class cache starting size") \ |
11628
13155c0c00b4
7114376: Make system dictionary hashtable bucket array size configurable
acorn
parents:
11601
diff
changeset
|
1236 |
\ |
1 | 1237 |
diagnostic(bool, UnsyncloadClass, false, \ |
1890 | 1238 |
"Unstable: VM calls loadClass unsynchronized. Custom " \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1239 |
"class loader must call VM synchronized for findClass " \ |
1890 | 1240 |
"and defineClass.") \ |
1241 |
\ |
|
1242 |
product(bool, AlwaysLockClassLoader, false, \ |
|
1243 |
"Require the VM to acquire the class loader lock before calling " \ |
|
1244 |
"loadClass() even for class loaders registering " \ |
|
4434 | 1245 |
"as parallel capable") \ |
1890 | 1246 |
\ |
1247 |
product(bool, AllowParallelDefineClass, false, \ |
|
1248 |
"Allow parallel defineClass requests for class loaders " \ |
|
4434 | 1249 |
"registering as parallel capable") \ |
1890 | 1250 |
\ |
1251 |
product(bool, MustCallLoadClassInternal, false, \ |
|
4434 | 1252 |
"Call loadClassInternal() rather than loadClass()") \ |
1 | 1253 |
\ |
1254 |
product_pd(bool, DontYieldALot, \ |
|
24931
4bba680186bd
8044339: Update FilterSpuriousWakeups documentation. Review "Solaris only" vm options descriptions
iignatyev
parents:
24921
diff
changeset
|
1255 |
"Throw away obvious excess yield calls") \ |
1 | 1256 |
\ |
1257 |
product_pd(bool, ConvertSleepToYield, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1258 |
"Convert sleep(0) to thread yield " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1259 |
"(may be off for Solaris to improve GUI)") \ |
1 | 1260 |
\ |
1261 |
product(bool, ConvertYieldToSleep, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1262 |
"Convert yield to a sleep of MinSleepInterval to simulate Win32 " \ |
24931
4bba680186bd
8044339: Update FilterSpuriousWakeups documentation. Review "Solaris only" vm options descriptions
iignatyev
parents:
24921
diff
changeset
|
1263 |
"behavior") \ |
1 | 1264 |
\ |
1265 |
develop(bool, UseDetachedThreads, true, \ |
|
1266 |
"Use detached threads that are recycled upon termination " \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1267 |
"(for Solaris only)") \ |
1 | 1268 |
\ |
1269 |
product(bool, UseLWPSynchronization, true, \ |
|
1270 |
"Use LWP-based instead of libthread-based synchronization " \ |
|
1271 |
"(SPARC only)") \ |
|
1272 |
\ |
|
25472
381638db28e6
8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents:
25350
diff
changeset
|
1273 |
experimental(ccstr, SyncKnobs, NULL, \ |
381638db28e6
8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents:
25350
diff
changeset
|
1274 |
"(Unstable) Various monitor synchronization tunables") \ |
381638db28e6
8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents:
25350
diff
changeset
|
1275 |
\ |
381638db28e6
8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents:
25350
diff
changeset
|
1276 |
experimental(intx, EmitSync, 0, \ |
381638db28e6
8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents:
25350
diff
changeset
|
1277 |
"(Unsafe, Unstable) " \ |
381638db28e6
8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents:
25350
diff
changeset
|
1278 |
"Control emission of inline sync fast-path code") \ |
1 | 1279 |
\ |
5710 | 1280 |
product(intx, MonitorBound, 0, "Bound Monitor population") \ |
1281 |
\ |
|
1282 |
product(bool, MonitorInUseLists, false, "Track Monitors for Deflation") \ |
|
1283 |
\ |
|
25472
381638db28e6
8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents:
25350
diff
changeset
|
1284 |
experimental(intx, SyncFlags, 0, "(Unsafe, Unstable) " \ |
381638db28e6
8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents:
25350
diff
changeset
|
1285 |
"Experimental Sync flags") \ |
381638db28e6
8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents:
25350
diff
changeset
|
1286 |
\ |
381638db28e6
8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents:
25350
diff
changeset
|
1287 |
experimental(intx, SyncVerbose, 0, "(Unstable)") \ |
381638db28e6
8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents:
25350
diff
changeset
|
1288 |
\ |
31983
ab6d61a620df
8132286: change 'InlineNotify' flag option from "product" to "diagnostic"
dcubed
parents:
31856
diff
changeset
|
1289 |
diagnostic(bool, InlineNotify, true, "intrinsify subset of notify") \ |
31856 | 1290 |
\ |
25472
381638db28e6
8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents:
25350
diff
changeset
|
1291 |
experimental(intx, ClearFPUAtPark, 0, "(Unsafe, Unstable)") \ |
381638db28e6
8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents:
25350
diff
changeset
|
1292 |
\ |
381638db28e6
8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents:
25350
diff
changeset
|
1293 |
experimental(intx, hashCode, 5, \ |
381638db28e6
8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents:
25350
diff
changeset
|
1294 |
"(Unstable) select hashCode generation algorithm") \ |
381638db28e6
8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents:
25350
diff
changeset
|
1295 |
\ |
31779
0d07ffa7dc9b
8130728: Disable WorkAroundNPTLTimedWaitHang by default
dholmes
parents:
31635
diff
changeset
|
1296 |
experimental(intx, WorkAroundNPTLTimedWaitHang, 0, \ |
25472
381638db28e6
8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents:
25350
diff
changeset
|
1297 |
"(Unstable, Linux-specific) " \ |
381638db28e6
8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents:
25350
diff
changeset
|
1298 |
"avoid NPTL-FUTEX hang pthread_cond_timedwait") \ |
1 | 1299 |
\ |
4434 | 1300 |
product(bool, FilterSpuriousWakeups, true, \ |
24931
4bba680186bd
8044339: Update FilterSpuriousWakeups documentation. Review "Solaris only" vm options descriptions
iignatyev
parents:
24921
diff
changeset
|
1301 |
"When true prevents OS-level spurious, or premature, wakeups " \ |
4bba680186bd
8044339: Update FilterSpuriousWakeups documentation. Review "Solaris only" vm options descriptions
iignatyev
parents:
24921
diff
changeset
|
1302 |
"from Object.wait (Ignored for Windows)") \ |
1 | 1303 |
\ |
27024 | 1304 |
experimental(intx, NativeMonitorTimeout, -1, "(Unstable)") \ |
1305 |
\ |
|
1306 |
experimental(intx, NativeMonitorFlags, 0, "(Unstable)") \ |
|
1307 |
\ |
|
1308 |
experimental(intx, NativeMonitorSpinLimit, 20, "(Unstable)") \ |
|
1 | 1309 |
\ |
1310 |
develop(bool, UsePthreads, false, \ |
|
1311 |
"Use pthread-based instead of libthread-based synchronization " \ |
|
1312 |
"(SPARC only)") \ |
|
1313 |
\ |
|
1314 |
product(bool, ReduceSignalUsage, false, \ |
|
1315 |
"Reduce the use of OS signals in Java and/or the VM") \ |
|
1316 |
\ |
|
1317 |
develop_pd(bool, ShareVtableStubs, \ |
|
1318 |
"Share vtable stubs (smaller code but worse branch prediction") \ |
|
1319 |
\ |
|
1320 |
develop(bool, LoadLineNumberTables, true, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1321 |
"Tell whether the class file parser loads line number tables") \ |
1 | 1322 |
\ |
1323 |
develop(bool, LoadLocalVariableTables, true, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1324 |
"Tell whether the class file parser loads local variable tables") \ |
1 | 1325 |
\ |
1326 |
develop(bool, LoadLocalVariableTypeTables, true, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1327 |
"Tell whether the class file parser loads local variable type" \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1328 |
"tables") \ |
1 | 1329 |
\ |
1330 |
product(bool, AllowUserSignalHandlers, false, \ |
|
1331 |
"Do not complain if the application installs signal handlers " \ |
|
1332 |
"(Solaris & Linux only)") \ |
|
1333 |
\ |
|
1334 |
product(bool, UseSignalChaining, true, \ |
|
1335 |
"Use signal-chaining to invoke signal handlers installed " \ |
|
1336 |
"by the application (Solaris & Linux only)") \ |
|
1337 |
\ |
|
1338 |
product(bool, UseAltSigs, false, \ |
|
1339 |
"Use alternate signals instead of SIGUSR1 & SIGUSR2 for VM " \ |
|
4434 | 1340 |
"internal signals (Solaris only)") \ |
1 | 1341 |
\ |
1342 |
product(bool, AllowJNIEnvProxy, false, \ |
|
1343 |
"Allow JNIEnv proxies for jdbx") \ |
|
1344 |
\ |
|
1345 |
product(bool, JNIDetachReleasesMonitors, true, \ |
|
1346 |
"JNI DetachCurrentThread releases monitors owned by thread") \ |
|
1347 |
\ |
|
1348 |
product(bool, RestoreMXCSROnJNICalls, false, \ |
|
1349 |
"Restore MXCSR when returning from JNI calls") \ |
|
1350 |
\ |
|
1351 |
product(bool, CheckJNICalls, false, \ |
|
1352 |
"Verify all arguments to JNI calls") \ |
|
1353 |
\ |
|
27562 | 1354 |
product(bool, CheckEndorsedAndExtDirs, false, \ |
1355 |
"Verify the endorsed and extension directories are not used") \ |
|
1356 |
\ |
|
1 | 1357 |
product(bool, UseFastJNIAccessors, true, \ |
1358 |
"Use optimized versions of Get<Primitive>Field") \ |
|
1359 |
\ |
|
25630
ff281ea14d41
8046919: jni_PushLocalFrame OOM - increase MAX_REASONABLE_LOCAL_CAPACITY
dsimms
parents:
25472
diff
changeset
|
1360 |
product(intx, MaxJNILocalCapacity, 65536, \ |
ff281ea14d41
8046919: jni_PushLocalFrame OOM - increase MAX_REASONABLE_LOCAL_CAPACITY
dsimms
parents:
25472
diff
changeset
|
1361 |
"Maximum allowable local JNI handle capacity to " \ |
ff281ea14d41
8046919: jni_PushLocalFrame OOM - increase MAX_REASONABLE_LOCAL_CAPACITY
dsimms
parents:
25472
diff
changeset
|
1362 |
"EnsureLocalCapacity() and PushLocalFrame(), " \ |
ff281ea14d41
8046919: jni_PushLocalFrame OOM - increase MAX_REASONABLE_LOCAL_CAPACITY
dsimms
parents:
25472
diff
changeset
|
1363 |
"where <= 0 is unlimited, default: 65536") \ |
ff281ea14d41
8046919: jni_PushLocalFrame OOM - increase MAX_REASONABLE_LOCAL_CAPACITY
dsimms
parents:
25472
diff
changeset
|
1364 |
\ |
1 | 1365 |
product(bool, EagerXrunInit, false, \ |
1366 |
"Eagerly initialize -Xrun libraries; allows startup profiling, " \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1367 |
"but not all -Xrun libraries may support the state of the VM " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1368 |
"at this time") \ |
1 | 1369 |
\ |
1370 |
product(bool, PreserveAllAnnotations, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1371 |
"Preserve RuntimeInvisibleAnnotations as well " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1372 |
"as RuntimeVisibleAnnotations") \ |
1 | 1373 |
\ |
1374 |
develop(uintx, PreallocatedOutOfMemoryErrorCount, 4, \ |
|
1375 |
"Number of OutOfMemoryErrors preallocated with backtrace") \ |
|
1376 |
\ |
|
1437 | 1377 |
product(bool, UseXMMForArrayCopy, false, \ |
1378 |
"Use SSE2 MOVQ instruction for Arraycopy") \ |
|
1379 |
\ |
|
1 | 1380 |
product(intx, FieldsAllocationStyle, 1, \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1381 |
"0 - type based with oops first, " \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1382 |
"1 - with oops last, " \ |
5250
ea743ca75cd9
6940733: allocate non static oop fields in super and sub classes together
kvn
parents:
5249
diff
changeset
|
1383 |
"2 - oops in super and sub classes are together") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1384 |
range(0, 2) \ |
1 | 1385 |
\ |
1386 |
product(bool, CompactFields, true, \ |
|
1387 |
"Allocate nonstatic fields in gaps between previous fields") \ |
|
1388 |
\ |
|
15193
8e6b5694267f
8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents:
15101
diff
changeset
|
1389 |
notproduct(bool, PrintFieldLayout, false, \ |
8e6b5694267f
8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents:
15101
diff
changeset
|
1390 |
"Print field layout for each class") \ |
8e6b5694267f
8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents:
15101
diff
changeset
|
1391 |
\ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1392 |
/* Need to limit the extent of the padding to reasonable size. */\ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1393 |
/* 8K is well beyond the reasonable HW cache line size, even with */\ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1394 |
/* aggressive prefetching, while still leaving the room for segregating */\ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1395 |
/* among the distinct pages. */\ |
15193
8e6b5694267f
8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents:
15101
diff
changeset
|
1396 |
product(intx, ContendedPaddingWidth, 128, \ |
8e6b5694267f
8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents:
15101
diff
changeset
|
1397 |
"How many bytes to pad the fields/classes marked @Contended with")\ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1398 |
range(0, 8192) \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1399 |
constraint(ContendedPaddingWidthConstraintFunc) \ |
15193
8e6b5694267f
8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents:
15101
diff
changeset
|
1400 |
\ |
8e6b5694267f
8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents:
15101
diff
changeset
|
1401 |
product(bool, EnableContended, true, \ |
8e6b5694267f
8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents:
15101
diff
changeset
|
1402 |
"Enable @Contended annotation support") \ |
8e6b5694267f
8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents:
15101
diff
changeset
|
1403 |
\ |
8e6b5694267f
8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents:
15101
diff
changeset
|
1404 |
product(bool, RestrictContended, true, \ |
8e6b5694267f
8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents:
15101
diff
changeset
|
1405 |
"Restrict @Contended to trusted classes") \ |
8e6b5694267f
8003985: Support @Contended Annotation - JEP 142
jwilhelm
parents:
15101
diff
changeset
|
1406 |
\ |
1 | 1407 |
product(bool, UseBiasedLocking, true, \ |
1408 |
"Enable biased locking in JVM") \ |
|
1409 |
\ |
|
1410 |
product(intx, BiasedLockingStartupDelay, 4000, \ |
|
1411 |
"Number of milliseconds to wait before enabling biased locking") \ |
|
1412 |
\ |
|
1413 |
diagnostic(bool, PrintBiasedLockingStatistics, false, \ |
|
1414 |
"Print statistics of biased locking in JVM") \ |
|
1415 |
\ |
|
1416 |
product(intx, BiasedLockingBulkRebiasThreshold, 20, \ |
|
1417 |
"Threshold of number of revocations per type to try to " \ |
|
1418 |
"rebias all objects in the heap of that type") \ |
|
1419 |
\ |
|
1420 |
product(intx, BiasedLockingBulkRevokeThreshold, 40, \ |
|
1421 |
"Threshold of number of revocations per type to permanently " \ |
|
1422 |
"revoke biases of all objects in the heap of that type") \ |
|
1423 |
\ |
|
1424 |
product(intx, BiasedLockingDecayTime, 25000, \ |
|
1425 |
"Decay time (in milliseconds) to re-enable bulk rebiasing of a " \ |
|
1426 |
"type after previous bulk rebias") \ |
|
1427 |
\ |
|
1428 |
/* tracing */ \ |
|
1429 |
\ |
|
1430 |
notproduct(bool, TraceRuntimeCalls, false, \ |
|
1431 |
"Trace run-time calls") \ |
|
1432 |
\ |
|
1433 |
develop(bool, TraceJNICalls, false, \ |
|
1434 |
"Trace JNI calls") \ |
|
1435 |
\ |
|
22750
a3c879b18f22
8033528: assert(0 <= i && i < length()) failed: index out of bounds
coleenp
parents:
22556
diff
changeset
|
1436 |
develop(bool, StressRewriter, false, \ |
a3c879b18f22
8033528: assert(0 <= i && i < length()) failed: index out of bounds
coleenp
parents:
22556
diff
changeset
|
1437 |
"Stress linktime bytecode rewriting") \ |
a3c879b18f22
8033528: assert(0 <= i && i < length()) failed: index out of bounds
coleenp
parents:
22556
diff
changeset
|
1438 |
\ |
1 | 1439 |
notproduct(bool, TraceJVMCalls, false, \ |
1440 |
"Trace JVM calls") \ |
|
1441 |
\ |
|
1402
ccb40ce62b79
6744783: HotSpot segfaults if given -XX options with an empty string argument
never
parents:
1129
diff
changeset
|
1442 |
product(ccstr, TraceJVMTI, NULL, \ |
1 | 1443 |
"Trace flags for JVMTI functions and events") \ |
1444 |
\ |
|
1445 |
/* This option can change an EMCP method into an obsolete method. */ \ |
|
1446 |
/* This can affect tests that except specific methods to be EMCP. */ \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1447 |
/* This option should be used with caution. */ \ |
1 | 1448 |
product(bool, StressLdcRewrite, false, \ |
1449 |
"Force ldc -> ldc_w rewrite during RedefineClasses") \ |
|
1450 |
\ |
|
1451 |
product(intx, TraceRedefineClasses, 0, \ |
|
1452 |
"Trace level for JVMTI RedefineClasses") \ |
|
1453 |
\ |
|
1454 |
/* change to false by default sometime after Mustang */ \ |
|
1455 |
product(bool, VerifyMergedCPBytecodes, true, \ |
|
1456 |
"Verify bytecodes after RedefineClasses constant pool merging") \ |
|
1457 |
\ |
|
1458 |
develop(bool, TraceJNIHandleAllocation, false, \ |
|
1459 |
"Trace allocation/deallocation of JNI handle blocks") \ |
|
1460 |
\ |
|
1461 |
develop(bool, TraceBytecodes, false, \ |
|
1462 |
"Trace bytecode execution") \ |
|
1463 |
\ |
|
1464 |
develop(bool, TraceClassInitialization, false, \ |
|
1465 |
"Trace class initialization") \ |
|
1466 |
\ |
|
28174
6e48d3b8d791
8064319: Need to enable -XX:+TraceExceptions in release builds
coleenp
parents:
27711
diff
changeset
|
1467 |
product(bool, TraceExceptions, false, \ |
1 | 1468 |
"Trace exceptions") \ |
1469 |
\ |
|
1470 |
develop(bool, TraceICs, false, \ |
|
1471 |
"Trace inline cache changes") \ |
|
1472 |
\ |
|
1473 |
notproduct(bool, TraceInvocationCounterOverflow, false, \ |
|
1474 |
"Trace method invocation counter overflow") \ |
|
1475 |
\ |
|
1476 |
develop(bool, TraceInlineCacheClearing, false, \ |
|
1477 |
"Trace clearing of inline caches in nmethods") \ |
|
1478 |
\ |
|
1479 |
develop(bool, TraceDependencies, false, \ |
|
1480 |
"Trace dependencies") \ |
|
1481 |
\ |
|
1482 |
develop(bool, VerifyDependencies, trueInDebug, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1483 |
"Exercise and verify the compilation dependency mechanism") \ |
1 | 1484 |
\ |
1485 |
develop(bool, TraceNewOopMapGeneration, false, \ |
|
1486 |
"Trace OopMapGeneration") \ |
|
1487 |
\ |
|
1488 |
develop(bool, TraceNewOopMapGenerationDetailed, false, \ |
|
1489 |
"Trace OopMapGeneration: print detailed cell states") \ |
|
1490 |
\ |
|
1491 |
develop(bool, TimeOopMap, false, \ |
|
1492 |
"Time calls to GenerateOopMap::compute_map() in sum") \ |
|
1493 |
\ |
|
1494 |
develop(bool, TimeOopMap2, false, \ |
|
1495 |
"Time calls to GenerateOopMap::compute_map() individually") \ |
|
1496 |
\ |
|
1497 |
develop(bool, TraceMonitorMismatch, false, \ |
|
1498 |
"Trace monitor matching failures during OopMapGeneration") \ |
|
1499 |
\ |
|
1500 |
develop(bool, TraceOopMapRewrites, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1501 |
"Trace rewriting of method oops during oop map generation") \ |
1 | 1502 |
\ |
1503 |
develop(bool, TraceSafepoint, false, \ |
|
1504 |
"Trace safepoint operations") \ |
|
1505 |
\ |
|
1506 |
develop(bool, TraceICBuffer, false, \ |
|
1507 |
"Trace usage of IC buffer") \ |
|
1508 |
\ |
|
1509 |
develop(bool, TraceCompiledIC, false, \ |
|
1510 |
"Trace changes of compiled IC") \ |
|
1511 |
\ |
|
1512 |
notproduct(bool, TraceZapDeadLocals, false, \ |
|
1513 |
"Trace zapping dead locals") \ |
|
1514 |
\ |
|
1515 |
develop(bool, TraceStartupTime, false, \ |
|
1516 |
"Trace setup time") \ |
|
1517 |
\ |
|
1518 |
develop(bool, TraceProtectionDomainVerification, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1519 |
"Trace protection domain verification") \ |
1 | 1520 |
\ |
1521 |
develop(bool, TraceClearedExceptions, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1522 |
"Print when an exception is forcibly cleared") \ |
1 | 1523 |
\ |
1524 |
product(bool, TraceClassResolution, false, \ |
|
1525 |
"Trace all constant pool resolutions (for debugging)") \ |
|
1526 |
\ |
|
1527 |
product(bool, TraceBiasedLocking, false, \ |
|
1528 |
"Trace biased locking in JVM") \ |
|
1529 |
\ |
|
1530 |
product(bool, TraceMonitorInflation, false, \ |
|
1531 |
"Trace monitor inflation in JVM") \ |
|
1532 |
\ |
|
1533 |
/* gc */ \ |
|
1534 |
\ |
|
1535 |
product(bool, UseSerialGC, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1536 |
"Use the Serial garbage collector") \ |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
389
diff
changeset
|
1537 |
\ |
4741
3b1373d466d2
6919980: G1: remove +UseG1GC from under experimental options (second attempt)
tonyp
parents:
4650
diff
changeset
|
1538 |
product(bool, UseG1GC, false, \ |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
389
diff
changeset
|
1539 |
"Use the Garbage-First garbage collector") \ |
1 | 1540 |
\ |
1541 |
product(bool, UseParallelGC, false, \ |
|
1542 |
"Use the Parallel Scavenge garbage collector") \ |
|
1543 |
\ |
|
1544 |
product(bool, UseParallelOldGC, false, \ |
|
1545 |
"Use the Parallel Old garbage collector") \ |
|
1546 |
\ |
|
1547 |
product(uintx, HeapMaximumCompactionInterval, 20, \ |
|
1548 |
"How often should we maximally compact the heap (not allowing " \ |
|
1549 |
"any dead space)") \ |
|
1550 |
\ |
|
1551 |
product(uintx, HeapFirstMaximumCompactionCount, 3, \ |
|
1552 |
"The collection count for the first maximum compaction") \ |
|
1553 |
\ |
|
1554 |
product(bool, UseMaximumCompactionOnSystemGC, true, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1555 |
"Use maximum compaction in the Parallel Old garbage collector " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1556 |
"for a system GC") \ |
1 | 1557 |
\ |
1558 |
product(uintx, ParallelOldDeadWoodLimiterMean, 50, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1559 |
"The mean used by the parallel compact dead wood " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1560 |
"limiter (a number between 0-100)") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1561 |
range(0, 100) \ |
1 | 1562 |
\ |
1563 |
product(uintx, ParallelOldDeadWoodLimiterStdDev, 80, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1564 |
"The standard deviation used by the parallel compact dead wood " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1565 |
"limiter (a number between 0-100)") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1566 |
range(0, 100) \ |
1 | 1567 |
\ |
31330
77061bb01b18
8081382: Make flags ParallelGCThreads and ConcGCThreads of type uint
david
parents:
31236
diff
changeset
|
1568 |
product(uint, ParallelGCThreads, 0, \ |
1 | 1569 |
"Number of parallel threads parallel gc will use") \ |
1570 |
\ |
|
11174
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10991
diff
changeset
|
1571 |
product(bool, UseDynamicNumberOfGCThreads, false, \ |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10991
diff
changeset
|
1572 |
"Dynamically choose the number of parallel threads " \ |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10991
diff
changeset
|
1573 |
"parallel gc will use") \ |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10991
diff
changeset
|
1574 |
\ |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10991
diff
changeset
|
1575 |
diagnostic(bool, ForceDynamicNumberOfGCThreads, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1576 |
"Force dynamic selection of the number of " \ |
11174
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10991
diff
changeset
|
1577 |
"parallel threads parallel gc will use to aid debugging") \ |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10991
diff
changeset
|
1578 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
1579 |
product(size_t, HeapSizePerGCThread, ScaleForWordSize(64*M), \ |
11174
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10991
diff
changeset
|
1580 |
"Size of heap (bytes) per GC thread used in calculating the " \ |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10991
diff
changeset
|
1581 |
"number of GC threads") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1582 |
range((uintx)os::vm_page_size(), max_uintx) \ |
11174
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10991
diff
changeset
|
1583 |
\ |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10991
diff
changeset
|
1584 |
product(bool, TraceDynamicGCThreads, false, \ |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10991
diff
changeset
|
1585 |
"Trace the dynamic GC thread usage") \ |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10991
diff
changeset
|
1586 |
\ |
1670
0deb85ea62d5
6765954: par compact - stress mode for splitting young gen spaces
jcoomes
parents:
1668
diff
changeset
|
1587 |
develop(bool, ParallelOldGCSplitALot, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1588 |
"Provoke splitting (copying data from a young gen space to " \ |
1670
0deb85ea62d5
6765954: par compact - stress mode for splitting young gen spaces
jcoomes
parents:
1668
diff
changeset
|
1589 |
"multiple destination spaces)") \ |
0deb85ea62d5
6765954: par compact - stress mode for splitting young gen spaces
jcoomes
parents:
1668
diff
changeset
|
1590 |
\ |
0deb85ea62d5
6765954: par compact - stress mode for splitting young gen spaces
jcoomes
parents:
1668
diff
changeset
|
1591 |
develop(uintx, ParallelOldGCSplitInterval, 3, \ |
0deb85ea62d5
6765954: par compact - stress mode for splitting young gen spaces
jcoomes
parents:
1668
diff
changeset
|
1592 |
"How often to provoke splitting a young gen space") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1593 |
range(0, max_uintx) \ |
1 | 1594 |
\ |
31330
77061bb01b18
8081382: Make flags ParallelGCThreads and ConcGCThreads of type uint
david
parents:
31236
diff
changeset
|
1595 |
product(uint, ConcGCThreads, 0, \ |
5035 | 1596 |
"Number of threads concurrent gc will use") \ |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
389
diff
changeset
|
1597 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
1598 |
product(size_t, YoungPLABSize, 4096, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1599 |
"Size of young gen promotion LAB's (in HeapWords)") \ |
1 | 1600 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
1601 |
product(size_t, OldPLABSize, 1024, \ |
28206 | 1602 |
"Size of old gen promotion LAB's (in HeapWords), or Number \ |
1603 |
of blocks to attempt to claim when refilling CMS LAB's") \ |
|
1 | 1604 |
\ |
1605 |
product(uintx, GCTaskTimeStampEntries, 200, \ |
|
1606 |
"Number of time stamp entries per gc worker thread") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1607 |
range(1, max_uintx) \ |
1 | 1608 |
\ |
1609 |
product(bool, AlwaysTenure, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1610 |
"Always tenure objects in eden (ParallelGC only)") \ |
1 | 1611 |
\ |
1612 |
product(bool, NeverTenure, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1613 |
"Never tenure objects in eden, may tenure on overflow " \ |
4434 | 1614 |
"(ParallelGC only)") \ |
1 | 1615 |
\ |
1616 |
product(bool, ScavengeBeforeFullGC, true, \ |
|
24941
4ebbe176a7b1
8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents:
24461
diff
changeset
|
1617 |
"Scavenge youngest generation before each full GC.") \ |
1 | 1618 |
\ |
1619 |
develop(bool, ScavengeWithObjectsInToSpace, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1620 |
"Allow scavenges to occur when to-space contains objects") \ |
1 | 1621 |
\ |
1622 |
product(bool, UseConcMarkSweepGC, false, \ |
|
1623 |
"Use Concurrent Mark-Sweep GC in the old generation") \ |
|
1624 |
\ |
|
1625 |
product(bool, ExplicitGCInvokesConcurrent, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1626 |
"A System.gc() request invokes a concurrent collection; " \ |
28937
024add53cfeb
8072688: Description of flag ExplicitGCInvokesConcurrent should mention G1 as well
jwilhelm
parents:
28650
diff
changeset
|
1627 |
"(effective only when using concurrent collectors)") \ |
1 | 1628 |
\ |
1629 |
product(bool, ExplicitGCInvokesConcurrentAndUnloadsClasses, false, \ |
|
4434 | 1630 |
"A System.gc() request invokes a concurrent collection and " \ |
1631 |
"also unloads classes during such a concurrent gc cycle " \ |
|
1632 |
"(effective only when UseConcMarkSweepGC)") \ |
|
1 | 1633 |
\ |
5433
c182d4c3039e
6919638: CMS: ExplicitGCInvokesConcurrent misinteracts with gc locker
ysr
parents:
5431
diff
changeset
|
1634 |
product(bool, GCLockerInvokesConcurrent, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1635 |
"The exit of a JNI critical section necessitating a scavenge, " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1636 |
"also kicks off a background concurrent collection") \ |
5433
c182d4c3039e
6919638: CMS: ExplicitGCInvokesConcurrent misinteracts with gc locker
ysr
parents:
5431
diff
changeset
|
1637 |
\ |
7416
cfe3bfab7d48
6994056: G1: when GC locker is active, extend the Eden instead of allocating into the old gen
tonyp
parents:
7397
diff
changeset
|
1638 |
product(uintx, GCLockerEdenExpansionPercent, 5, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1639 |
"How much the GC can expand the eden by while the GC locker " \ |
7416
cfe3bfab7d48
6994056: G1: when GC locker is active, extend the Eden instead of allocating into the old gen
tonyp
parents:
7397
diff
changeset
|
1640 |
"is active (as a percentage)") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1641 |
range(0, 100) \ |
7416
cfe3bfab7d48
6994056: G1: when GC locker is active, extend the Eden instead of allocating into the old gen
tonyp
parents:
7397
diff
changeset
|
1642 |
\ |
29078 | 1643 |
diagnostic(uintx, GCLockerRetryAllocationCount, 2, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1644 |
"Number of times to retry allocations when " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1645 |
"blocked by the GC locker") \ |
16604
800a65bfe347
7014552: gc/lock/jni/jnilockXXX works too slow on 1-processor machine
mgerdin
parents:
15922
diff
changeset
|
1646 |
\ |
1 | 1647 |
develop(bool, UseCMSAdaptiveFreeLists, true, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1648 |
"Use adaptive free lists in the CMS generation") \ |
1 | 1649 |
\ |
1650 |
develop(bool, UseAsyncConcMarkSweepGC, true, \ |
|
1651 |
"Use Asynchronous Concurrent Mark-Sweep GC in the old generation")\ |
|
1652 |
\ |
|
1653 |
product(bool, UseCMSBestFit, true, \ |
|
1654 |
"Use CMS best fit allocation strategy") \ |
|
1655 |
\ |
|
1656 |
product(bool, UseParNewGC, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1657 |
"Use parallel threads in the new generation") \ |
1 | 1658 |
\ |
27154
ccf8883e01be
8027428: Different conditions for printing taskqueue statistics for parallel gc, parNew and G1
jwilhelm
parents:
26919
diff
changeset
|
1659 |
product(bool, PrintTaskqueue, false, \ |
ccf8883e01be
8027428: Different conditions for printing taskqueue statistics for parallel gc, parNew and G1
jwilhelm
parents:
26919
diff
changeset
|
1660 |
"Print taskqueue statistics for parallel collectors") \ |
ccf8883e01be
8027428: Different conditions for printing taskqueue statistics for parallel gc, parNew and G1
jwilhelm
parents:
26919
diff
changeset
|
1661 |
\ |
ccf8883e01be
8027428: Different conditions for printing taskqueue statistics for parallel gc, parNew and G1
jwilhelm
parents:
26919
diff
changeset
|
1662 |
product(bool, PrintTerminationStats, false, \ |
ccf8883e01be
8027428: Different conditions for printing taskqueue statistics for parallel gc, parNew and G1
jwilhelm
parents:
26919
diff
changeset
|
1663 |
"Print termination statistics for parallel collectors") \ |
1 | 1664 |
\ |
17392
2f967c0e4246
6843347: Boundary values in some public GC options cause crashes
tschatzl
parents:
17322
diff
changeset
|
1665 |
product(uintx, ParallelGCBufferWastePct, 10, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1666 |
"Wasted fraction of parallel allocation buffer") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1667 |
range(0, 100) \ |
1 | 1668 |
\ |
17392
2f967c0e4246
6843347: Boundary values in some public GC options cause crashes
tschatzl
parents:
17322
diff
changeset
|
1669 |
product(uintx, TargetPLABWastePct, 10, \ |
2f967c0e4246
6843347: Boundary values in some public GC options cause crashes
tschatzl
parents:
17322
diff
changeset
|
1670 |
"Target wasted space in last buffer as percent of overall " \ |
2f967c0e4246
6843347: Boundary values in some public GC options cause crashes
tschatzl
parents:
17322
diff
changeset
|
1671 |
"allocation") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1672 |
range(1, 100) \ |
1 | 1673 |
\ |
1674 |
product(uintx, PLABWeight, 75, \ |
|
22775 | 1675 |
"Percentage (0-100) used to weight the current sample when " \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1676 |
"computing exponentially decaying average for ResizePLAB") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1677 |
range(0, 100) \ |
1 | 1678 |
\ |
1679 |
product(bool, ResizePLAB, true, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1680 |
"Dynamically resize (survivor space) promotion LAB's") \ |
1 | 1681 |
\ |
1682 |
product(bool, PrintPLAB, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1683 |
"Print (survivor space) promotion LAB's sizing decisions") \ |
1 | 1684 |
\ |
1685 |
product(intx, ParGCArrayScanChunk, 50, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1686 |
"Scan a subset of object array and push remainder, if array is " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1687 |
"bigger than this") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1688 |
range(1, max_intx) \ |
1 | 1689 |
\ |
2362
5e1bfddf919e
6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents:
2346
diff
changeset
|
1690 |
product(bool, ParGCUseLocalOverflow, false, \ |
5e1bfddf919e
6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents:
2346
diff
changeset
|
1691 |
"Instead of a global overflow list, use local overflow stacks") \ |
5e1bfddf919e
6824570: ParNew: Fix memory leak introduced in 6819891
ysr
parents:
2346
diff
changeset
|
1692 |
\ |
2346
3aa355016e90
6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents:
2259
diff
changeset
|
1693 |
product(bool, ParGCTrimOverflow, true, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1694 |
"Eagerly trim the local overflow lists " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1695 |
"(when ParGCUseLocalOverflow)") \ |
2346
3aa355016e90
6819891: ParNew: Fix work queue overflow code to deal correctly with +UseCompressedOops
ysr
parents:
2259
diff
changeset
|
1696 |
\ |
1910 | 1697 |
notproduct(bool, ParGCWorkQueueOverflowALot, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1698 |
"Simulate work queue overflow in ParNew") \ |
1910 | 1699 |
\ |
1700 |
notproduct(uintx, ParGCWorkQueueOverflowInterval, 1000, \ |
|
4434 | 1701 |
"An `interval' counter that determines how frequently " \ |
1702 |
"we simulate overflow; a smaller number increases frequency") \ |
|
1910 | 1703 |
\ |
1704 |
product(uintx, ParGCDesiredObjsFromOverflowList, 20, \ |
|
1 | 1705 |
"The desired number of objects to claim from the overflow list") \ |
1706 |
\ |
|
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11201
diff
changeset
|
1707 |
diagnostic(uintx, ParGCStridesPerThread, 2, \ |
9624
c3657c3324ee
6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents:
9426
diff
changeset
|
1708 |
"The number of strides per worker thread that we divide up the " \ |
c3657c3324ee
6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents:
9426
diff
changeset
|
1709 |
"card table scanning work into") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1710 |
range(1, max_uintx) \ |
9624
c3657c3324ee
6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents:
9426
diff
changeset
|
1711 |
\ |
c3657c3324ee
6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents:
9426
diff
changeset
|
1712 |
diagnostic(intx, ParGCCardsPerStrideChunk, 256, \ |
c3657c3324ee
6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents:
9426
diff
changeset
|
1713 |
"The number of cards in each chunk of the parallel chunks used " \ |
c3657c3324ee
6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents:
9426
diff
changeset
|
1714 |
"during card table scanning") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1715 |
range(1, max_intx) \ |
9624
c3657c3324ee
6883834: ParNew: assert(!_g->to()->is_in_reserved(obj),"Scanning field twice?") with LargeObjects tests
ysr
parents:
9426
diff
changeset
|
1716 |
\ |
4574
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1717 |
product(uintx, OldPLABWeight, 50, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1718 |
"Percentage (0-100) used to weight the current sample when " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1719 |
"computing exponentially decaying average for resizing " \ |
28206 | 1720 |
"OldPLABSize") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1721 |
range(0, 100) \ |
4574
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1722 |
\ |
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1723 |
product(bool, ResizeOldPLAB, true, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1724 |
"Dynamically resize (old gen) promotion LAB's") \ |
4574
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1725 |
\ |
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1726 |
product(bool, PrintOldPLAB, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1727 |
"Print (old gen) promotion LAB's sizing decisions") \ |
4574
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1728 |
\ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1729 |
product(size_t, CMSOldPLABMax, 1024, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1730 |
"Maximum size of CMS gen promotion LAB caches per worker " \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1731 |
"per block size") \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1732 |
range(1, max_uintx) \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1733 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
1734 |
product(size_t, CMSOldPLABMin, 16, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1735 |
"Minimum size of CMS gen promotion LAB caches per worker " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1736 |
"per block size") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1737 |
range(1, max_uintx) \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1738 |
constraint(CMSOldPLABMinConstraintFunc) \ |
4574
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1739 |
\ |
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1740 |
product(uintx, CMSOldPLABNumRefills, 4, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1741 |
"Nominal number of refills of CMS gen promotion LAB cache " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1742 |
"per worker per block size") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1743 |
range(1, max_uintx) \ |
4574
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1744 |
\ |
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1745 |
product(bool, CMSOldPLABResizeQuicker, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1746 |
"React on-the-fly during a scavenge to a sudden " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1747 |
"change in block demand rate") \ |
4574
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1748 |
\ |
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1749 |
product(uintx, CMSOldPLABToleranceFactor, 4, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1750 |
"The tolerance of the phase-change detector for on-the-fly " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1751 |
"PLAB resizing during a scavenge") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1752 |
range(1, max_uintx) \ |
4574
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1753 |
\ |
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1754 |
product(uintx, CMSOldPLABReactivityFactor, 2, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1755 |
"The gain in the feedback loop for on-the-fly PLAB resizing " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1756 |
"during a scavenge") \ |
4574
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1757 |
\ |
1 | 1758 |
product(bool, AlwaysPreTouch, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1759 |
"Force all freshly committed pages to be pre-touched") \ |
1 | 1760 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
1761 |
product_pd(size_t, CMSYoungGenPerWorker, \ |
8687
264727307495
6896099: Integrate CMS heap ergo with default heap sizing ergo
ysr
parents:
8681
diff
changeset
|
1762 |
"The maximum size of young gen chosen by default per GC worker " \ |
4434 | 1763 |
"thread available") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1764 |
range(1, max_uintx) \ |
1 | 1765 |
\ |
1766 |
product(uintx, CMSIncrementalSafetyFactor, 10, \ |
|
4434 | 1767 |
"Percentage (0-100) used to add conservatism when computing the " \ |
1768 |
"duty cycle") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1769 |
range(0, 100) \ |
1 | 1770 |
\ |
4574
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1771 |
product(uintx, CMSExpAvgFactor, 50, \ |
22775 | 1772 |
"Percentage (0-100) used to weight the current sample when " \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1773 |
"computing exponential averages for CMS statistics") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1774 |
range(0, 100) \ |
4574
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1775 |
\ |
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1776 |
product(uintx, CMS_FLSWeight, 75, \ |
22775 | 1777 |
"Percentage (0-100) used to weight the current sample when " \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1778 |
"computing exponentially decaying averages for CMS FLS " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1779 |
"statistics") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1780 |
range(0, 100) \ |
4574
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1781 |
\ |
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1782 |
product(uintx, CMS_FLSPadding, 1, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1783 |
"The multiple of deviation from mean to use for buffering " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1784 |
"against volatility in free list demand") \ |
1 | 1785 |
\ |
1786 |
product(uintx, FLSCoalescePolicy, 2, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1787 |
"CMS: aggressiveness level for coalescing, increasing " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1788 |
"from 0 to 4") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1789 |
range(0, 4) \ |
1 | 1790 |
\ |
4574
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1791 |
product(bool, FLSAlwaysCoalesceLarge, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1792 |
"CMS: larger free blocks are always available for coalescing") \ |
4574
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1793 |
\ |
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1794 |
product(double, FLSLargestBlockCoalesceProximity, 0.99, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1795 |
"CMS: the smaller the percentage the greater the coalescing " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1796 |
"force") \ |
4574
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1797 |
\ |
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1798 |
product(double, CMSSmallCoalSurplusPercent, 1.05, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1799 |
"CMS: the factor by which to inflate estimated demand of small " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1800 |
"block sizes to prevent coalescing with an adjoining block") \ |
4574
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1801 |
\ |
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1802 |
product(double, CMSLargeCoalSurplusPercent, 0.95, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1803 |
"CMS: the factor by which to inflate estimated demand of large " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1804 |
"block sizes to prevent coalescing with an adjoining block") \ |
4574
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1805 |
\ |
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1806 |
product(double, CMSSmallSplitSurplusPercent, 1.10, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1807 |
"CMS: the factor by which to inflate estimated demand of small " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1808 |
"block sizes to prevent splitting to supply demand for smaller " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1809 |
"blocks") \ |
4574
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1810 |
\ |
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1811 |
product(double, CMSLargeSplitSurplusPercent, 1.00, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1812 |
"CMS: the factor by which to inflate estimated demand of large " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1813 |
"block sizes to prevent splitting to supply demand for smaller " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1814 |
"blocks") \ |
4574
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1815 |
\ |
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1816 |
product(bool, CMSExtrapolateSweep, false, \ |
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1817 |
"CMS: cushion for block demand during sweep") \ |
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1818 |
\ |
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1819 |
product(uintx, CMS_SweepWeight, 75, \ |
4434 | 1820 |
"Percentage (0-100) used to weight the current sample when " \ |
1821 |
"computing exponentially decaying average for inter-sweep " \ |
|
1822 |
"duration") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1823 |
range(0, 100) \ |
1 | 1824 |
\ |
4574
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1825 |
product(uintx, CMS_SweepPadding, 1, \ |
4434 | 1826 |
"The multiple of deviation from mean to use for buffering " \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1827 |
"against volatility in inter-sweep duration") \ |
1 | 1828 |
\ |
1829 |
product(uintx, CMS_SweepTimerThresholdMillis, 10, \ |
|
1830 |
"Skip block flux-rate sampling for an epoch unless inter-sweep " \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1831 |
"duration exceeds this threshold in milliseconds") \ |
1 | 1832 |
\ |
15094
80724d2b6f25
8000325: Change default for CMSClassUnloadingEnabled to true
jmasa
parents:
15088
diff
changeset
|
1833 |
product(bool, CMSClassUnloadingEnabled, true, \ |
1 | 1834 |
"Whether class unloading enabled when using CMS GC") \ |
1835 |
\ |
|
341
6578aad59716
6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents:
188
diff
changeset
|
1836 |
product(uintx, CMSClassUnloadingMaxInterval, 0, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1837 |
"When CMS class unloading is enabled, the maximum CMS cycle " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1838 |
"count for which classes may not be unloaded") \ |
341
6578aad59716
6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents:
188
diff
changeset
|
1839 |
\ |
1 | 1840 |
develop(intx, CMSDictionaryChoice, 0, \ |
1841 |
"Use BinaryTreeDictionary as default in the CMS generation") \ |
|
1842 |
\ |
|
1843 |
product(uintx, CMSIndexedFreeListReplenish, 4, \ |
|
13925 | 1844 |
"Replenish an indexed free list with this number of chunks") \ |
1 | 1845 |
\ |
4574
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1846 |
product(bool, CMSReplenishIntermediate, true, \ |
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1847 |
"Replenish all intermediate free-list caches") \ |
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1848 |
\ |
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1849 |
product(bool, CMSSplitIndexedFreeListBlocks, true, \ |
6447
32cc5cad7fa6
6983930: CMS: Various small cleanups ca September 2010
ysr
parents:
6419
diff
changeset
|
1850 |
"When satisfying batched demand, split blocks from the " \ |
4574
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1851 |
"IndexedFreeList whose size is a multiple of requested size") \ |
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
1852 |
\ |
1 | 1853 |
product(bool, CMSLoopWarn, false, \ |
1854 |
"Warn in case of excessive CMS looping") \ |
|
1855 |
\ |
|
1856 |
develop(bool, CMSOverflowEarlyRestoration, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1857 |
"Restore preserved marks early") \ |
1 | 1858 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
1859 |
product(size_t, MarkStackSize, NOT_LP64(32*K) LP64_ONLY(4*M), \ |
5035 | 1860 |
"Size of marking stack") \ |
1861 |
\ |
|
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
1862 |
product(size_t, MarkStackSizeMax, NOT_LP64(4*M) LP64_ONLY(512*M), \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1863 |
"Maximum size of marking stack") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1864 |
range(1, (max_jint - 1)) \ |
1 | 1865 |
\ |
1866 |
notproduct(bool, CMSMarkStackOverflowALot, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1867 |
"Simulate frequent marking stack / work queue overflow") \ |
1 | 1868 |
\ |
1910 | 1869 |
notproduct(uintx, CMSMarkStackOverflowInterval, 1000, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1870 |
"An \"interval\" counter that determines how frequently " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1871 |
"to simulate overflow; a smaller number increases frequency") \ |
1 | 1872 |
\ |
1873 |
product(uintx, CMSMaxAbortablePrecleanLoops, 0, \ |
|
1874 |
"Maximum number of abortable preclean iterations, if > 0") \ |
|
1875 |
\ |
|
1876 |
product(intx, CMSMaxAbortablePrecleanTime, 5000, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1877 |
"Maximum time in abortable preclean (in milliseconds)") \ |
1 | 1878 |
\ |
1879 |
product(uintx, CMSAbortablePrecleanMinWorkPerIteration, 100, \ |
|
1880 |
"Nominal minimum work per abortable preclean iteration") \ |
|
1881 |
\ |
|
6984
c6718f921eb6
6992998: CMSWaitDuration=0 causes hangs with +ExplicitGCInvokesConcurrent
ysr
parents:
6769
diff
changeset
|
1882 |
manageable(intx, CMSAbortablePrecleanWaitMillis, 100, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1883 |
"Time that we sleep between iterations when not given " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1884 |
"enough work per iteration") \ |
1 | 1885 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
1886 |
product(size_t, CMSRescanMultiple, 32, \ |
1 | 1887 |
"Size (in cards) of CMS parallel rescan task") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1888 |
range(1, max_uintx) \ |
1 | 1889 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
1890 |
product(size_t, CMSConcMarkMultiple, 32, \ |
1 | 1891 |
"Size (in cards) of CMS concurrent MT marking task") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1892 |
range(1, max_uintx) \ |
1 | 1893 |
\ |
1894 |
product(bool, CMSAbortSemantics, false, \ |
|
1895 |
"Whether abort-on-overflow semantics is implemented") \ |
|
1896 |
\ |
|
18996 | 1897 |
product(bool, CMSParallelInitialMarkEnabled, true, \ |
1898 |
"Use the parallel initial mark.") \ |
|
1899 |
\ |
|
1 | 1900 |
product(bool, CMSParallelRemarkEnabled, true, \ |
1901 |
"Whether parallel remark enabled (only if ParNewGC)") \ |
|
1902 |
\ |
|
1903 |
product(bool, CMSParallelSurvivorRemarkEnabled, true, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1904 |
"Whether parallel remark of survivor space " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1905 |
"enabled (effective only if CMSParallelRemarkEnabled)") \ |
1 | 1906 |
\ |
1907 |
product(bool, CMSPLABRecordAlways, true, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1908 |
"Always record survivor space PLAB boundaries (effective only " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1909 |
"if CMSParallelSurvivorRemarkEnabled)") \ |
1 | 1910 |
\ |
18994
d32a17b7502c
6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents:
18703
diff
changeset
|
1911 |
product(bool, CMSEdenChunksRecordAlways, true, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1912 |
"Always record eden chunks used for the parallel initial mark " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1913 |
"or remark of eden") \ |
18994
d32a17b7502c
6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents:
18703
diff
changeset
|
1914 |
\ |
d32a17b7502c
6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents:
18703
diff
changeset
|
1915 |
product(bool, CMSPrintEdenSurvivorChunks, false, \ |
d32a17b7502c
6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents:
18703
diff
changeset
|
1916 |
"Print the eden and the survivor chunks used for the parallel " \ |
d32a17b7502c
6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents:
18703
diff
changeset
|
1917 |
"initial mark or remark of the eden/survivor spaces") \ |
d32a17b7502c
6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses
jmasa
parents:
18703
diff
changeset
|
1918 |
\ |
1 | 1919 |
product(bool, CMSConcurrentMTEnabled, true, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1920 |
"Whether multi-threaded concurrent work enabled " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1921 |
"(effective only if ParNewGC)") \ |
1 | 1922 |
\ |
1923 |
product(bool, CMSPrecleaningEnabled, true, \ |
|
1924 |
"Whether concurrent precleaning enabled") \ |
|
1925 |
\ |
|
1926 |
product(uintx, CMSPrecleanIter, 3, \ |
|
1927 |
"Maximum number of precleaning iteration passes") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1928 |
range(0, 9) \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1929 |
\ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1930 |
product(uintx, CMSPrecleanDenominator, 3, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1931 |
"CMSPrecleanNumerator:CMSPrecleanDenominator yields convergence " \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1932 |
"ratio") \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1933 |
range(1, max_uintx) \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1934 |
constraint(CMSPrecleanDenominatorConstraintFunc) \ |
1 | 1935 |
\ |
1936 |
product(uintx, CMSPrecleanNumerator, 2, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1937 |
"CMSPrecleanNumerator:CMSPrecleanDenominator yields convergence " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1938 |
"ratio") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1939 |
range(0, max_uintx-1) \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1940 |
constraint(CMSPrecleanNumeratorConstraintFunc) \ |
1 | 1941 |
\ |
1605
6b43d186eb8d
6722113: CMS: Incorrect overflow handling during precleaning of Reference lists
ysr
parents:
1562
diff
changeset
|
1942 |
product(bool, CMSPrecleanRefLists1, true, \ |
1 | 1943 |
"Preclean ref lists during (initial) preclean phase") \ |
1944 |
\ |
|
1945 |
product(bool, CMSPrecleanRefLists2, false, \ |
|
1946 |
"Preclean ref lists during abortable preclean phase") \ |
|
1947 |
\ |
|
1948 |
product(bool, CMSPrecleanSurvivors1, false, \ |
|
1949 |
"Preclean survivors during (initial) preclean phase") \ |
|
1950 |
\ |
|
1951 |
product(bool, CMSPrecleanSurvivors2, true, \ |
|
1952 |
"Preclean survivors during abortable preclean phase") \ |
|
1953 |
\ |
|
1954 |
product(uintx, CMSPrecleanThreshold, 1000, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1955 |
"Do not iterate again if number of dirty cards is less than this")\ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1956 |
range(100, max_uintx) \ |
1 | 1957 |
\ |
1958 |
product(bool, CMSCleanOnEnter, true, \ |
|
1959 |
"Clean-on-enter optimization for reducing number of dirty cards") \ |
|
1960 |
\ |
|
1961 |
product(uintx, CMSRemarkVerifyVariant, 1, \ |
|
1962 |
"Choose variant (1,2) of verification following remark") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1963 |
range(1, 2) \ |
1 | 1964 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
1965 |
product(size_t, CMSScheduleRemarkEdenSizeThreshold, 2*M, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1966 |
"If Eden size is below this, do not try to schedule remark") \ |
1 | 1967 |
\ |
1968 |
product(uintx, CMSScheduleRemarkEdenPenetration, 50, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1969 |
"The Eden occupancy percentage (0-100) at which " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1970 |
"to try and schedule remark pause") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1971 |
range(0, 100) \ |
1 | 1972 |
\ |
1973 |
product(uintx, CMSScheduleRemarkSamplingRatio, 5, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1974 |
"Start sampling eden top at least before young gen " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1975 |
"occupancy reaches 1/<ratio> of the size at which " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
1976 |
"we plan to schedule remark") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1977 |
range(1, max_uintx) \ |
1 | 1978 |
\ |
1979 |
product(uintx, CMSSamplingGrain, 16*K, \ |
|
1980 |
"The minimum distance between eden samples for CMS (see above)") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
1981 |
range(1, max_uintx) \ |
1 | 1982 |
\ |
1983 |
product(bool, CMSScavengeBeforeRemark, false, \ |
|
1984 |
"Attempt scavenge before the CMS remark step") \ |
|
1985 |
\ |
|
1986 |
develop(bool, CMSTraceSweeper, false, \ |
|
1987 |
"Trace some actions of the CMS sweeper") \ |
|
1988 |
\ |
|
1989 |
product(uintx, CMSWorkQueueDrainThreshold, 10, \ |
|
1990 |
"Don't drain below this size per parallel worker/thief") \ |
|
1991 |
\ |
|
6984
c6718f921eb6
6992998: CMSWaitDuration=0 causes hangs with +ExplicitGCInvokesConcurrent
ysr
parents:
6769
diff
changeset
|
1992 |
manageable(intx, CMSWaitDuration, 2000, \ |
1 | 1993 |
"Time in milliseconds that CMS thread waits for young GC") \ |
1994 |
\ |
|
15859
b8d7620fb179
7189971: Implement CMSWaitDuration for non-incremental mode of CMS
jmasa
parents:
15610
diff
changeset
|
1995 |
develop(uintx, CMSCheckInterval, 1000, \ |
b8d7620fb179
7189971: Implement CMSWaitDuration for non-incremental mode of CMS
jmasa
parents:
15610
diff
changeset
|
1996 |
"Interval in milliseconds that CMS thread checks if it " \ |
b8d7620fb179
7189971: Implement CMSWaitDuration for non-incremental mode of CMS
jmasa
parents:
15610
diff
changeset
|
1997 |
"should start a collection cycle") \ |
b8d7620fb179
7189971: Implement CMSWaitDuration for non-incremental mode of CMS
jmasa
parents:
15610
diff
changeset
|
1998 |
\ |
1 | 1999 |
product(bool, CMSYield, true, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2000 |
"Yield between steps of CMS") \ |
1 | 2001 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
2002 |
product(size_t, CMSBitMapYieldQuantum, 10*M, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2003 |
"Bitmap operations should process at most this many bits " \ |
1 | 2004 |
"between yields") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2005 |
range(1, max_uintx) \ |
1 | 2006 |
\ |
4574
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
2007 |
product(bool, CMSDumpAtPromotionFailure, false, \ |
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
2008 |
"Dump useful information about the state of the CMS old " \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2009 |
"generation upon a promotion failure") \ |
4574
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
2010 |
\ |
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
2011 |
product(bool, CMSPrintChunksInDump, false, \ |
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
2012 |
"In a dump enabled by CMSDumpAtPromotionFailure, include " \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2013 |
"more detailed information about the free chunks") \ |
4574
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
2014 |
\ |
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
2015 |
product(bool, CMSPrintObjectsInDump, false, \ |
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
2016 |
"In a dump enabled by CMSDumpAtPromotionFailure, include " \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2017 |
"more detailed information about the allocated objects") \ |
4574
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
2018 |
\ |
1 | 2019 |
diagnostic(bool, FLSVerifyAllHeapReferences, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2020 |
"Verify that all references across the FLS boundary " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2021 |
"are to valid objects") \ |
1 | 2022 |
\ |
2023 |
diagnostic(bool, FLSVerifyLists, false, \ |
|
2024 |
"Do lots of (expensive) FreeListSpace verification") \ |
|
2025 |
\ |
|
2026 |
diagnostic(bool, FLSVerifyIndexTable, false, \ |
|
2027 |
"Do lots of (expensive) FLS index table verification") \ |
|
2028 |
\ |
|
2029 |
develop(bool, FLSVerifyDictionary, false, \ |
|
2030 |
"Do lots of (expensive) FLS dictionary verification") \ |
|
2031 |
\ |
|
2032 |
develop(bool, VerifyBlockOffsetArray, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2033 |
"Do (expensive) block offset array verification") \ |
1 | 2034 |
\ |
9422
e3c824172b61
7040068: CMS: Possibly unsafe initialization of BlockOffsetArrayUseUnallocatedBlock
brutisso
parents:
9182
diff
changeset
|
2035 |
diagnostic(bool, BlockOffsetArrayUseUnallocatedBlock, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2036 |
"Maintain _unallocated_block in BlockOffsetArray " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2037 |
"(currently applicable only to CMS collector)") \ |
1 | 2038 |
\ |
2039 |
develop(bool, TraceCMSState, false, \ |
|
2040 |
"Trace the state of the CMS collection") \ |
|
2041 |
\ |
|
2042 |
product(intx, RefDiscoveryPolicy, 0, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2043 |
"Select type of reference discovery policy: " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2044 |
"reference-based(0) or referent-based(1)") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2045 |
range(ReferenceProcessor::DiscoveryPolicyMin, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2046 |
ReferenceProcessor::DiscoveryPolicyMax) \ |
1 | 2047 |
\ |
2048 |
product(bool, ParallelRefProcEnabled, false, \ |
|
2049 |
"Enable parallel reference processing whenever possible") \ |
|
2050 |
\ |
|
2051 |
product(bool, ParallelRefProcBalancingEnabled, true, \ |
|
2052 |
"Enable balancing of reference processing queues") \ |
|
2053 |
\ |
|
15605 | 2054 |
product(uintx, CMSTriggerRatio, 80, \ |
1 | 2055 |
"Percentage of MinHeapFreeRatio in CMS generation that is " \ |
4434 | 2056 |
"allocated before a CMS collection cycle commences") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2057 |
range(0, 100) \ |
1 | 2058 |
\ |
341
6578aad59716
6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents:
188
diff
changeset
|
2059 |
product(uintx, CMSBootstrapOccupancy, 50, \ |
1 | 2060 |
"Percentage CMS generation occupancy at which to " \ |
4434 | 2061 |
"initiate CMS collection for bootstrapping collection stats") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2062 |
range(0, 100) \ |
1 | 2063 |
\ |
2064 |
product(intx, CMSInitiatingOccupancyFraction, -1, \ |
|
2065 |
"Percentage CMS generation occupancy to start a CMS collection " \ |
|
4434 | 2066 |
"cycle. A negative value means that CMSTriggerRatio is used") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2067 |
range(min_intx, 100) \ |
341
6578aad59716
6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents:
188
diff
changeset
|
2068 |
\ |
5034
a1cec6310394
6928073: G1: use existing command line parameters for marking cycle initiation
tonyp
parents:
4759
diff
changeset
|
2069 |
product(uintx, InitiatingHeapOccupancyPercent, 45, \ |
a1cec6310394
6928073: G1: use existing command line parameters for marking cycle initiation
tonyp
parents:
4759
diff
changeset
|
2070 |
"Percentage of the (entire) heap occupancy to start a " \ |
15604
0209977cd9c4
7052429: G1: Avoid unnecessary scanning of humongous regions during concurrent marking
johnc
parents:
15221
diff
changeset
|
2071 |
"concurrent GC cycle. It is used by GCs that trigger a " \ |
5034
a1cec6310394
6928073: G1: use existing command line parameters for marking cycle initiation
tonyp
parents:
4759
diff
changeset
|
2072 |
"concurrent GC cycle based on the occupancy of the entire heap, " \ |
a1cec6310394
6928073: G1: use existing command line parameters for marking cycle initiation
tonyp
parents:
4759
diff
changeset
|
2073 |
"not just one of the generations (e.g., G1). A value of 0 " \ |
a1cec6310394
6928073: G1: use existing command line parameters for marking cycle initiation
tonyp
parents:
4759
diff
changeset
|
2074 |
"denotes 'do constant GC cycles'.") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2075 |
range(0, 100) \ |
5034
a1cec6310394
6928073: G1: use existing command line parameters for marking cycle initiation
tonyp
parents:
4759
diff
changeset
|
2076 |
\ |
24110
aa442e0427f5
8038265: CMS: enable time based triggering of concurrent cycles
brutisso
parents:
23534
diff
changeset
|
2077 |
manageable(intx, CMSTriggerInterval, -1, \ |
aa442e0427f5
8038265: CMS: enable time based triggering of concurrent cycles
brutisso
parents:
23534
diff
changeset
|
2078 |
"Commence a CMS collection cycle (at least) every so many " \ |
aa442e0427f5
8038265: CMS: enable time based triggering of concurrent cycles
brutisso
parents:
23534
diff
changeset
|
2079 |
"milliseconds (0 permanently, -1 disabled)") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2080 |
range(-1, max_intx) \ |
24110
aa442e0427f5
8038265: CMS: enable time based triggering of concurrent cycles
brutisso
parents:
23534
diff
changeset
|
2081 |
\ |
1 | 2082 |
product(bool, UseCMSInitiatingOccupancyOnly, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2083 |
"Only use occupancy as a criterion for starting a CMS collection")\ |
1 | 2084 |
\ |
17392
2f967c0e4246
6843347: Boundary values in some public GC options cause crashes
tschatzl
parents:
17322
diff
changeset
|
2085 |
product(uintx, CMSIsTooFullPercentage, 98, \ |
4434 | 2086 |
"An absolute ceiling above which CMS will always consider the " \ |
15101
58d43bf04c45
8005076: Creating a CDS archive with one alignment and running another causes a crash.
hseigel
parents:
14835
diff
changeset
|
2087 |
"unloading of classes when class unloading is enabled") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2088 |
range(0, 100) \ |
341
6578aad59716
6634032: CMS: Need CMSInitiatingPermOccupancyFraction for perm, divorcing from CMSInitiatingOccupancyFraction
ysr
parents:
188
diff
changeset
|
2089 |
\ |
1 | 2090 |
develop(bool, CMSTestInFreeList, false, \ |
2091 |
"Check if the coalesced range is already in the " \ |
|
4434 | 2092 |
"free lists as claimed") \ |
1 | 2093 |
\ |
2094 |
notproduct(bool, CMSVerifyReturnedBytes, false, \ |
|
2095 |
"Check that all the garbage collected was returned to the " \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2096 |
"free lists") \ |
1 | 2097 |
\ |
2098 |
notproduct(bool, ScavengeALot, false, \ |
|
2099 |
"Force scavenge at every Nth exit from the runtime system " \ |
|
2100 |
"(N=ScavengeALotInterval)") \ |
|
2101 |
\ |
|
2102 |
develop(bool, FullGCALot, false, \ |
|
2103 |
"Force full gc at every Nth exit from the runtime system " \ |
|
2104 |
"(N=FullGCALotInterval)") \ |
|
2105 |
\ |
|
2106 |
notproduct(bool, GCALotAtAllSafepoints, false, \ |
|
2107 |
"Enforce ScavengeALot/GCALot at all potential safepoints") \ |
|
2108 |
\ |
|
4574
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
2109 |
product(bool, PrintPromotionFailure, false, \ |
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
2110 |
"Print additional diagnostic information following " \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2111 |
"promotion failure") \ |
4574
b2d5b0975515
6631166: CMS: better heuristics when combatting fragmentation
ysr
parents:
4434
diff
changeset
|
2112 |
\ |
1 | 2113 |
notproduct(bool, PromotionFailureALot, false, \ |
2114 |
"Use promotion failure handling on every youngest generation " \ |
|
2115 |
"collection") \ |
|
2116 |
\ |
|
2117 |
develop(uintx, PromotionFailureALotCount, 1000, \ |
|
30275
41fef3a62cc8
8074546: Rename and clean up the ParGCAllocBuffer class
jprovino
parents:
30274
diff
changeset
|
2118 |
"Number of promotion failures occurring at PLAB " \ |
1 | 2119 |
"refill attempts (ParNew) or promotion attempts " \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2120 |
"(other young collectors)") \ |
1 | 2121 |
\ |
2122 |
develop(uintx, PromotionFailureALotInterval, 5, \ |
|
22775 | 2123 |
"Total collections between promotion failures a lot") \ |
1 | 2124 |
\ |
17392
2f967c0e4246
6843347: Boundary values in some public GC options cause crashes
tschatzl
parents:
17322
diff
changeset
|
2125 |
experimental(uintx, WorkStealingSleepMillis, 1, \ |
1 | 2126 |
"Sleep time when sleep is used for yields") \ |
2127 |
\ |
|
8925 | 2128 |
experimental(uintx, WorkStealingYieldsBeforeSleep, 5000, \ |
22775 | 2129 |
"Number of yields before a sleep is done during work stealing") \ |
1 | 2130 |
\ |
6763
711b8a44c4dd
6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents:
6762
diff
changeset
|
2131 |
experimental(uintx, WorkStealingHardSpins, 4096, \ |
2010
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
2132 |
"Number of iterations in a spin loop between checks on " \ |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
2133 |
"time out of hard spin") \ |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
2134 |
\ |
6763
711b8a44c4dd
6692906: CMS: parallel concurrent marking may be prone to hanging or stalling mutators for periods of time
ysr
parents:
6762
diff
changeset
|
2135 |
experimental(uintx, WorkStealingSpinToYieldRatio, 10, \ |
2010
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
2136 |
"Ratio of hard spins to calls to yield") \ |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
2005
diff
changeset
|
2137 |
\ |
5076
8b74a4b60b31
4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents:
5039
diff
changeset
|
2138 |
develop(uintx, ObjArrayMarkingStride, 512, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2139 |
"Number of object array elements to push onto the marking stack " \ |
5076
8b74a4b60b31
4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents:
5039
diff
changeset
|
2140 |
"before pushing a continuation entry") \ |
8b74a4b60b31
4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents:
5039
diff
changeset
|
2141 |
\ |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
2142 |
develop(bool, MetadataAllocationFailALot, false, \ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
2143 |
"Fail metadata allocations at intervals controlled by " \ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
2144 |
"MetadataAllocationFailALotInterval") \ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
2145 |
\ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
2146 |
develop(uintx, MetadataAllocationFailALotInterval, 1000, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2147 |
"Metadata allocation failure a lot interval") \ |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
2148 |
\ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
2149 |
develop(bool, TraceMetadataChunkAllocation, false, \ |
15101
58d43bf04c45
8005076: Creating a CDS archive with one alignment and running another causes a crash.
hseigel
parents:
14835
diff
changeset
|
2150 |
"Trace chunk metadata allocations") \ |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
2151 |
\ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
2152 |
product(bool, TraceMetadataHumongousAllocation, false, \ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
2153 |
"Trace humongous metadata allocations") \ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
2154 |
\ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
2155 |
develop(bool, TraceMetavirtualspaceAllocation, false, \ |
15101
58d43bf04c45
8005076: Creating a CDS archive with one alignment and running another causes a crash.
hseigel
parents:
14835
diff
changeset
|
2156 |
"Trace virtual space metadata allocations") \ |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
2157 |
\ |
10002 | 2158 |
notproduct(bool, ExecuteInternalVMTests, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2159 |
"Enable execution of internal VM tests") \ |
10002 | 2160 |
\ |
19546
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
19319
diff
changeset
|
2161 |
notproduct(bool, VerboseInternalVMTests, false, \ |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
19319
diff
changeset
|
2162 |
"Turn on logging for internal VM tests.") \ |
f6b7c9e96ea3
8007074: SIGSEGV at ParMarkBitMap::verify_clear()
stefank
parents:
19319
diff
changeset
|
2163 |
\ |
1 | 2164 |
product_pd(bool, UseTLAB, "Use thread-local object allocation") \ |
2165 |
\ |
|
2166 |
product_pd(bool, ResizeTLAB, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2167 |
"Dynamically resize TLAB size for threads") \ |
1 | 2168 |
\ |
2169 |
product(bool, ZeroTLAB, false, \ |
|
2170 |
"Zero out the newly created TLAB") \ |
|
2171 |
\ |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
389
diff
changeset
|
2172 |
product(bool, FastTLABRefill, true, \ |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
389
diff
changeset
|
2173 |
"Use fast TLAB refill code") \ |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
389
diff
changeset
|
2174 |
\ |
1 | 2175 |
product(bool, PrintTLAB, false, \ |
2176 |
"Print various TLAB related information") \ |
|
2177 |
\ |
|
2178 |
product(bool, TLABStats, true, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2179 |
"Provide more detailed and expensive TLAB statistics " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2180 |
"(with PrintTLAB)") \ |
1 | 2181 |
\ |
2182 |
product_pd(bool, NeverActAsServerClassMachine, \ |
|
2183 |
"Never act like a server-class machine") \ |
|
2184 |
\ |
|
2185 |
product(bool, AlwaysActAsServerClassMachine, false, \ |
|
2186 |
"Always act like a server-class machine") \ |
|
2187 |
\ |
|
4434 | 2188 |
product_pd(uint64_t, MaxRAM, \ |
2189 |
"Real memory size (in bytes) used to set maximum heap size") \ |
|
2190 |
\ |
|
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
2191 |
product(size_t, ErgoHeapSizeLimit, 0, \ |
4434 | 2192 |
"Maximum ergonomically set heap size (in bytes); zero means use " \ |
2193 |
"MaxRAM / MaxRAMFraction") \ |
|
2194 |
\ |
|
2195 |
product(uintx, MaxRAMFraction, 4, \ |
|
2196 |
"Maximum fraction (1/n) of real memory used for maximum heap " \ |
|
2197 |
"size") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2198 |
range(1, max_uintx) \ |
1 | 2199 |
\ |
2200 |
product(uintx, DefaultMaxRAMFraction, 4, \ |
|
4434 | 2201 |
"Maximum fraction (1/n) of real memory used for maximum heap " \ |
2202 |
"size; deprecated: to be renamed to MaxRAMFraction") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2203 |
range(1, max_uintx) \ |
4434 | 2204 |
\ |
2205 |
product(uintx, MinRAMFraction, 2, \ |
|
22775 | 2206 |
"Minimum fraction (1/n) of real memory used for maximum heap " \ |
4434 | 2207 |
"size on systems with small physical memory size") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2208 |
range(1, max_uintx) \ |
4434 | 2209 |
\ |
2210 |
product(uintx, InitialRAMFraction, 64, \ |
|
2211 |
"Fraction (1/n) of real memory used for initial heap size") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2212 |
range(1, max_uintx) \ |
1 | 2213 |
\ |
16605
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
16604
diff
changeset
|
2214 |
develop(uintx, MaxVirtMemFraction, 2, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2215 |
"Maximum fraction (1/n) of virtual memory used for ergonomically "\ |
16605
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
16604
diff
changeset
|
2216 |
"determining maximum heap size") \ |
ba13efd453bc
7112912: Message "Error occurred during initialization of VM" on boxes with lots of RAM
tschatzl
parents:
16604
diff
changeset
|
2217 |
\ |
1 | 2218 |
product(bool, UseAutoGCSelectPolicy, false, \ |
2219 |
"Use automatic collection selection policy") \ |
|
2220 |
\ |
|
2221 |
product(uintx, AutoGCSelectPauseMillis, 5000, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2222 |
"Automatic GC selection pause threshold in milliseconds") \ |
1 | 2223 |
\ |
2224 |
product(bool, UseAdaptiveSizePolicy, true, \ |
|
2225 |
"Use adaptive generation sizing policies") \ |
|
2226 |
\ |
|
2227 |
product(bool, UsePSAdaptiveSurvivorSizePolicy, true, \ |
|
2228 |
"Use adaptive survivor sizing policies") \ |
|
2229 |
\ |
|
2230 |
product(bool, UseAdaptiveGenerationSizePolicyAtMinorCollection, true, \ |
|
2231 |
"Use adaptive young-old sizing policies at minor collections") \ |
|
2232 |
\ |
|
2233 |
product(bool, UseAdaptiveGenerationSizePolicyAtMajorCollection, true, \ |
|
2234 |
"Use adaptive young-old sizing policies at major collections") \ |
|
2235 |
\ |
|
2236 |
product(bool, UseAdaptiveSizePolicyWithSystemGC, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2237 |
"Include statistics from System.gc() for adaptive size policy") \ |
1 | 2238 |
\ |
2239 |
product(bool, UseAdaptiveGCBoundary, false, \ |
|
2240 |
"Allow young-old boundary to move") \ |
|
2241 |
\ |
|
2242 |
develop(bool, TraceAdaptiveGCBoundary, false, \ |
|
2243 |
"Trace young-old boundary moves") \ |
|
2244 |
\ |
|
2245 |
develop(intx, PSAdaptiveSizePolicyResizeVirtualSpaceAlot, -1, \ |
|
2246 |
"Resize the virtual spaces of the young or old generations") \ |
|
2247 |
\ |
|
2248 |
product(uintx, AdaptiveSizeThroughPutPolicy, 0, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2249 |
"Policy for changing generation size for throughput goals") \ |
1 | 2250 |
\ |
2251 |
develop(bool, PSAdjustTenuredGenForMinorPause, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2252 |
"Adjust tenured generation to achieve a minor pause goal") \ |
1 | 2253 |
\ |
2254 |
develop(bool, PSAdjustYoungGenForMajorPause, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2255 |
"Adjust young generation to achieve a major pause goal") \ |
1 | 2256 |
\ |
2257 |
product(uintx, AdaptiveSizePolicyInitializingSteps, 20, \ |
|
2258 |
"Number of steps where heuristics is used before data is used") \ |
|
2259 |
\ |
|
2260 |
develop(uintx, AdaptiveSizePolicyReadyThreshold, 5, \ |
|
2261 |
"Number of collections before the adaptive sizing is started") \ |
|
2262 |
\ |
|
2263 |
product(uintx, AdaptiveSizePolicyOutputInterval, 0, \ |
|
17392
2f967c0e4246
6843347: Boundary values in some public GC options cause crashes
tschatzl
parents:
17322
diff
changeset
|
2264 |
"Collection interval for printing information; zero means never") \ |
1 | 2265 |
\ |
2266 |
product(bool, UseAdaptiveSizePolicyFootprintGoal, true, \ |
|
2267 |
"Use adaptive minimum footprint as a goal") \ |
|
2268 |
\ |
|
2269 |
product(uintx, AdaptiveSizePolicyWeight, 10, \ |
|
2270 |
"Weight given to exponential resizing, between 0 and 100") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2271 |
range(0, 100) \ |
1 | 2272 |
\ |
2273 |
product(uintx, AdaptiveTimeWeight, 25, \ |
|
2274 |
"Weight given to time in adaptive policy, between 0 and 100") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2275 |
range(0, 100) \ |
1 | 2276 |
\ |
2277 |
product(uintx, PausePadding, 1, \ |
|
2278 |
"How much buffer to keep for pause time") \ |
|
2279 |
\ |
|
2280 |
product(uintx, PromotedPadding, 3, \ |
|
2281 |
"How much buffer to keep for promotion failure") \ |
|
2282 |
\ |
|
2283 |
product(uintx, SurvivorPadding, 3, \ |
|
2284 |
"How much buffer to keep for survivor overflow") \ |
|
2285 |
\ |
|
2286 |
product(uintx, ThresholdTolerance, 10, \ |
|
2287 |
"Allowed collection cost difference between generations") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2288 |
range(0, 100) \ |
1 | 2289 |
\ |
2290 |
product(uintx, AdaptiveSizePolicyCollectionCostMargin, 50, \ |
|
4434 | 2291 |
"If collection costs are within margin, reduce both by full " \ |
2292 |
"delta") \ |
|
1 | 2293 |
\ |
2294 |
product(uintx, YoungGenerationSizeIncrement, 20, \ |
|
2295 |
"Adaptive size percentage change in young generation") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2296 |
range(0, 100) \ |
1 | 2297 |
\ |
2298 |
product(uintx, YoungGenerationSizeSupplement, 80, \ |
|
2299 |
"Supplement to YoungedGenerationSizeIncrement used at startup") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2300 |
range(0, 100) \ |
1 | 2301 |
\ |
2302 |
product(uintx, YoungGenerationSizeSupplementDecay, 8, \ |
|
2303 |
"Decay factor to YoungedGenerationSizeSupplement") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2304 |
range(1, max_uintx) \ |
1 | 2305 |
\ |
2306 |
product(uintx, TenuredGenerationSizeIncrement, 20, \ |
|
2307 |
"Adaptive size percentage change in tenured generation") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2308 |
range(0, 100) \ |
1 | 2309 |
\ |
2310 |
product(uintx, TenuredGenerationSizeSupplement, 80, \ |
|
2311 |
"Supplement to TenuredGenerationSizeIncrement used at startup") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2312 |
range(0, 100) \ |
1 | 2313 |
\ |
2314 |
product(uintx, TenuredGenerationSizeSupplementDecay, 2, \ |
|
2315 |
"Decay factor to TenuredGenerationSizeIncrement") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2316 |
range(1, max_uintx) \ |
1 | 2317 |
\ |
13925 | 2318 |
product(uintx, MaxGCPauseMillis, max_uintx, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2319 |
"Adaptive size policy maximum GC pause time goal in millisecond, "\ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2320 |
"or (G1 Only) the maximum GC time per MMU time slice") \ |
2741 | 2321 |
\ |
5890
5766abbf8789
6949307: G1: raise a vm error, do not core dump, if target pause time and target interval are inconsistent
tonyp
parents:
5712
diff
changeset
|
2322 |
product(uintx, GCPauseIntervalMillis, 0, \ |
2741 | 2323 |
"Time slice for MMU specification") \ |
1 | 2324 |
\ |
2325 |
product(uintx, MaxGCMinorPauseMillis, max_uintx, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2326 |
"Adaptive size policy maximum GC minor pause time goal " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2327 |
"in millisecond") \ |
1 | 2328 |
\ |
2329 |
product(uintx, GCTimeRatio, 99, \ |
|
2330 |
"Adaptive size policy application time to GC time ratio") \ |
|
2331 |
\ |
|
2332 |
product(uintx, AdaptiveSizeDecrementScaleFactor, 4, \ |
|
2333 |
"Adaptive size scale down factor for shrinking") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2334 |
range(1, max_uintx) \ |
1 | 2335 |
\ |
2336 |
product(bool, UseAdaptiveSizeDecayMajorGCCost, true, \ |
|
2337 |
"Adaptive size decays the major cost for long major intervals") \ |
|
2338 |
\ |
|
2339 |
product(uintx, AdaptiveSizeMajorGCDecayTimeScale, 10, \ |
|
2340 |
"Time scale over which major costs decay") \ |
|
2341 |
\ |
|
2342 |
product(uintx, MinSurvivorRatio, 3, \ |
|
2343 |
"Minimum ratio of young generation/survivor space size") \ |
|
2344 |
\ |
|
2345 |
product(uintx, InitialSurvivorRatio, 8, \ |
|
20726
24d58c45500d
8024632: Description of InitialSurvivorRatio flag in globals.hpp is incorrect
pliden
parents:
20720
diff
changeset
|
2346 |
"Initial ratio of young generation/survivor space size") \ |
1 | 2347 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
2348 |
product(size_t, BaseFootPrintEstimate, 256*M, \ |
1 | 2349 |
"Estimate of footprint other than Java Heap") \ |
2350 |
\ |
|
2351 |
product(bool, UseGCOverheadLimit, true, \ |
|
2352 |
"Use policy to limit of proportion of time spent in GC " \ |
|
2353 |
"before an OutOfMemory error is thrown") \ |
|
2354 |
\ |
|
2355 |
product(uintx, GCTimeLimit, 98, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2356 |
"Limit of the proportion of time spent in GC before " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2357 |
"an OutOfMemoryError is thrown (used with GCHeapFreeLimit)") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2358 |
range(0, 100) \ |
1 | 2359 |
\ |
2360 |
product(uintx, GCHeapFreeLimit, 2, \ |
|
2361 |
"Minimum percentage of free space after a full GC before an " \ |
|
2362 |
"OutOfMemoryError is thrown (used with GCTimeLimit)") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2363 |
range(0, 100) \ |
1 | 2364 |
\ |
2365 |
develop(uintx, AdaptiveSizePolicyGCTimeLimitThreshold, 5, \ |
|
2366 |
"Number of consecutive collections before gc time limit fires") \ |
|
2367 |
\ |
|
2368 |
product(bool, PrintAdaptiveSizePolicy, false, \ |
|
2369 |
"Print information about AdaptiveSizePolicy") \ |
|
2370 |
\ |
|
2371 |
product(intx, PrefetchCopyIntervalInBytes, -1, \ |
|
2372 |
"How far ahead to prefetch destination area (<= 0 means off)") \ |
|
2373 |
\ |
|
2374 |
product(intx, PrefetchScanIntervalInBytes, -1, \ |
|
2375 |
"How far ahead to prefetch scan area (<= 0 means off)") \ |
|
2376 |
\ |
|
2377 |
product(intx, PrefetchFieldsAhead, -1, \ |
|
2378 |
"How many fields ahead to prefetch in oop scan (<= 0 means off)") \ |
|
2379 |
\ |
|
17112
e49af4ba7755
8013132: Add a flag to turn off the output of the verbose verification code
stefank
parents:
16682
diff
changeset
|
2380 |
diagnostic(bool, VerifySilently, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2381 |
"Do not print the verification progress") \ |
17112
e49af4ba7755
8013132: Add a flag to turn off the output of the verbose verification code
stefank
parents:
16682
diff
changeset
|
2382 |
\ |
16680
960505df90e7
8011343: Add new flag for verifying the heap during startup
johnc
parents:
16631
diff
changeset
|
2383 |
diagnostic(bool, VerifyDuringStartup, false, \ |
960505df90e7
8011343: Add new flag for verifying the heap during startup
johnc
parents:
16631
diff
changeset
|
2384 |
"Verify memory system before executing any Java code " \ |
960505df90e7
8011343: Add new flag for verifying the heap during startup
johnc
parents:
16631
diff
changeset
|
2385 |
"during VM initialization") \ |
960505df90e7
8011343: Add new flag for verifying the heap during startup
johnc
parents:
16631
diff
changeset
|
2386 |
\ |
1 | 2387 |
diagnostic(bool, VerifyBeforeExit, trueInDebug, \ |
2388 |
"Verify system before exiting") \ |
|
2389 |
\ |
|
2390 |
diagnostic(bool, VerifyBeforeGC, false, \ |
|
2391 |
"Verify memory system before GC") \ |
|
2392 |
\ |
|
2393 |
diagnostic(bool, VerifyAfterGC, false, \ |
|
2394 |
"Verify memory system after GC") \ |
|
2395 |
\ |
|
2396 |
diagnostic(bool, VerifyDuringGC, false, \ |
|
2397 |
"Verify memory system during GC (between phases)") \ |
|
2398 |
\ |
|
1422 | 2399 |
diagnostic(bool, GCParallelVerificationEnabled, true, \ |
2400 |
"Enable parallel memory system verification") \ |
|
2401 |
\ |
|
4637 | 2402 |
diagnostic(bool, DeferInitialCardMark, false, \ |
2403 |
"When +ReduceInitialCardMarks, explicitly defer any that " \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2404 |
"may arise from new_pre_store_barrier") \ |
4637 | 2405 |
\ |
30302
ecca632210ef
8076987: C1 should support conditional card marks (UseCondCardMark)
shade
parents:
30209
diff
changeset
|
2406 |
product(bool, UseCondCardMark, false, \ |
ecca632210ef
8076987: C1 should support conditional card marks (UseCondCardMark)
shade
parents:
30209
diff
changeset
|
2407 |
"Check for already marked card before updating card table") \ |
ecca632210ef
8076987: C1 should support conditional card marks (UseCondCardMark)
shade
parents:
30209
diff
changeset
|
2408 |
\ |
1 | 2409 |
diagnostic(bool, VerifyRememberedSets, false, \ |
2410 |
"Verify GC remembered sets") \ |
|
2411 |
\ |
|
2412 |
diagnostic(bool, VerifyObjectStartArray, true, \ |
|
2413 |
"Verify GC object start array if verify before/after") \ |
|
2414 |
\ |
|
2415 |
product(bool, DisableExplicitGC, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2416 |
"Ignore calls to System.gc()") \ |
1 | 2417 |
\ |
2418 |
notproduct(bool, CheckMemoryInitialization, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2419 |
"Check memory initialization") \ |
1 | 2420 |
\ |
2421 |
diagnostic(bool, BindCMSThreadToCPU, false, \ |
|
2422 |
"Bind CMS Thread to CPU if possible") \ |
|
2423 |
\ |
|
2424 |
diagnostic(uintx, CPUForCMSThread, 0, \ |
|
2425 |
"When BindCMSThreadToCPU is true, the CPU to bind CMS thread to") \ |
|
2426 |
\ |
|
2427 |
product(bool, BindGCTaskThreadsToCPUs, false, \ |
|
2428 |
"Bind GCTaskThreads to CPUs if possible") \ |
|
2429 |
\ |
|
2430 |
product(bool, UseGCTaskAffinity, false, \ |
|
2431 |
"Use worker affinity when asking for GCTasks") \ |
|
2432 |
\ |
|
2433 |
product(uintx, ProcessDistributionStride, 4, \ |
|
2434 |
"Stride through processors when distributing processes") \ |
|
2435 |
\ |
|
2436 |
product(uintx, CMSCoordinatorYieldSleepCount, 10, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2437 |
"Number of times the coordinator GC thread will sleep while " \ |
1 | 2438 |
"yielding before giving up and resuming GC") \ |
2439 |
\ |
|
2440 |
product(uintx, CMSYieldSleepCount, 0, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2441 |
"Number of times a GC thread (minus the coordinator) " \ |
1 | 2442 |
"will sleep while yielding before giving up and resuming GC") \ |
2443 |
\ |
|
2444 |
/* gc tracing */ \ |
|
2445 |
manageable(bool, PrintGC, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2446 |
"Print message at garbage collection") \ |
1 | 2447 |
\ |
2448 |
manageable(bool, PrintGCDetails, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2449 |
"Print more details at garbage collection") \ |
1 | 2450 |
\ |
2451 |
manageable(bool, PrintGCDateStamps, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2452 |
"Print date stamps at garbage collection") \ |
1 | 2453 |
\ |
2454 |
manageable(bool, PrintGCTimeStamps, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2455 |
"Print timestamps at garbage collection") \ |
1 | 2456 |
\ |
25350
6423a57e5451
8043607: Add a GC id as a log decoration similar to PrintGCTimeStamps
brutisso
parents:
24956
diff
changeset
|
2457 |
manageable(bool, PrintGCID, true, \ |
6423a57e5451
8043607: Add a GC id as a log decoration similar to PrintGCTimeStamps
brutisso
parents:
24956
diff
changeset
|
2458 |
"Print an identifier for each garbage collection") \ |
6423a57e5451
8043607: Add a GC id as a log decoration similar to PrintGCTimeStamps
brutisso
parents:
24956
diff
changeset
|
2459 |
\ |
1 | 2460 |
product(bool, PrintGCTaskTimeStamps, false, \ |
2461 |
"Print timestamps for individual gc worker thread tasks") \ |
|
2462 |
\ |
|
2463 |
develop(intx, ConcGCYieldTimeout, 0, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2464 |
"If non-zero, assert that GC threads yield within this " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2465 |
"number of milliseconds") \ |
1 | 2466 |
\ |
2467 |
product(bool, PrintReferenceGC, false, \ |
|
2468 |
"Print times spent handling reference objects during GC " \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2469 |
"(enabled only when PrintGCDetails)") \ |
1 | 2470 |
\ |
2471 |
develop(bool, TraceReferenceGC, false, \ |
|
2472 |
"Trace handling of soft/weak/final/phantom references") \ |
|
2473 |
\ |
|
2474 |
develop(bool, TraceFinalizerRegistration, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2475 |
"Trace registration of final references") \ |
1 | 2476 |
\ |
2477 |
notproduct(bool, TraceScavenge, false, \ |
|
2478 |
"Trace scavenge") \ |
|
2479 |
\ |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25950
diff
changeset
|
2480 |
product(bool, IgnoreEmptyClassPaths, false, \ |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25950
diff
changeset
|
2481 |
"Ignore empty path elements in -classpath") \ |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25950
diff
changeset
|
2482 |
\ |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25950
diff
changeset
|
2483 |
product(bool, TraceClassPaths, false, \ |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25950
diff
changeset
|
2484 |
"Trace processing of class paths") \ |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25950
diff
changeset
|
2485 |
\ |
1 | 2486 |
product_rw(bool, TraceClassLoading, false, \ |
2487 |
"Trace all classes loaded") \ |
|
2488 |
\ |
|
2489 |
product(bool, TraceClassLoadingPreorder, false, \ |
|
2490 |
"Trace all classes loaded in order referenced (not loaded)") \ |
|
2491 |
\ |
|
2492 |
product_rw(bool, TraceClassUnloading, false, \ |
|
2493 |
"Trace unloading of classes") \ |
|
2494 |
\ |
|
2495 |
product_rw(bool, TraceLoaderConstraints, false, \ |
|
2496 |
"Trace loader constraints") \ |
|
2497 |
\ |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
2498 |
develop(bool, TraceClassLoaderData, false, \ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
2499 |
"Trace class loader loader_data lifetime") \ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
2500 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
2501 |
product(size_t, InitialBootClassLoaderMetaspaceSize, \ |
15086
2bfd799e9147
8005082: NPG: Add specialized Metachunk sizes for reflection and anonymous classloaders
jmasa
parents:
14835
diff
changeset
|
2502 |
NOT_LP64(2200*K) LP64_ONLY(4*M), \ |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
2503 |
"Initial size of the boot class loader data metaspace") \ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
2504 |
\ |
24941
4ebbe176a7b1
8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents:
24461
diff
changeset
|
2505 |
product(bool, TraceYoungGenTime, false, \ |
4ebbe176a7b1
8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents:
24461
diff
changeset
|
2506 |
"Trace accumulated time for young collection") \ |
4ebbe176a7b1
8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents:
24461
diff
changeset
|
2507 |
\ |
4ebbe176a7b1
8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents:
24461
diff
changeset
|
2508 |
product(bool, TraceOldGenTime, false, \ |
4ebbe176a7b1
8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents:
24461
diff
changeset
|
2509 |
"Trace accumulated time for old collection") \ |
1 | 2510 |
\ |
2511 |
product(bool, PrintTenuringDistribution, false, \ |
|
2512 |
"Print tenuring age information") \ |
|
2513 |
\ |
|
2514 |
product_rw(bool, PrintHeapAtGC, false, \ |
|
2515 |
"Print heap layout before and after each GC") \ |
|
2516 |
\ |
|
3191
dd3cc90b9951
6855834: G1: minimize the output when -XX:+PrintHeapAtGC is set
tonyp
parents:
2866
diff
changeset
|
2517 |
product_rw(bool, PrintHeapAtGCExtended, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2518 |
"Print extended information about the layout of the heap " \ |
3191
dd3cc90b9951
6855834: G1: minimize the output when -XX:+PrintHeapAtGC is set
tonyp
parents:
2866
diff
changeset
|
2519 |
"when -XX:+PrintHeapAtGC is set") \ |
dd3cc90b9951
6855834: G1: minimize the output when -XX:+PrintHeapAtGC is set
tonyp
parents:
2866
diff
changeset
|
2520 |
\ |
1 | 2521 |
product(bool, PrintHeapAtSIGBREAK, true, \ |
2522 |
"Print heap layout in response to SIGBREAK") \ |
|
2523 |
\ |
|
2141
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
2034
diff
changeset
|
2524 |
manageable(bool, PrintClassHistogramBeforeFullGC, false, \ |
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
2034
diff
changeset
|
2525 |
"Print a class histogram before any major stop-world GC") \ |
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
2034
diff
changeset
|
2526 |
\ |
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
2034
diff
changeset
|
2527 |
manageable(bool, PrintClassHistogramAfterFullGC, false, \ |
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
2034
diff
changeset
|
2528 |
"Print a class histogram after any major stop-world GC") \ |
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
2034
diff
changeset
|
2529 |
\ |
1 | 2530 |
manageable(bool, PrintClassHistogram, false, \ |
2531 |
"Print a histogram of class instances") \ |
|
2532 |
\ |
|
2533 |
develop(bool, TraceWorkGang, false, \ |
|
2534 |
"Trace activities of work gangs") \ |
|
2535 |
\ |
|
2536 |
product(bool, TraceParallelOldGCTasks, false, \ |
|
2537 |
"Trace multithreaded GC activity") \ |
|
2538 |
\ |
|
2539 |
develop(bool, TraceBlockOffsetTable, false, \ |
|
2540 |
"Print BlockOffsetTable maps") \ |
|
2541 |
\ |
|
2542 |
develop(bool, TraceCardTableModRefBS, false, \ |
|
2543 |
"Print CardTableModRefBS maps") \ |
|
2544 |
\ |
|
2545 |
develop(bool, TraceGCTaskManager, false, \ |
|
2546 |
"Trace actions of the GC task manager") \ |
|
2547 |
\ |
|
2548 |
develop(bool, TraceGCTaskQueue, false, \ |
|
2549 |
"Trace actions of the GC task queues") \ |
|
2550 |
\ |
|
13925 | 2551 |
diagnostic(bool, TraceGCTaskThread, false, \ |
1 | 2552 |
"Trace actions of the GC task threads") \ |
2553 |
\ |
|
2554 |
product(bool, PrintParallelOldGCPhaseTimes, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2555 |
"Print the time taken by each phase in ParallelOldGC " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2556 |
"(PrintGCDetails must also be enabled)") \ |
1 | 2557 |
\ |
2558 |
develop(bool, TraceParallelOldGCMarkingPhase, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2559 |
"Trace marking phase in ParallelOldGC") \ |
1 | 2560 |
\ |
2561 |
develop(bool, TraceParallelOldGCSummaryPhase, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2562 |
"Trace summary phase in ParallelOldGC") \ |
1 | 2563 |
\ |
2564 |
develop(bool, TraceParallelOldGCCompactionPhase, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2565 |
"Trace compaction phase in ParallelOldGC") \ |
1 | 2566 |
\ |
2567 |
develop(bool, TraceParallelOldGCDensePrefix, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2568 |
"Trace dense prefix computation for ParallelOldGC") \ |
1 | 2569 |
\ |
2570 |
develop(bool, IgnoreLibthreadGPFault, false, \ |
|
2571 |
"Suppress workaround for libthread GP fault") \ |
|
2572 |
\ |
|
386
7f121b1192f2
6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents:
342
diff
changeset
|
2573 |
product(bool, PrintJNIGCStalls, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2574 |
"Print diagnostic message when GC is stalled " \ |
386
7f121b1192f2
6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents:
342
diff
changeset
|
2575 |
"by JNI critical section") \ |
7f121b1192f2
6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents:
342
diff
changeset
|
2576 |
\ |
18025 | 2577 |
experimental(double, ObjectCountCutOffPercent, 0.5, \ |
2578 |
"The percentage of the used heap that the instances of a class " \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2579 |
"must occupy for the class to generate a trace event") \ |
18025 | 2580 |
\ |
9990
c8683968c01b
6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents:
9968
diff
changeset
|
2581 |
/* GC log rotation setting */ \ |
c8683968c01b
6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents:
9968
diff
changeset
|
2582 |
\ |
c8683968c01b
6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents:
9968
diff
changeset
|
2583 |
product(bool, UseGCLogFileRotation, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2584 |
"Rotate gclog files (for long running applications). It requires "\ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2585 |
"-Xloggc:<filename>") \ |
9990
c8683968c01b
6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents:
9968
diff
changeset
|
2586 |
\ |
c8683968c01b
6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents:
9968
diff
changeset
|
2587 |
product(uintx, NumberOfGCLogFiles, 0, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2588 |
"Number of gclog files in rotation " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2589 |
"(default: 0, no rotation)") \ |
9990
c8683968c01b
6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents:
9968
diff
changeset
|
2590 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
2591 |
product(size_t, GCLogFileSize, 8*K, \ |
23517 | 2592 |
"GC log file size, requires UseGCLogFileRotation. " \ |
2593 |
"Set to 0 to only trigger rotation via jcmd") \ |
|
9990
c8683968c01b
6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents:
9968
diff
changeset
|
2594 |
\ |
1 | 2595 |
/* JVMTI heap profiling */ \ |
2596 |
\ |
|
2597 |
diagnostic(bool, TraceJVMTIObjectTagging, false, \ |
|
2598 |
"Trace JVMTI object tagging calls") \ |
|
2599 |
\ |
|
2600 |
diagnostic(bool, VerifyBeforeIteration, false, \ |
|
2601 |
"Verify memory system before JVMTI iteration") \ |
|
2602 |
\ |
|
2603 |
/* compiler interface */ \ |
|
2604 |
\ |
|
2605 |
develop(bool, CIPrintCompilerName, false, \ |
|
2606 |
"when CIPrint is active, print the name of the active compiler") \ |
|
2607 |
\ |
|
26587 | 2608 |
diagnostic(bool, CIPrintCompileQueue, false, \ |
1 | 2609 |
"display the contents of the compile queue whenever a " \ |
2610 |
"compilation is enqueued") \ |
|
2611 |
\ |
|
2612 |
develop(bool, CIPrintRequests, false, \ |
|
2613 |
"display every request for compilation") \ |
|
2614 |
\ |
|
2615 |
product(bool, CITime, false, \ |
|
2616 |
"collect timing information for compilation") \ |
|
2617 |
\ |
|
26913 | 2618 |
develop(bool, CITimeVerbose, false, \ |
2619 |
"be more verbose in compilation timings") \ |
|
2620 |
\ |
|
1 | 2621 |
develop(bool, CITimeEach, false, \ |
2622 |
"display timing information after each successful compilation") \ |
|
2623 |
\ |
|
13964 | 2624 |
develop(bool, CICountOSR, false, \ |
1 | 2625 |
"use a separate counter when assigning ids to osr compilations") \ |
2626 |
\ |
|
2627 |
develop(bool, CICompileNatives, true, \ |
|
2628 |
"compile native methods if supported by the compiler") \ |
|
2629 |
\ |
|
2630 |
develop_pd(bool, CICompileOSR, \ |
|
2631 |
"compile on stack replacement methods if supported by the " \ |
|
2632 |
"compiler") \ |
|
2633 |
\ |
|
2634 |
develop(bool, CIPrintMethodCodes, false, \ |
|
2635 |
"print method bytecodes of the compiled code") \ |
|
2636 |
\ |
|
2637 |
develop(bool, CIPrintTypeFlow, false, \ |
|
2638 |
"print the results of ciTypeFlow analysis") \ |
|
2639 |
\ |
|
2640 |
develop(bool, CITraceTypeFlow, false, \ |
|
2641 |
"detailed per-bytecode tracing of ciTypeFlow analysis") \ |
|
2642 |
\ |
|
8870 | 2643 |
develop(intx, OSROnlyBCI, -1, \ |
2644 |
"OSR only at this bci. Negative values mean exclude that bci") \ |
|
2645 |
\ |
|
1 | 2646 |
/* compiler */ \ |
2647 |
\ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2648 |
/* notice: the max range value here is max_jint, not max_intx */ \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2649 |
/* because of overflow issue */ \ |
1 | 2650 |
product(intx, CICompilerCount, CI_COMPILER_COUNT, \ |
2651 |
"Number of compiler threads to run") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2652 |
range((intx)Arguments::get_min_number_of_compiler_threads(), \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2653 |
max_jint) \ |
1 | 2654 |
\ |
2655 |
product(intx, CompilationPolicyChoice, 0, \ |
|
28650
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28477
diff
changeset
|
2656 |
"which compilation policy (0-3)") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2657 |
range(0, 3) \ |
1 | 2658 |
\ |
2659 |
develop(bool, UseStackBanging, true, \ |
|
2660 |
"use stack banging for stack overflow checks (required for " \ |
|
2661 |
"proper StackOverflow handling; disable only to measure cost " \ |
|
2662 |
"of stackbanging)") \ |
|
2663 |
\ |
|
2664 |
develop(bool, UseStrictFP, true, \ |
|
2665 |
"use strict fp if modifier strictfp is set") \ |
|
2666 |
\ |
|
2667 |
develop(bool, GenerateSynchronizationCode, true, \ |
|
2668 |
"generate locking/unlocking code for synchronized methods and " \ |
|
2669 |
"monitors") \ |
|
2670 |
\ |
|
2671 |
develop(bool, GenerateCompilerNullChecks, true, \ |
|
2672 |
"Generate explicit null checks for loads/stores/calls") \ |
|
2673 |
\ |
|
2674 |
develop(bool, GenerateRangeChecks, true, \ |
|
2675 |
"Generate range checks for array accesses") \ |
|
2676 |
\ |
|
2677 |
develop_pd(bool, ImplicitNullChecks, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2678 |
"Generate code for implicit null checks") \ |
1 | 2679 |
\ |
22856
03ad2cf18166
8029015: PPC64 (part 216): opto: trap based null and range checks
goetz
parents:
22851
diff
changeset
|
2680 |
product_pd(bool, TrapBasedNullChecks, \ |
03ad2cf18166
8029015: PPC64 (part 216): opto: trap based null and range checks
goetz
parents:
22851
diff
changeset
|
2681 |
"Generate code for null checks that uses a cmp and trap " \ |
03ad2cf18166
8029015: PPC64 (part 216): opto: trap based null and range checks
goetz
parents:
22851
diff
changeset
|
2682 |
"instruction raising SIGTRAP. This is only used if an access to" \ |
03ad2cf18166
8029015: PPC64 (part 216): opto: trap based null and range checks
goetz
parents:
22851
diff
changeset
|
2683 |
"null (+offset) will not raise a SIGSEGV, i.e.," \ |
03ad2cf18166
8029015: PPC64 (part 216): opto: trap based null and range checks
goetz
parents:
22851
diff
changeset
|
2684 |
"ImplicitNullChecks don't work (PPC64).") \ |
03ad2cf18166
8029015: PPC64 (part 216): opto: trap based null and range checks
goetz
parents:
22851
diff
changeset
|
2685 |
\ |
1 | 2686 |
product(bool, PrintSafepointStatistics, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2687 |
"Print statistics about safepoint synchronization") \ |
1 | 2688 |
\ |
2689 |
product(intx, PrintSafepointStatisticsCount, 300, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2690 |
"Total number of safepoint statistics collected " \ |
1 | 2691 |
"before printing them out") \ |
2692 |
\ |
|
2693 |
product(intx, PrintSafepointStatisticsTimeout, -1, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2694 |
"Print safepoint statistics only when safepoint takes " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2695 |
"more than PrintSafepointSatisticsTimeout in millis") \ |
1 | 2696 |
\ |
5086
ebccc0bb7b8e
6934758: Expose the break down of clean up task time during safepoint.
xlu
parents:
5039
diff
changeset
|
2697 |
product(bool, TraceSafepointCleanupTime, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2698 |
"Print the break down of clean up tasks performed during " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2699 |
"safepoint") \ |
5086
ebccc0bb7b8e
6934758: Expose the break down of clean up task time during safepoint.
xlu
parents:
5039
diff
changeset
|
2700 |
\ |
1 | 2701 |
product(bool, Inline, true, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2702 |
"Enable inlining") \ |
1 | 2703 |
\ |
2704 |
product(bool, ClipInlining, true, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2705 |
"Clip inlining if aggregate method exceeds DesiredMethodLimit") \ |
1 | 2706 |
\ |
2707 |
develop(bool, UseCHA, true, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2708 |
"Enable CHA") \ |
1 | 2709 |
\ |
2710 |
product(bool, UseTypeProfile, true, \ |
|
2711 |
"Check interpreter profile for historically monomorphic calls") \ |
|
2712 |
\ |
|
2713 |
diagnostic(bool, PrintInlining, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2714 |
"Print inlining optimizations") \ |
1 | 2715 |
\ |
2255
54abdf3e1055
6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents:
2254
diff
changeset
|
2716 |
product(bool, UsePopCountInstruction, false, \ |
54abdf3e1055
6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents:
2254
diff
changeset
|
2717 |
"Use population count instruction") \ |
54abdf3e1055
6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents:
2254
diff
changeset
|
2718 |
\ |
1 | 2719 |
develop(bool, EagerInitialization, false, \ |
2720 |
"Eagerly initialize classes if possible") \ |
|
2721 |
\ |
|
31790 | 2722 |
diagnostic(bool, LogTouchedMethods, false, \ |
2723 |
"Log methods which have been ever touched in runtime") \ |
|
2724 |
\ |
|
2725 |
diagnostic(bool, PrintTouchedMethodsAtExit, false, \ |
|
2726 |
"Print all methods that have been ever touched in runtime") \ |
|
2727 |
\ |
|
1 | 2728 |
develop(bool, TraceMethodReplacement, false, \ |
2729 |
"Print when methods are replaced do to recompilation") \ |
|
2730 |
\ |
|
2731 |
develop(bool, PrintMethodFlushing, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2732 |
"Print the nmethods being flushed") \ |
1 | 2733 |
\ |
22210
b0408ba029f6
8025277: Add -XX: flag to print code cache sweeper statistics
anoll
parents:
21733
diff
changeset
|
2734 |
diagnostic(bool, PrintMethodFlushingStatistics, false, \ |
b0408ba029f6
8025277: Add -XX: flag to print code cache sweeper statistics
anoll
parents:
21733
diff
changeset
|
2735 |
"print statistics about method flushing") \ |
b0408ba029f6
8025277: Add -XX: flag to print code cache sweeper statistics
anoll
parents:
21733
diff
changeset
|
2736 |
\ |
24442
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24441
diff
changeset
|
2737 |
diagnostic(intx, HotMethodDetectionLimit, 100000, \ |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24441
diff
changeset
|
2738 |
"Number of compiled code invocations after which " \ |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24441
diff
changeset
|
2739 |
"the method is considered as hot by the flusher") \ |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24441
diff
changeset
|
2740 |
\ |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24441
diff
changeset
|
2741 |
diagnostic(intx, MinPassesBeforeFlush, 10, \ |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24441
diff
changeset
|
2742 |
"Minimum number of sweeper passes before an nmethod " \ |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24441
diff
changeset
|
2743 |
"can be flushed") \ |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24441
diff
changeset
|
2744 |
\ |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24441
diff
changeset
|
2745 |
product(bool, UseCodeAging, true, \ |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24441
diff
changeset
|
2746 |
"Insert counter to detect warm methods") \ |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24441
diff
changeset
|
2747 |
\ |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24441
diff
changeset
|
2748 |
diagnostic(bool, StressCodeAging, false, \ |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24441
diff
changeset
|
2749 |
"Start with counters compiled in") \ |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24441
diff
changeset
|
2750 |
\ |
1 | 2751 |
develop(bool, UseRelocIndex, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2752 |
"Use an index to speed random access to relocations") \ |
1 | 2753 |
\ |
2754 |
develop(bool, StressCodeBuffers, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2755 |
"Exercise code buffer expansion and other rare state changes") \ |
1 | 2756 |
\ |
2757 |
diagnostic(bool, DebugNonSafepoints, trueInDebug, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2758 |
"Generate extra debugging information for non-safepoints in " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2759 |
"nmethods") \ |
1 | 2760 |
\ |
10990 | 2761 |
product(bool, PrintVMOptions, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2762 |
"Print flags that appeared on the command line") \ |
1 | 2763 |
\ |
2028 | 2764 |
product(bool, IgnoreUnrecognizedVMOptions, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2765 |
"Ignore unrecognized VM options") \ |
2028 | 2766 |
\ |
4579 | 2767 |
product(bool, PrintCommandLineFlags, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2768 |
"Print flags specified on command line or set by ergonomics") \ |
4579 | 2769 |
\ |
2770 |
product(bool, PrintFlagsInitial, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2771 |
"Print all VM flags before argument processing and exit VM") \ |
4579 | 2772 |
\ |
2773 |
product(bool, PrintFlagsFinal, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2774 |
"Print all VM flags after argument and ergonomic processing") \ |
4579 | 2775 |
\ |
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6419
diff
changeset
|
2776 |
notproduct(bool, PrintFlagsWithComments, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2777 |
"Print all VM flags with default values and descriptions and " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2778 |
"exit") \ |
6438
ace4f8100e90
6979444: add command line option to print command line flags descriptions
ikrylov
parents:
6419
diff
changeset
|
2779 |
\ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2780 |
product(bool, PrintFlagsRanges, false, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2781 |
"Print VM flags and their ranges and exit VM") \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
2782 |
\ |
1 | 2783 |
diagnostic(bool, SerializeVMOutput, true, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2784 |
"Use a mutex to serialize output to tty and LogFile") \ |
1 | 2785 |
\ |
2786 |
diagnostic(bool, DisplayVMOutput, true, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2787 |
"Display all VM output on the tty, independently of LogVMOutput") \ |
1 | 2788 |
\ |
20010
c66a7254680c
8023134: Rename VM LogFile to hotspot_pid{pid}.log (was hotspot.log)
vlivanov
parents:
19770
diff
changeset
|
2789 |
diagnostic(bool, LogVMOutput, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2790 |
"Save VM output to LogFile") \ |
1 | 2791 |
\ |
2792 |
diagnostic(ccstr, LogFile, NULL, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2793 |
"If LogVMOutput or LogCompilation is on, save VM output to " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2794 |
"this file [default: ./hotspot_pid%p.log] (%p replaced with pid)")\ |
1 | 2795 |
\ |
2796 |
product(ccstr, ErrorFile, NULL, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2797 |
"If an error occurs, save the error data to this file " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2798 |
"[default: ./hs_err_pid%p.log] (%p replaced with pid)") \ |
1 | 2799 |
\ |
2800 |
product(bool, DisplayVMOutputToStderr, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2801 |
"If DisplayVMOutput is true, display all VM output to stderr") \ |
1 | 2802 |
\ |
2803 |
product(bool, DisplayVMOutputToStdout, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2804 |
"If DisplayVMOutput is true, display all VM output to stdout") \ |
1 | 2805 |
\ |
2806 |
product(bool, UseHeavyMonitors, false, \ |
|
2807 |
"use heavyweight instead of lightweight Java monitors") \ |
|
2808 |
\ |
|
13087 | 2809 |
product(bool, PrintStringTableStatistics, false, \ |
2810 |
"print statistics about the StringTable and SymbolTable") \ |
|
2811 |
\ |
|
20053
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
19770
diff
changeset
|
2812 |
diagnostic(bool, VerifyStringTableAtExit, false, \ |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
19770
diff
changeset
|
2813 |
"verify StringTable contents at exit") \ |
a12bd7991794
8019835: Strings interned in different threads equal but does not ==
dcubed
parents:
19770
diff
changeset
|
2814 |
\ |
1 | 2815 |
notproduct(bool, PrintSymbolTableSizeHistogram, false, \ |
2816 |
"print histogram of the symbol table") \ |
|
2817 |
\ |
|
2818 |
notproduct(bool, ExitVMOnVerifyError, false, \ |
|
2819 |
"standard exit from VM if bytecode verify error " \ |
|
2820 |
"(only in debug mode)") \ |
|
2821 |
\ |
|
2822 |
notproduct(ccstr, AbortVMOnException, NULL, \ |
|
2823 |
"Call fatal if this exception is thrown. Example: " \ |
|
2824 |
"java -XX:AbortVMOnException=java.lang.NullPointerException Foo") \ |
|
2825 |
\ |
|
6179
4846648c4b7b
6973308: Missing zero length check before repne scas in check_klass_subtype_slow_path()
kvn
parents:
6062
diff
changeset
|
2826 |
notproduct(ccstr, AbortVMOnExceptionMessage, NULL, \ |
4846648c4b7b
6973308: Missing zero length check before repne scas in check_klass_subtype_slow_path()
kvn
parents:
6062
diff
changeset
|
2827 |
"Call fatal if the exception pointed by AbortVMOnException " \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2828 |
"has this message") \ |
6179
4846648c4b7b
6973308: Missing zero length check before repne scas in check_klass_subtype_slow_path()
kvn
parents:
6062
diff
changeset
|
2829 |
\ |
1 | 2830 |
develop(bool, DebugVtables, false, \ |
2831 |
"add debugging code to vtable dispatch") \ |
|
2832 |
\ |
|
2833 |
develop(bool, PrintVtables, false, \ |
|
2834 |
"print vtables when printing klass") \ |
|
2835 |
\ |
|
2836 |
notproduct(bool, PrintVtableStats, false, \ |
|
2837 |
"print vtables stats at end of run") \ |
|
2838 |
\ |
|
2839 |
develop(bool, TraceCreateZombies, false, \ |
|
2840 |
"trace creation of zombie nmethods") \ |
|
2841 |
\ |
|
2842 |
notproduct(bool, IgnoreLockingAssertions, false, \ |
|
2843 |
"disable locking assertions (for speed)") \ |
|
2844 |
\ |
|
2845 |
product(bool, RangeCheckElimination, true, \ |
|
16611 | 2846 |
"Eliminate range checks") \ |
1 | 2847 |
\ |
2848 |
develop_pd(bool, UncommonNullCast, \ |
|
2849 |
"track occurrences of null in casts; adjust compiler tactics") \ |
|
2850 |
\ |
|
2851 |
develop(bool, TypeProfileCasts, true, \ |
|
2852 |
"treat casts like calls for purposes of type profiling") \ |
|
2853 |
\ |
|
2854 |
develop(bool, DelayCompilationDuringStartup, true, \ |
|
2855 |
"Delay invoking the compiler until main application class is " \ |
|
2856 |
"loaded") \ |
|
2857 |
\ |
|
2858 |
develop(bool, CompileTheWorld, false, \ |
|
2859 |
"Compile all methods in all classes in bootstrap class path " \ |
|
2860 |
"(stress test)") \ |
|
2861 |
\ |
|
2862 |
develop(bool, CompileTheWorldPreloadClasses, true, \ |
|
2863 |
"Preload all classes used by a class before start loading") \ |
|
2864 |
\ |
|
4736
e091227926da
6919886: Sweep CodeCache more aggressively to reduce its usage for CompileTheWorld
kvn
parents:
4650
diff
changeset
|
2865 |
notproduct(intx, CompileTheWorldSafepointInterval, 100, \ |
e091227926da
6919886: Sweep CodeCache more aggressively to reduce its usage for CompileTheWorld
kvn
parents:
4650
diff
changeset
|
2866 |
"Force a safepoint every n compiles so sweeper can keep up") \ |
e091227926da
6919886: Sweep CodeCache more aggressively to reduce its usage for CompileTheWorld
kvn
parents:
4650
diff
changeset
|
2867 |
\ |
1 | 2868 |
develop(bool, FillDelaySlots, true, \ |
2869 |
"Fill delay slots (on SPARC only)") \ |
|
2870 |
\ |
|
2871 |
develop(bool, TimeLivenessAnalysis, false, \ |
|
2872 |
"Time computation of bytecode liveness analysis") \ |
|
2873 |
\ |
|
2874 |
develop(bool, TraceLivenessGen, false, \ |
|
2875 |
"Trace the generation of liveness analysis information") \ |
|
2876 |
\ |
|
2877 |
notproduct(bool, TraceLivenessQuery, false, \ |
|
2878 |
"Trace queries of liveness analysis information") \ |
|
2879 |
\ |
|
2880 |
notproduct(bool, CollectIndexSetStatistics, false, \ |
|
2881 |
"Collect information about IndexSets") \ |
|
2882 |
\ |
|
2883 |
develop(bool, UseLoopSafepoints, true, \ |
|
2884 |
"Generate Safepoint nodes in every loop") \ |
|
2885 |
\ |
|
2886 |
develop(intx, FastAllocateSizeLimit, 128*K, \ |
|
2887 |
/* Note: This value is zero mod 1<<13 for a cheap sparc set. */ \ |
|
2888 |
"Inline allocations larger than this in doublewords must go slow")\ |
|
2889 |
\ |
|
2890 |
product(bool, AggressiveOpts, false, \ |
|
2891 |
"Enable aggressive optimizations - see arguments.cpp") \ |
|
2892 |
\ |
|
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20292
diff
changeset
|
2893 |
product_pd(uintx, TypeProfileLevel, \ |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20735
diff
changeset
|
2894 |
"=XYZ, with Z: Type profiling of arguments at call; " \ |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20735
diff
changeset
|
2895 |
"Y: Type profiling of return value at call; " \ |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20735
diff
changeset
|
2896 |
"X: Type profiling of parameters to methods; " \ |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20735
diff
changeset
|
2897 |
"X, Y and Z in 0=off ; 1=jsr292 only; 2=all methods") \ |
20702
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20292
diff
changeset
|
2898 |
\ |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20292
diff
changeset
|
2899 |
product(intx, TypeProfileArgsLimit, 2, \ |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20292
diff
changeset
|
2900 |
"max number of call arguments to consider for type profiling") \ |
bbe0fcde6e13
8023657: New type profiling points: arguments to call
roland
parents:
20292
diff
changeset
|
2901 |
\ |
21095
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20735
diff
changeset
|
2902 |
product(intx, TypeProfileParmsLimit, 2, \ |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20735
diff
changeset
|
2903 |
"max number of incoming parameters to consider for type profiling"\ |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20735
diff
changeset
|
2904 |
", -1 for all") \ |
1a04f7b3946e
8026251: New type profiling points: parameters to methods
roland
parents:
20735
diff
changeset
|
2905 |
\ |
1 | 2906 |
/* statistics */ \ |
2907 |
develop(bool, CountCompiledCalls, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2908 |
"Count method invocations") \ |
1 | 2909 |
\ |
2910 |
notproduct(bool, CountRuntimeCalls, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2911 |
"Count VM runtime calls") \ |
1 | 2912 |
\ |
2913 |
develop(bool, CountJNICalls, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2914 |
"Count jni method invocations") \ |
1 | 2915 |
\ |
2916 |
notproduct(bool, CountJVMCalls, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2917 |
"Count jvm method invocations") \ |
1 | 2918 |
\ |
2919 |
notproduct(bool, CountRemovableExceptions, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2920 |
"Count exceptions that could be replaced by branches due to " \ |
1 | 2921 |
"inlining") \ |
2922 |
\ |
|
2923 |
notproduct(bool, ICMissHistogram, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2924 |
"Produce histogram of IC misses") \ |
1 | 2925 |
\ |
2926 |
notproduct(bool, PrintClassStatistics, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2927 |
"Print class statistics at end of run") \ |
1 | 2928 |
\ |
2929 |
notproduct(bool, PrintMethodStatistics, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2930 |
"Print method statistics at end of run") \ |
1 | 2931 |
\ |
2932 |
/* interpreter */ \ |
|
2933 |
develop(bool, ClearInterpreterLocals, false, \ |
|
2934 |
"Always clear local variables of interpreter activations upon " \ |
|
2935 |
"entry") \ |
|
2936 |
\ |
|
2937 |
product_pd(bool, RewriteBytecodes, \ |
|
2938 |
"Allow rewriting of bytecodes (bytecodes are not immutable)") \ |
|
2939 |
\ |
|
2940 |
product_pd(bool, RewriteFrequentPairs, \ |
|
2941 |
"Rewrite frequently used bytecode pairs into a single bytecode") \ |
|
2942 |
\ |
|
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
249
diff
changeset
|
2943 |
diagnostic(bool, PrintInterpreter, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2944 |
"Print the generated interpreter code") \ |
1 | 2945 |
\ |
2946 |
product(bool, UseInterpreter, true, \ |
|
2947 |
"Use interpreter for non-compiled methods") \ |
|
2948 |
\ |
|
2949 |
develop(bool, UseFastSignatureHandlers, true, \ |
|
2950 |
"Use fast signature handlers for native calls") \ |
|
2951 |
\ |
|
2952 |
product(bool, UseLoopCounter, true, \ |
|
2953 |
"Increment invocation counter on backward branch") \ |
|
2954 |
\ |
|
2955 |
product_pd(bool, UseOnStackReplacement, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2956 |
"Use on stack replacement, calls runtime if invoc. counter " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
2957 |
"overflows in loop") \ |
1 | 2958 |
\ |
2959 |
notproduct(bool, TraceOnStackReplacement, false, \ |
|
2960 |
"Trace on stack replacement") \ |
|
2961 |
\ |
|
2962 |
product_pd(bool, PreferInterpreterNativeStubs, \ |
|
2963 |
"Use always interpreter stubs for native methods invoked via " \ |
|
2964 |
"interpreter") \ |
|
2965 |
\ |
|
2966 |
develop(bool, CountBytecodes, false, \ |
|
2967 |
"Count number of bytecodes executed") \ |
|
2968 |
\ |
|
2969 |
develop(bool, PrintBytecodeHistogram, false, \ |
|
2970 |
"Print histogram of the executed bytecodes") \ |
|
2971 |
\ |
|
2972 |
develop(bool, PrintBytecodePairHistogram, false, \ |
|
2973 |
"Print histogram of the executed bytecode pairs") \ |
|
2974 |
\ |
|
347
df859fcca515
6667042: PrintAssembly option does not work without special plugin
jrose
parents:
249
diff
changeset
|
2975 |
diagnostic(bool, PrintSignatureHandlers, false, \ |
1 | 2976 |
"Print code generated for native method signature handlers") \ |
2977 |
\ |
|
2978 |
develop(bool, VerifyOops, false, \ |
|
2979 |
"Do plausibility checks for oops") \ |
|
2980 |
\ |
|
2981 |
develop(bool, CheckUnhandledOops, false, \ |
|
2982 |
"Check for unhandled oops in VM code") \ |
|
2983 |
\ |
|
2984 |
develop(bool, VerifyJNIFields, trueInDebug, \ |
|
2985 |
"Verify jfieldIDs for instance fields") \ |
|
2986 |
\ |
|
2987 |
notproduct(bool, VerifyJNIEnvThread, false, \ |
|
2988 |
"Verify JNIEnv.thread == Thread::current() when entering VM " \ |
|
2989 |
"from JNI") \ |
|
2990 |
\ |
|
2991 |
develop(bool, VerifyFPU, false, \ |
|
2992 |
"Verify FPU state (check for NaN's, etc.)") \ |
|
2993 |
\ |
|
2994 |
develop(bool, VerifyThread, false, \ |
|
2995 |
"Watch the thread register for corruption (SPARC only)") \ |
|
2996 |
\ |
|
2997 |
develop(bool, VerifyActivationFrameSize, false, \ |
|
2998 |
"Verify that activation frame didn't become smaller than its " \ |
|
2999 |
"minimal size") \ |
|
3000 |
\ |
|
3001 |
develop(bool, TraceFrequencyInlining, false, \ |
|
3002 |
"Trace frequency based inlining") \ |
|
3003 |
\ |
|
3004 |
develop_pd(bool, InlineIntrinsics, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3005 |
"Inline intrinsics that can be statically resolved") \ |
1 | 3006 |
\ |
3007 |
product_pd(bool, ProfileInterpreter, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3008 |
"Profile at the bytecode level during interpretation") \ |
1 | 3009 |
\ |
22836
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
22828
diff
changeset
|
3010 |
develop(bool, TraceProfileInterpreter, false, \ |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
22828
diff
changeset
|
3011 |
"Trace profiling at the bytecode level during interpretation. " \ |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
22828
diff
changeset
|
3012 |
"This outputs the profiling information collected to improve " \ |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
22828
diff
changeset
|
3013 |
"jit compilation.") \ |
e7e511228518
8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling
goetz
parents:
22828
diff
changeset
|
3014 |
\ |
1 | 3015 |
develop_pd(bool, ProfileTraps, \ |
3016 |
"Profile deoptimization traps at the bytecode level") \ |
|
3017 |
\ |
|
3018 |
product(intx, ProfileMaturityPercentage, 20, \ |
|
3019 |
"number of method invocations/branches (expressed as % of " \ |
|
3020 |
"CompileThreshold) before using the method's profile") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3021 |
range(0, 100) \ |
1 | 3022 |
\ |
23526
6851d341ad52
8037970: make PrintMethodData a diagnostic options
roland
parents:
23474
diff
changeset
|
3023 |
diagnostic(bool, PrintMethodData, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3024 |
"Print the results of +ProfileInterpreter at end of run") \ |
1 | 3025 |
\ |
3026 |
develop(bool, VerifyDataPointer, trueInDebug, \ |
|
3027 |
"Verify the method data pointer during interpreter profiling") \ |
|
3028 |
\ |
|
3029 |
develop(bool, VerifyCompiledCode, false, \ |
|
3030 |
"Include miscellaneous runtime verifications in nmethod code; " \ |
|
4434 | 3031 |
"default off because it disturbs nmethod size heuristics") \ |
1 | 3032 |
\ |
4489
514173c9a0c2
6361589: Print out stack trace for target thread of GC crash
minqi
parents:
4434
diff
changeset
|
3033 |
notproduct(bool, CrashGCForDumpingJavaThread, false, \ |
514173c9a0c2
6361589: Print out stack trace for target thread of GC crash
minqi
parents:
4434
diff
changeset
|
3034 |
"Manually make GC thread crash then dump java stack trace; " \ |
514173c9a0c2
6361589: Print out stack trace for target thread of GC crash
minqi
parents:
4434
diff
changeset
|
3035 |
"Test only") \ |
1 | 3036 |
\ |
3037 |
/* compilation */ \ |
|
3038 |
product(bool, UseCompiler, true, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3039 |
"Use Just-In-Time compilation") \ |
1 | 3040 |
\ |
3041 |
develop(bool, TraceCompilationPolicy, false, \ |
|
3042 |
"Trace compilation policy") \ |
|
3043 |
\ |
|
3044 |
develop(bool, TimeCompilationPolicy, false, \ |
|
3045 |
"Time the compilation policy") \ |
|
3046 |
\ |
|
3047 |
product(bool, UseCounterDecay, true, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3048 |
"Adjust recompilation counters") \ |
1 | 3049 |
\ |
3050 |
develop(intx, CounterHalfLifeTime, 30, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3051 |
"Half-life time of invocation counters (in seconds)") \ |
1 | 3052 |
\ |
3053 |
develop(intx, CounterDecayMinIntervalLength, 500, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3054 |
"The minimum interval (in milliseconds) between invocation of " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3055 |
"CounterDecay") \ |
1 | 3056 |
\ |
3057 |
product(bool, AlwaysCompileLoopMethods, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3058 |
"When using recompilation, never interpret methods " \ |
1 | 3059 |
"containing loops") \ |
3060 |
\ |
|
3061 |
product(bool, DontCompileHugeMethods, true, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3062 |
"Do not compile methods > HugeMethodLimit") \ |
1 | 3063 |
\ |
3064 |
/* Bytecode escape analysis estimation. */ \ |
|
3065 |
product(bool, EstimateArgEscape, true, \ |
|
3066 |
"Analyze bytecodes to estimate escape state of arguments") \ |
|
3067 |
\ |
|
3068 |
product(intx, BCEATraceLevel, 0, \ |
|
3069 |
"How much tracing to do of bytecode escape analysis estimates") \ |
|
3070 |
\ |
|
3071 |
product(intx, MaxBCEAEstimateLevel, 5, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3072 |
"Maximum number of nested calls that are analyzed by BC EA") \ |
1 | 3073 |
\ |
3074 |
product(intx, MaxBCEAEstimateSize, 150, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3075 |
"Maximum bytecode size of a method to be analyzed by BC EA") \ |
1 | 3076 |
\ |
3077 |
product(intx, AllocatePrefetchStyle, 1, \ |
|
3078 |
"0 = no prefetch, " \ |
|
3079 |
"1 = prefetch instructions for each allocation, " \ |
|
5251
f86f7a86d761
6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents:
5250
diff
changeset
|
3080 |
"2 = use TLAB watermark to gate allocation prefetch, " \ |
f86f7a86d761
6940726: Use BIS instruction for allocation prefetch on Sparc
kvn
parents:
5250
diff
changeset
|
3081 |
"3 = use BIS instruction on Sparc for allocation prefetch") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3082 |
range(0, 3) \ |
1 | 3083 |
\ |
3084 |
product(intx, AllocatePrefetchDistance, -1, \ |
|
3085 |
"Distance to prefetch ahead of allocation pointer") \ |
|
3086 |
\ |
|
10267 | 3087 |
product(intx, AllocatePrefetchLines, 3, \ |
3088 |
"Number of lines to prefetch ahead of array allocation pointer") \ |
|
3089 |
\ |
|
3090 |
product(intx, AllocateInstancePrefetchLines, 1, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3091 |
"Number of lines to prefetch ahead of instance allocation " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3092 |
"pointer") \ |
1 | 3093 |
\ |
3094 |
product(intx, AllocatePrefetchStepSize, 16, \ |
|
3095 |
"Step size in bytes of sequential prefetch instructions") \ |
|
3096 |
\ |
|
3097 |
product(intx, AllocatePrefetchInstr, 0, \ |
|
3098 |
"Prefetch instruction to prefetch ahead of allocation pointer") \ |
|
3099 |
\ |
|
3100 |
/* deoptimization */ \ |
|
3101 |
develop(bool, TraceDeoptimization, false, \ |
|
3102 |
"Trace deoptimization") \ |
|
3103 |
\ |
|
3104 |
develop(bool, DebugDeoptimization, false, \ |
|
3105 |
"Tracing various information while debugging deoptimization") \ |
|
3106 |
\ |
|
3107 |
product(intx, SelfDestructTimer, 0, \ |
|
3108 |
"Will cause VM to terminate after a given time (in minutes) " \ |
|
3109 |
"(0 means off)") \ |
|
3110 |
\ |
|
3111 |
product(intx, MaxJavaStackTraceDepth, 1024, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3112 |
"The maximum number of lines in the stack trace for Java " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3113 |
"exceptions (0 means all)") \ |
1 | 3114 |
\ |
9429
4569a4c199da
7005503: Make GuaranteedSafepointInterval a diagnostic flag
kevinw
parents:
9182
diff
changeset
|
3115 |
NOT_EMBEDDED(diagnostic(intx, GuaranteedSafepointInterval, 1000, \ |
1 | 3116 |
"Guarantee a safepoint (at least) every so many milliseconds " \ |
8107
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
3117 |
"(0 means none)")) \ |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
3118 |
\ |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
3119 |
EMBEDDED_ONLY(product(intx, GuaranteedSafepointInterval, 0, \ |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
3120 |
"Guarantee a safepoint (at least) every so many milliseconds " \ |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
8076
diff
changeset
|
3121 |
"(0 means none)")) \ |
1 | 3122 |
\ |
3123 |
product(intx, SafepointTimeoutDelay, 10000, \ |
|
3124 |
"Delay in milliseconds for option SafepointTimeout") \ |
|
3125 |
\ |
|
20290
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20288
diff
changeset
|
3126 |
product(intx, NmethodSweepActivity, 10, \ |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20288
diff
changeset
|
3127 |
"Removes cold nmethods from code cache if > 0. Higher values " \ |
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20288
diff
changeset
|
3128 |
"result in more aggressive sweeping") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3129 |
range(0, 2000) \ |
20290
2127dc70bce9
8020151: PSR:PERF Large performance regressions when code cache is filled
anoll
parents:
20288
diff
changeset
|
3130 |
\ |
9942
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9640
diff
changeset
|
3131 |
notproduct(bool, LogSweeper, false, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3132 |
"Keep a ring buffer of sweeper activity") \ |
9942
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9640
diff
changeset
|
3133 |
\ |
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9640
diff
changeset
|
3134 |
notproduct(intx, SweeperLogEntries, 1024, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3135 |
"Number of records in the ring buffer of sweeper activity") \ |
9942
2e86734ba620
6996747: SIGSEGV in nmethod::cleanup_inline_caches / CompiledIC::verify
never
parents:
9640
diff
changeset
|
3136 |
\ |
1 | 3137 |
notproduct(intx, MemProfilingInterval, 500, \ |
3138 |
"Time between each invocation of the MemProfiler") \ |
|
3139 |
\ |
|
3140 |
develop(intx, MallocCatchPtr, -1, \ |
|
3141 |
"Hit breakpoint when mallocing/freeing this pointer") \ |
|
3142 |
\ |
|
3143 |
notproduct(ccstrlist, SuppressErrorAt, "", \ |
|
3144 |
"List of assertions (file:line) to muzzle") \ |
|
3145 |
\ |
|
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
3146 |
notproduct(size_t, HandleAllocationLimit, 1024, \ |
1 | 3147 |
"Threshold for HandleMark allocation when +TraceHandleAllocation "\ |
3148 |
"is used") \ |
|
3149 |
\ |
|
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
3150 |
develop(size_t, TotalHandleAllocationLimit, 1024, \ |
1 | 3151 |
"Threshold for total handle allocation when " \ |
3152 |
"+TraceHandleAllocation is used") \ |
|
3153 |
\ |
|
3154 |
develop(intx, StackPrintLimit, 100, \ |
|
3155 |
"number of stack frames to print in VM-level stack dump") \ |
|
3156 |
\ |
|
3157 |
notproduct(intx, MaxElementPrintSize, 256, \ |
|
3158 |
"maximum number of elements to print") \ |
|
3159 |
\ |
|
3160 |
notproduct(intx, MaxSubklassPrintSize, 4, \ |
|
3161 |
"maximum number of subklasses to print when printing klass") \ |
|
3162 |
\ |
|
4586
f1c484fca023
6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents:
4579
diff
changeset
|
3163 |
product(intx, MaxInlineLevel, 9, \ |
1 | 3164 |
"maximum number of nested calls that are inlined") \ |
3165 |
\ |
|
4586
f1c484fca023
6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents:
4579
diff
changeset
|
3166 |
product(intx, MaxRecursiveInlineLevel, 1, \ |
1 | 3167 |
"maximum number of nested recursive calls that are inlined") \ |
3168 |
\ |
|
21582
6c76cdd733fe
8028159: C2: compiler stack overflow during inlining of @ForceInline methods
vlivanov
parents:
21575
diff
changeset
|
3169 |
develop(intx, MaxForceInlineLevel, 100, \ |
23191
5f3c5592f0e8
8035887: VM crashes trying to force inlining the recursive call
vlivanov
parents:
23190
diff
changeset
|
3170 |
"maximum number of nested calls that are forced for inlining " \ |
5f3c5592f0e8
8035887: VM crashes trying to force inlining the recursive call
vlivanov
parents:
23190
diff
changeset
|
3171 |
"(using CompilerOracle or marked w/ @ForceInline)") \ |
21582
6c76cdd733fe
8028159: C2: compiler stack overflow during inlining of @ForceInline methods
vlivanov
parents:
21575
diff
changeset
|
3172 |
\ |
2342 | 3173 |
product_pd(intx, InlineSmallCode, \ |
1 | 3174 |
"Only inline already compiled methods if their code size is " \ |
3175 |
"less than this") \ |
|
3176 |
\ |
|
3177 |
product(intx, MaxInlineSize, 35, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3178 |
"The maximum bytecode size of a method to be inlined") \ |
1 | 3179 |
\ |
3180 |
product_pd(intx, FreqInlineSize, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3181 |
"The maximum bytecode size of a frequent method to be inlined") \ |
1 | 3182 |
\ |
4586
f1c484fca023
6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents:
4579
diff
changeset
|
3183 |
product(intx, MaxTrivialSize, 6, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3184 |
"The maximum bytecode size of a trivial method to be inlined") \ |
1 | 3185 |
\ |
4586
f1c484fca023
6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents:
4579
diff
changeset
|
3186 |
product(intx, MinInliningThreshold, 250, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3187 |
"The minimum invocation count a method needs to have to be " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3188 |
"inlined") \ |
1 | 3189 |
\ |
3190 |
develop(intx, MethodHistogramCutoff, 100, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3191 |
"The cutoff value for method invocation histogram (+CountCalls)") \ |
1 | 3192 |
\ |
3193 |
develop(intx, ProfilerNumberOfInterpretedMethods, 25, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3194 |
"Number of interpreted methods to show in profile") \ |
1 | 3195 |
\ |
3196 |
develop(intx, ProfilerNumberOfCompiledMethods, 25, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3197 |
"Number of compiled methods to show in profile") \ |
1 | 3198 |
\ |
3199 |
develop(intx, ProfilerNumberOfStubMethods, 25, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3200 |
"Number of stub methods to show in profile") \ |
1 | 3201 |
\ |
3202 |
develop(intx, ProfilerNumberOfRuntimeStubNodes, 25, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3203 |
"Number of runtime stub nodes to show in profile") \ |
1 | 3204 |
\ |
3205 |
product(intx, ProfileIntervalsTicks, 100, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3206 |
"Number of ticks between printing of interval profile " \ |
1 | 3207 |
"(+ProfileIntervals)") \ |
3208 |
\ |
|
3209 |
notproduct(intx, ScavengeALotInterval, 1, \ |
|
3210 |
"Interval between which scavenge will occur with +ScavengeALot") \ |
|
3211 |
\ |
|
3212 |
notproduct(intx, FullGCALotInterval, 1, \ |
|
3213 |
"Interval between which full gc will occur with +FullGCALot") \ |
|
3214 |
\ |
|
3215 |
notproduct(intx, FullGCALotStart, 0, \ |
|
3216 |
"For which invocation to start FullGCAlot") \ |
|
3217 |
\ |
|
3218 |
notproduct(intx, FullGCALotDummies, 32*K, \ |
|
3219 |
"Dummy object allocated with +FullGCALot, forcing all objects " \ |
|
3220 |
"to move") \ |
|
3221 |
\ |
|
3222 |
develop(intx, DontYieldALotInterval, 10, \ |
|
3223 |
"Interval between which yields will be dropped (milliseconds)") \ |
|
3224 |
\ |
|
3225 |
develop(intx, MinSleepInterval, 1, \ |
|
3226 |
"Minimum sleep() interval (milliseconds) when " \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3227 |
"ConvertSleepToYield is off (used for Solaris)") \ |
1 | 3228 |
\ |
3229 |
develop(intx, ProfilerPCTickThreshold, 15, \ |
|
3230 |
"Number of ticks in a PC buckets to be a hotspot") \ |
|
3231 |
\ |
|
3232 |
notproduct(intx, DeoptimizeALotInterval, 5, \ |
|
3233 |
"Number of exits until DeoptimizeALot kicks in") \ |
|
3234 |
\ |
|
3235 |
notproduct(intx, ZombieALotInterval, 5, \ |
|
3236 |
"Number of exits until ZombieALot kicks in") \ |
|
3237 |
\ |
|
3238 |
diagnostic(intx, MallocVerifyInterval, 0, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3239 |
"If non-zero, verify C heap after every N calls to " \ |
1 | 3240 |
"malloc/realloc/free") \ |
3241 |
\ |
|
3242 |
diagnostic(intx, MallocVerifyStart, 0, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3243 |
"If non-zero, start verifying C heap after Nth call to " \ |
1 | 3244 |
"malloc/realloc/free") \ |
3245 |
\ |
|
16428
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15922
diff
changeset
|
3246 |
diagnostic(uintx, MallocMaxTestWords, 0, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3247 |
"If non-zero, maximum number of words that malloc/realloc can " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3248 |
"allocate (for testing only)") \ |
16428
1b55a8d558b8
7030610: runtime/6878713/Test6878713.sh fails Error. failed to clean up files after test
rdurbin
parents:
15922
diff
changeset
|
3249 |
\ |
13925 | 3250 |
product(intx, TypeProfileWidth, 2, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3251 |
"Number of receiver types to record in call/cast profile") \ |
1 | 3252 |
\ |
3253 |
develop(intx, BciProfileWidth, 2, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3254 |
"Number of return bci's to record in ret profile") \ |
1 | 3255 |
\ |
3256 |
product(intx, PerMethodRecompilationCutoff, 400, \ |
|
3257 |
"After recompiling N times, stay in the interpreter (-1=>'Inf')") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3258 |
range(-1, max_intx) \ |
1 | 3259 |
\ |
4754
8aef16f24e16
6614597: Performance variability in jvm2008 xml.validation
kvn
parents:
4750
diff
changeset
|
3260 |
product(intx, PerBytecodeRecompilationCutoff, 200, \ |
1 | 3261 |
"Per-BCI limit on repeated recompilation (-1=>'Inf')") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3262 |
range(-1, max_intx) \ |
1 | 3263 |
\ |
3264 |
product(intx, PerMethodTrapLimit, 100, \ |
|
3265 |
"Limit on traps (of one kind) in a method (includes inlines)") \ |
|
3266 |
\ |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22876
diff
changeset
|
3267 |
experimental(intx, PerMethodSpecTrapLimit, 5000, \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3268 |
"Limit on speculative traps (of one kind) in a method " \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3269 |
"(includes inlines)") \ |
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22876
diff
changeset
|
3270 |
\ |
1 | 3271 |
product(intx, PerBytecodeTrapLimit, 4, \ |
3272 |
"Limit on traps (of one kind) at a particular BCI") \ |
|
3273 |
\ |
|
22916
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22876
diff
changeset
|
3274 |
experimental(intx, SpecTrapLimitExtraEntries, 3, \ |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22876
diff
changeset
|
3275 |
"Extra method data trap entries for speculation") \ |
582da2ed4dfa
8031752: Failed speculative optimizations should be reattempted when root of compilation is different
roland
parents:
22876
diff
changeset
|
3276 |
\ |
1 | 3277 |
develop(intx, InlineFrequencyRatio, 20, \ |
3278 |
"Ratio of call site execution to caller method invocation") \ |
|
3279 |
\ |
|
3280 |
develop_pd(intx, InlineFrequencyCount, \ |
|
3281 |
"Count of call site execution necessary to trigger frequent " \ |
|
3282 |
"inlining") \ |
|
3283 |
\ |
|
3284 |
develop(intx, InlineThrowCount, 50, \ |
|
3285 |
"Force inlining of interpreted methods that throw this often") \ |
|
3286 |
\ |
|
3287 |
develop(intx, InlineThrowMaxSize, 200, \ |
|
3288 |
"Force inlining of throwing methods smaller than this") \ |
|
3289 |
\ |
|
3290 |
develop(intx, ProfilerNodeSize, 1024, \ |
|
3291 |
"Size in K to allocate for the Profile Nodes of each thread") \ |
|
3292 |
\ |
|
3293 |
/* gc parameters */ \ |
|
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
3294 |
product(size_t, InitialHeapSize, 0, \ |
17322
35c488005999
8006088: Incompatible heap size flags accepted by VM
tschatzl
parents:
17134
diff
changeset
|
3295 |
"Initial heap size (in bytes); zero means use ergonomics") \ |
4434 | 3296 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
3297 |
product(size_t, MaxHeapSize, ScaleForWordSize(96*M), \ |
4434 | 3298 |
"Maximum heap size (in bytes)") \ |
3299 |
\ |
|
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
3300 |
product(size_t, OldSize, ScaleForWordSize(4*M), \ |
4434 | 3301 |
"Initial tenured generation size (in bytes)") \ |
3302 |
\ |
|
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
3303 |
product(size_t, NewSize, ScaleForWordSize(1*M), \ |
4434 | 3304 |
"Initial new generation size (in bytes)") \ |
1 | 3305 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
3306 |
product(size_t, MaxNewSize, max_uintx, \ |
4434 | 3307 |
"Maximum new generation size (in bytes), max_uintx means set " \ |
3308 |
"ergonomically") \ |
|
1 | 3309 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
3310 |
product(size_t, PretenureSizeThreshold, 0, \ |
4434 | 3311 |
"Maximum size in bytes of objects allocated in DefNew " \ |
3312 |
"generation; zero means no maximum") \ |
|
3313 |
\ |
|
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
3314 |
product(size_t, TLABSize, 0, \ |
4434 | 3315 |
"Starting TLAB size (in bytes); zero means set ergonomically") \ |
1 | 3316 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
3317 |
product(size_t, MinTLABSize, 2*K, \ |
1 | 3318 |
"Minimum allowed TLAB size (in bytes)") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3319 |
range(1, max_uintx) \ |
1 | 3320 |
\ |
3321 |
product(uintx, TLABAllocationWeight, 35, \ |
|
3322 |
"Allocation averaging weight") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3323 |
range(0, 100) \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3324 |
\ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3325 |
/* Limit the lower bound of this flag to 1 as it is used */ \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3326 |
/* in a division expression. */ \ |
1 | 3327 |
product(uintx, TLABWasteTargetPercent, 1, \ |
3328 |
"Percentage of Eden that can be wasted") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3329 |
range(1, 100) \ |
1 | 3330 |
\ |
3331 |
product(uintx, TLABRefillWasteFraction, 64, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3332 |
"Maximum TLAB waste at a refill (internal fragmentation)") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3333 |
range(1, max_uintx) \ |
1 | 3334 |
\ |
3335 |
product(uintx, TLABWasteIncrement, 4, \ |
|
3336 |
"Increment allowed waste at slow allocation") \ |
|
3337 |
\ |
|
15605 | 3338 |
product(uintx, SurvivorRatio, 8, \ |
1 | 3339 |
"Ratio of eden/survivor space size") \ |
3340 |
\ |
|
15605 | 3341 |
product(uintx, NewRatio, 2, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3342 |
"Ratio of old/new generation sizes") \ |
1 | 3343 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
3344 |
product_pd(size_t, NewSizeThreadIncrease, \ |
1 | 3345 |
"Additional size added to desired new generation size per " \ |
3346 |
"non-daemon thread (in bytes)") \ |
|
3347 |
\ |
|
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
3348 |
product_pd(size_t, MetaspaceSize, \ |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
3349 |
"Initial size of Metaspaces (in bytes)") \ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
3350 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
3351 |
product(size_t, MaxMetaspaceSize, max_uintx, \ |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
3352 |
"Maximum size of Metaspaces (in bytes)") \ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
3353 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
3354 |
product(size_t, CompressedClassSpaceSize, 1*G, \ |
19979
ebe1dbb6e1aa
8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
19704
diff
changeset
|
3355 |
"Maximum size of class area in Metaspace when compressed " \ |
ebe1dbb6e1aa
8015107: NPG: Use consistent naming for metaspace concepts
ehelin
parents:
19704
diff
changeset
|
3356 |
"class pointers are used") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3357 |
range(1*M, 3*G) \ |
1 | 3358 |
\ |
22555
ea32f6c51d08
8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents:
22551
diff
changeset
|
3359 |
manageable(uintx, MinHeapFreeRatio, 40, \ |
20719
ffa4f0de0dad
8024776: Max/MinHeapFreeRatio descriptions should be more precise
jwilhelm
parents:
20406
diff
changeset
|
3360 |
"The minimum percentage of heap free after GC to avoid expansion."\ |
22555
ea32f6c51d08
8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents:
22551
diff
changeset
|
3361 |
" For most GCs this applies to the old generation. In G1 and" \ |
ea32f6c51d08
8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents:
22551
diff
changeset
|
3362 |
" ParallelGC it applies to the whole heap.") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3363 |
range(0, 100) \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3364 |
constraint(MinHeapFreeRatioConstraintFunc) \ |
22555
ea32f6c51d08
8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents:
22551
diff
changeset
|
3365 |
\ |
ea32f6c51d08
8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents:
22551
diff
changeset
|
3366 |
manageable(uintx, MaxHeapFreeRatio, 70, \ |
20719
ffa4f0de0dad
8024776: Max/MinHeapFreeRatio descriptions should be more precise
jwilhelm
parents:
20406
diff
changeset
|
3367 |
"The maximum percentage of heap free after GC to avoid shrinking."\ |
22555
ea32f6c51d08
8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents:
22551
diff
changeset
|
3368 |
" For most GCs this applies to the old generation. In G1 and" \ |
ea32f6c51d08
8028391: Make the Min/MaxHeapFreeRatio flags manageable
jwilhelm
parents:
22551
diff
changeset
|
3369 |
" ParallelGC it applies to the whole heap.") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3370 |
range(0, 100) \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3371 |
constraint(MaxHeapFreeRatioConstraintFunc) \ |
1 | 3372 |
\ |
3373 |
product(intx, SoftRefLRUPolicyMSPerMB, 1000, \ |
|
3374 |
"Number of milliseconds per MB of free space in the heap") \ |
|
3375 |
\ |
|
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
3376 |
product(size_t, MinHeapDeltaBytes, ScaleForWordSize(128*K), \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3377 |
"The minimum change in heap space due to GC (in bytes)") \ |
1 | 3378 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
3379 |
product(size_t, MinMetaspaceExpansion, ScaleForWordSize(256*K), \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3380 |
"The minimum expansion of Metaspace (in bytes)") \ |
15610
528d799702c7
8005452: NPG: Create new flags for Metaspace resizing policy
jmasa
parents:
15605
diff
changeset
|
3381 |
\ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3382 |
product(uintx, MaxMetaspaceFreeRatio, 70, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3383 |
"The maximum percentage of Metaspace free after GC to avoid " \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3384 |
"shrinking") \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3385 |
range(0, 100) \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3386 |
constraint(MaxMetaspaceFreeRatioConstraintFunc) \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3387 |
\ |
15610
528d799702c7
8005452: NPG: Create new flags for Metaspace resizing policy
jmasa
parents:
15605
diff
changeset
|
3388 |
product(uintx, MinMetaspaceFreeRatio, 40, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3389 |
"The minimum percentage of Metaspace free after GC to avoid " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3390 |
"expansion") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3391 |
range(0, 99) \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3392 |
constraint(MinMetaspaceFreeRatioConstraintFunc) \ |
1 | 3393 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
3394 |
product(size_t, MaxMetaspaceExpansion, ScaleForWordSize(4*M), \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3395 |
"The maximum expansion of Metaspace without full GC (in bytes)") \ |
1 | 3396 |
\ |
17392
2f967c0e4246
6843347: Boundary values in some public GC options cause crashes
tschatzl
parents:
17322
diff
changeset
|
3397 |
product(uintx, QueuedAllocationWarningCount, 0, \ |
1 | 3398 |
"Number of times an allocation that queues behind a GC " \ |
3399 |
"will retry before printing a warning") \ |
|
3400 |
\ |
|
3401 |
diagnostic(uintx, VerifyGCStartAt, 0, \ |
|
3402 |
"GC invoke count where +VerifyBefore/AfterGC kicks in") \ |
|
3403 |
\ |
|
3404 |
diagnostic(intx, VerifyGCLevel, 0, \ |
|
3405 |
"Generation level at which to start +VerifyBefore/AfterGC") \ |
|
3406 |
\ |
|
13925 | 3407 |
product(uintx, MaxTenuringThreshold, 15, \ |
1 | 3408 |
"Maximum value for tenuring threshold") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3409 |
range(0, markOopDesc::max_age + 1) \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3410 |
constraint(MaxTenuringThresholdConstraintFunc) \ |
1 | 3411 |
\ |
13925 | 3412 |
product(uintx, InitialTenuringThreshold, 7, \ |
1 | 3413 |
"Initial value for tenuring threshold") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3414 |
range(0, markOopDesc::max_age + 1) \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3415 |
constraint(InitialTenuringThresholdConstraintFunc) \ |
1 | 3416 |
\ |
15605 | 3417 |
product(uintx, TargetSurvivorRatio, 50, \ |
1 | 3418 |
"Desired percentage of survivor space used after scavenge") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3419 |
range(0, 100) \ |
1 | 3420 |
\ |
1557 | 3421 |
product(uintx, MarkSweepDeadRatio, 5, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3422 |
"Percentage (0-100) of the old gen allowed as dead wood. " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3423 |
"Serial mark sweep treats this as both the minimum and maximum " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3424 |
"value. " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3425 |
"CMS uses this value only if it falls back to mark sweep. " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3426 |
"Par compact uses a variable scale based on the density of the " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3427 |
"generation and treats this as the maximum value when the heap " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3428 |
"is either completely full or completely empty. Par compact " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3429 |
"also has a smaller default value; see arguments.cpp.") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3430 |
range(0, 100) \ |
1 | 3431 |
\ |
17392
2f967c0e4246
6843347: Boundary values in some public GC options cause crashes
tschatzl
parents:
17322
diff
changeset
|
3432 |
product(uintx, MarkSweepAlwaysCompactCount, 4, \ |
1 | 3433 |
"How often should we fully compact the heap (ignoring the dead " \ |
3434 |
"space parameters)") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3435 |
range(1, max_uintx) \ |
1 | 3436 |
\ |
3437 |
product(intx, PrintCMSStatistics, 0, \ |
|
3438 |
"Statistics for CMS") \ |
|
3439 |
\ |
|
3440 |
product(bool, PrintCMSInitiationStatistics, false, \ |
|
3441 |
"Statistics for initiating a CMS collection") \ |
|
3442 |
\ |
|
3443 |
product(intx, PrintFLSStatistics, 0, \ |
|
3444 |
"Statistics for CMS' FreeListSpace") \ |
|
3445 |
\ |
|
3446 |
product(intx, PrintFLSCensus, 0, \ |
|
3447 |
"Census for CMS' FreeListSpace") \ |
|
3448 |
\ |
|
3449 |
develop(uintx, GCExpandToAllocateDelayMillis, 0, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3450 |
"Delay between expansion and allocation (in milliseconds)") \ |
1 | 3451 |
\ |
13924 | 3452 |
develop(uintx, GCWorkerDelayMillis, 0, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3453 |
"Delay in scheduling GC workers (in milliseconds)") \ |
13924 | 3454 |
\ |
1 | 3455 |
product(intx, DeferThrSuspendLoopCount, 4000, \ |
3456 |
"(Unstable) Number of times to iterate in safepoint loop " \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3457 |
"before blocking VM threads ") \ |
1 | 3458 |
\ |
3459 |
product(intx, DeferPollingPageLoopCount, -1, \ |
|
3460 |
"(Unsafe,Unstable) Number of iterations in safepoint loop " \ |
|
3461 |
"before changing safepoint polling page to RO ") \ |
|
3462 |
\ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3463 |
product(intx, SafepointSpinBeforeYield, 2000, "(Unstable)") \ |
1 | 3464 |
\ |
3465 |
product(bool, PSChunkLargeArrays, true, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3466 |
"Process large arrays in chunks") \ |
1 | 3467 |
\ |
3468 |
product(uintx, GCDrainStackTargetSize, 64, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3469 |
"Number of entries we will try to leave on the stack " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3470 |
"during parallel gc") \ |
1 | 3471 |
\ |
3472 |
/* stack parameters */ \ |
|
3473 |
product_pd(intx, StackYellowPages, \ |
|
3474 |
"Number of yellow zone (recoverable overflows) pages") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3475 |
range(1, max_intx) \ |
1 | 3476 |
\ |
3477 |
product_pd(intx, StackRedPages, \ |
|
3478 |
"Number of red zone (unrecoverable overflows) pages") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3479 |
range(1, max_intx) \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3480 |
\ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3481 |
/* greater stack shadow pages can't generate instruction to bang stack */ \ |
1 | 3482 |
product_pd(intx, StackShadowPages, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3483 |
"Number of shadow zone (for overflow checking) pages " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3484 |
"this should exceed the depth of the VM and native call stack") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3485 |
range(1, 50) \ |
1 | 3486 |
\ |
3487 |
product_pd(intx, ThreadStackSize, \ |
|
3488 |
"Thread Stack Size (in Kbytes)") \ |
|
3489 |
\ |
|
3490 |
product_pd(intx, VMThreadStackSize, \ |
|
3491 |
"Non-Java Thread Stack Size (in Kbytes)") \ |
|
3492 |
\ |
|
3493 |
product_pd(intx, CompilerThreadStackSize, \ |
|
3494 |
"Compiler Thread Stack Size (in Kbytes)") \ |
|
3495 |
\ |
|
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
3496 |
develop_pd(size_t, JVMInvokeMethodSlack, \ |
1 | 3497 |
"Stack space (bytes) required for JVM_InvokeMethod to complete") \ |
3498 |
\ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3499 |
/* code cache parameters */ \ |
23214
b6426873cb37
8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents:
23192
diff
changeset
|
3500 |
/* ppc64/tiered compilation has large code-entry alignment. */ \ |
b6426873cb37
8029799: vm/mlvm/anonloader/stress/oome prints warning: CodeHeap: # of free blocks > 10000
anoll
parents:
23192
diff
changeset
|
3501 |
develop(uintx, CodeCacheSegmentSize, 64 PPC64_ONLY(+64) NOT_PPC64(TIERED_ONLY(+64)),\ |
1 | 3502 |
"Code cache segment size (in bytes) - smallest unit of " \ |
3503 |
"allocation") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3504 |
range(1, 1024) \ |
1 | 3505 |
\ |
3506 |
develop_pd(intx, CodeEntryAlignment, \ |
|
3507 |
"Code entry alignment for generated code (in bytes)") \ |
|
3508 |
\ |
|
5249 | 3509 |
product_pd(intx, OptoLoopAlignment, \ |
3510 |
"Align inner loops to zero relative to this modulus") \ |
|
3511 |
\ |
|
1 | 3512 |
product_pd(uintx, InitialCodeCacheSize, \ |
3513 |
"Initial code cache size (in bytes)") \ |
|
3514 |
\ |
|
18506
af8765fafc07
8014972: Crash with specific values for -XX:InitialCodeCacheSize=500K -XX:ReservedCodeCacheSize=500k
anoll
parents:
18025
diff
changeset
|
3515 |
develop_pd(uintx, CodeCacheMinimumUseSpace, \ |
af8765fafc07
8014972: Crash with specific values for -XX:InitialCodeCacheSize=500K -XX:ReservedCodeCacheSize=500k
anoll
parents:
18025
diff
changeset
|
3516 |
"Minimum code cache size (in bytes) required to start VM.") \ |
af8765fafc07
8014972: Crash with specific values for -XX:InitialCodeCacheSize=500K -XX:ReservedCodeCacheSize=500k
anoll
parents:
18025
diff
changeset
|
3517 |
\ |
26796 | 3518 |
product(bool, SegmentedCodeCache, false, \ |
3519 |
"Use a segmented code cache") \ |
|
3520 |
\ |
|
1 | 3521 |
product_pd(uintx, ReservedCodeCacheSize, \ |
3522 |
"Reserved code cache size (in bytes) - maximum code cache size") \ |
|
3523 |
\ |
|
26796 | 3524 |
product_pd(uintx, NonProfiledCodeHeapSize, \ |
3525 |
"Size of code heap with non-profiled methods (in bytes)") \ |
|
3526 |
\ |
|
3527 |
product_pd(uintx, ProfiledCodeHeapSize, \ |
|
3528 |
"Size of code heap with profiled methods (in bytes)") \ |
|
3529 |
\ |
|
26919
361b4b4c92c0
8059468: Fix PrintCodeCache output changed by JDK-8059137
thartmann
parents:
26913
diff
changeset
|
3530 |
product_pd(uintx, NonNMethodCodeHeapSize, \ |
361b4b4c92c0
8059468: Fix PrintCodeCache output changed by JDK-8059137
thartmann
parents:
26913
diff
changeset
|
3531 |
"Size of code heap with non-nmethods (in bytes)") \ |
26796 | 3532 |
\ |
1 | 3533 |
product_pd(uintx, CodeCacheExpansionSize, \ |
3534 |
"Code cache expansion size (in bytes)") \ |
|
3535 |
\ |
|
3536 |
develop_pd(uintx, CodeCacheMinBlockLength, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3537 |
"Minimum number of segments in a code cache block") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3538 |
range(1, 100) \ |
1 | 3539 |
\ |
3540 |
notproduct(bool, ExitOnFullCodeCache, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3541 |
"Exit the VM if we fill the code cache") \ |
1 | 3542 |
\ |
10963 | 3543 |
product(bool, UseCodeCacheFlushing, true, \ |
21575
6a9645992cee
8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents:
21572
diff
changeset
|
3544 |
"Remove cold/old nmethods from the code cache") \ |
4750 | 3545 |
\ |
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27417
diff
changeset
|
3546 |
product(uintx, StartAggressiveSweepingAt, 10, \ |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27417
diff
changeset
|
3547 |
"Start aggressive sweeping if X[%] of the code cache is free." \ |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27417
diff
changeset
|
3548 |
"Segmented code cache: X[%] of the non-profiled heap." \ |
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27417
diff
changeset
|
3549 |
"Non-segmented code cache: X[%] of the total code cache") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3550 |
range(0, 100) \ |
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
27417
diff
changeset
|
3551 |
\ |
1 | 3552 |
/* interpreter debugging */ \ |
3553 |
develop(intx, BinarySwitchThreshold, 5, \ |
|
3554 |
"Minimal number of lookupswitch entries for rewriting to binary " \ |
|
3555 |
"switch") \ |
|
3556 |
\ |
|
3557 |
develop(intx, StopInterpreterAt, 0, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3558 |
"Stop interpreter execution at specified bytecode number") \ |
1 | 3559 |
\ |
3560 |
develop(intx, TraceBytecodesAt, 0, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3561 |
"Trace bytecodes starting with specified bytecode number") \ |
1 | 3562 |
\ |
3563 |
/* compiler interface */ \ |
|
3564 |
develop(intx, CIStart, 0, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3565 |
"The id of the first compilation to permit") \ |
1 | 3566 |
\ |
22247 | 3567 |
develop(intx, CIStop, max_jint, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3568 |
"The id of the last compilation to permit") \ |
1 | 3569 |
\ |
22247 | 3570 |
develop(intx, CIStartOSR, 0, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3571 |
"The id of the first osr compilation to permit " \ |
1 | 3572 |
"(CICountOSR must be on)") \ |
3573 |
\ |
|
22247 | 3574 |
develop(intx, CIStopOSR, max_jint, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3575 |
"The id of the last osr compilation to permit " \ |
1 | 3576 |
"(CICountOSR must be on)") \ |
3577 |
\ |
|
22247 | 3578 |
develop(intx, CIBreakAtOSR, -1, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3579 |
"The id of osr compilation to break at") \ |
1 | 3580 |
\ |
22247 | 3581 |
develop(intx, CIBreakAt, -1, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3582 |
"The id of compilation to break at") \ |
1 | 3583 |
\ |
3584 |
product(ccstrlist, CompileOnly, "", \ |
|
3585 |
"List of methods (pkg/class.name) to restrict compilation to") \ |
|
3586 |
\ |
|
3587 |
product(ccstr, CompileCommandFile, NULL, \ |
|
3588 |
"Read compiler commands from this file [.hotspot_compiler]") \ |
|
3589 |
\ |
|
3590 |
product(ccstrlist, CompileCommand, "", \ |
|
3591 |
"Prepend to .hotspot_compiler; e.g. log,java/lang/String.<init>") \ |
|
3592 |
\ |
|
14477
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
14386
diff
changeset
|
3593 |
develop(bool, ReplayCompiles, false, \ |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
14386
diff
changeset
|
3594 |
"Enable replay of compilations from ReplayDataFile") \ |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
14386
diff
changeset
|
3595 |
\ |
17121
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16682
diff
changeset
|
3596 |
product(ccstr, ReplayDataFile, NULL, \ |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16682
diff
changeset
|
3597 |
"File containing compilation replay information" \ |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16682
diff
changeset
|
3598 |
"[default: ./replay_pid%p.log] (%p replaced with pid)") \ |
14477
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
14386
diff
changeset
|
3599 |
\ |
22243 | 3600 |
product(ccstr, InlineDataFile, NULL, \ |
3601 |
"File containing inlining replay information" \ |
|
3602 |
"[default: ./inline_pid%p.log] (%p replaced with pid)") \ |
|
3603 |
\ |
|
14477
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
14386
diff
changeset
|
3604 |
develop(intx, ReplaySuppressInitializers, 2, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3605 |
"Control handling of class initialization during replay: " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3606 |
"0 - don't do anything special; " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3607 |
"1 - treat all class initializers as empty; " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3608 |
"2 - treat class initializers for application classes as empty; " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3609 |
"3 - allow all class initializers to run during bootstrap but " \ |
14477
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
14386
diff
changeset
|
3610 |
" pretend they are empty after starting replay") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3611 |
range(0, 3) \ |
14477
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
14386
diff
changeset
|
3612 |
\ |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
14386
diff
changeset
|
3613 |
develop(bool, ReplayIgnoreInitErrors, false, \ |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
14386
diff
changeset
|
3614 |
"Ignore exceptions thrown during initialization for replay") \ |
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
14386
diff
changeset
|
3615 |
\ |
17121
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16682
diff
changeset
|
3616 |
product(bool, DumpReplayDataOnError, true, \ |
e40a97c700d9
8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents:
16682
diff
changeset
|
3617 |
"Record replay data for crashing compiler threads") \ |
14477
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
14386
diff
changeset
|
3618 |
\ |
1 | 3619 |
product(bool, CICompilerCountPerCPU, false, \ |
3620 |
"1 compiler thread for log(N CPUs)") \ |
|
3621 |
\ |
|
3622 |
develop(intx, CIFireOOMAt, -1, \ |
|
3623 |
"Fire OutOfMemoryErrors throughout CI for testing the compiler " \ |
|
3624 |
"(non-negative value throws OOM after this many CI accesses " \ |
|
3625 |
"in each compile)") \ |
|
17123
a8e62eed2e3e
8011675: adding compilation level to replay data
iignatyev
parents:
17121
diff
changeset
|
3626 |
notproduct(intx, CICrashAt, -1, \ |
a8e62eed2e3e
8011675: adding compilation level to replay data
iignatyev
parents:
17121
diff
changeset
|
3627 |
"id of compilation to trigger assert in compiler thread for " \ |
a8e62eed2e3e
8011675: adding compilation level to replay data
iignatyev
parents:
17121
diff
changeset
|
3628 |
"the purpose of testing, e.g. generation of replay data") \ |
3609
5f16c48e608a
6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents:
3605
diff
changeset
|
3629 |
notproduct(bool, CIObjectFactoryVerify, false, \ |
5f16c48e608a
6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents:
3605
diff
changeset
|
3630 |
"enable potentially expensive verification in ciObjectFactory") \ |
5f16c48e608a
6866585: debug code in ciObjectFactory too slow for large objects
jcoomes
parents:
3605
diff
changeset
|
3631 |
\ |
1 | 3632 |
/* Priorities */ \ |
3633 |
product_pd(bool, UseThreadPriorities, "Use native thread priorities") \ |
|
3634 |
\ |
|
3635 |
product(intx, ThreadPriorityPolicy, 0, \ |
|
3636 |
"0 : Normal. "\ |
|
3637 |
" VM chooses priorities that are appropriate for normal "\ |
|
3638 |
" applications. On Solaris NORM_PRIORITY and above are mapped "\ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3639 |
" to normal native priority. Java priorities below " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3640 |
" NORM_PRIORITY map to lower native priority values. On "\ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3641 |
" Windows applications are allowed to use higher native "\ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3642 |
" priorities. However, with ThreadPriorityPolicy=0, VM will "\ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3643 |
" not use the highest possible native priority, "\ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3644 |
" THREAD_PRIORITY_TIME_CRITICAL, as it may interfere with "\ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3645 |
" system threads. On Linux thread priorities are ignored "\ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3646 |
" because the OS does not support static priority in "\ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3647 |
" SCHED_OTHER scheduling class which is the only choice for "\ |
1 | 3648 |
" non-root, non-realtime applications. "\ |
3649 |
"1 : Aggressive. "\ |
|
3650 |
" Java thread priorities map over to the entire range of "\ |
|
3651 |
" native thread priorities. Higher Java thread priorities map "\ |
|
3652 |
" to higher native thread priorities. This policy should be "\ |
|
3653 |
" used with care, as sometimes it can cause performance "\ |
|
3654 |
" degradation in the application and/or the entire system. On "\ |
|
3655 |
" Linux this policy requires root privilege.") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3656 |
range(0, 1) \ |
1 | 3657 |
\ |
3658 |
product(bool, ThreadPriorityVerbose, false, \ |
|
11601
f359304c1856
7082553: Interpret Thread.setPriority(Thread.MAX_PRIORITY) to mean FX60 on Solaris 10 and 11
phh
parents:
11487
diff
changeset
|
3659 |
"Print priority changes") \ |
1 | 3660 |
\ |
3661 |
product(intx, CompilerThreadPriority, -1, \ |
|
11601
f359304c1856
7082553: Interpret Thread.setPriority(Thread.MAX_PRIORITY) to mean FX60 on Solaris 10 and 11
phh
parents:
11487
diff
changeset
|
3662 |
"The native priority at which compiler threads should run " \ |
f359304c1856
7082553: Interpret Thread.setPriority(Thread.MAX_PRIORITY) to mean FX60 on Solaris 10 and 11
phh
parents:
11487
diff
changeset
|
3663 |
"(-1 means no change)") \ |
1 | 3664 |
\ |
3665 |
product(intx, VMThreadPriority, -1, \ |
|
11601
f359304c1856
7082553: Interpret Thread.setPriority(Thread.MAX_PRIORITY) to mean FX60 on Solaris 10 and 11
phh
parents:
11487
diff
changeset
|
3666 |
"The native priority at which the VM thread should run " \ |
f359304c1856
7082553: Interpret Thread.setPriority(Thread.MAX_PRIORITY) to mean FX60 on Solaris 10 and 11
phh
parents:
11487
diff
changeset
|
3667 |
"(-1 means no change)") \ |
1 | 3668 |
\ |
3669 |
product(bool, CompilerThreadHintNoPreempt, true, \ |
|
3670 |
"(Solaris only) Give compiler threads an extra quanta") \ |
|
3671 |
\ |
|
3672 |
product(bool, VMThreadHintNoPreempt, false, \ |
|
3673 |
"(Solaris only) Give VM thread an extra quanta") \ |
|
3674 |
\ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3675 |
product(intx, JavaPriority1_To_OSPriority, -1, \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3676 |
"Map Java priorities to OS priorities") \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3677 |
\ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3678 |
product(intx, JavaPriority2_To_OSPriority, -1, \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3679 |
"Map Java priorities to OS priorities") \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3680 |
\ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3681 |
product(intx, JavaPriority3_To_OSPriority, -1, \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3682 |
"Map Java priorities to OS priorities") \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3683 |
\ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3684 |
product(intx, JavaPriority4_To_OSPriority, -1, \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3685 |
"Map Java priorities to OS priorities") \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3686 |
\ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3687 |
product(intx, JavaPriority5_To_OSPriority, -1, \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3688 |
"Map Java priorities to OS priorities") \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3689 |
\ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3690 |
product(intx, JavaPriority6_To_OSPriority, -1, \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3691 |
"Map Java priorities to OS priorities") \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3692 |
\ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3693 |
product(intx, JavaPriority7_To_OSPriority, -1, \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3694 |
"Map Java priorities to OS priorities") \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3695 |
\ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3696 |
product(intx, JavaPriority8_To_OSPriority, -1, \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3697 |
"Map Java priorities to OS priorities") \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3698 |
\ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3699 |
product(intx, JavaPriority9_To_OSPriority, -1, \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3700 |
"Map Java priorities to OS priorities") \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3701 |
\ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3702 |
product(intx, JavaPriority10_To_OSPriority,-1, \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3703 |
"Map Java priorities to OS priorities") \ |
1 | 3704 |
\ |
11601
f359304c1856
7082553: Interpret Thread.setPriority(Thread.MAX_PRIORITY) to mean FX60 on Solaris 10 and 11
phh
parents:
11487
diff
changeset
|
3705 |
experimental(bool, UseCriticalJavaThreadPriority, false, \ |
f359304c1856
7082553: Interpret Thread.setPriority(Thread.MAX_PRIORITY) to mean FX60 on Solaris 10 and 11
phh
parents:
11487
diff
changeset
|
3706 |
"Java thread priority 10 maps to critical scheduling priority") \ |
f359304c1856
7082553: Interpret Thread.setPriority(Thread.MAX_PRIORITY) to mean FX60 on Solaris 10 and 11
phh
parents:
11487
diff
changeset
|
3707 |
\ |
f359304c1856
7082553: Interpret Thread.setPriority(Thread.MAX_PRIORITY) to mean FX60 on Solaris 10 and 11
phh
parents:
11487
diff
changeset
|
3708 |
experimental(bool, UseCriticalCompilerThreadPriority, false, \ |
f359304c1856
7082553: Interpret Thread.setPriority(Thread.MAX_PRIORITY) to mean FX60 on Solaris 10 and 11
phh
parents:
11487
diff
changeset
|
3709 |
"Compiler thread(s) run at critical scheduling priority") \ |
f359304c1856
7082553: Interpret Thread.setPriority(Thread.MAX_PRIORITY) to mean FX60 on Solaris 10 and 11
phh
parents:
11487
diff
changeset
|
3710 |
\ |
f359304c1856
7082553: Interpret Thread.setPriority(Thread.MAX_PRIORITY) to mean FX60 on Solaris 10 and 11
phh
parents:
11487
diff
changeset
|
3711 |
experimental(bool, UseCriticalCMSThreadPriority, false, \ |
f359304c1856
7082553: Interpret Thread.setPriority(Thread.MAX_PRIORITY) to mean FX60 on Solaris 10 and 11
phh
parents:
11487
diff
changeset
|
3712 |
"ConcurrentMarkSweep thread runs at critical scheduling priority")\ |
f359304c1856
7082553: Interpret Thread.setPriority(Thread.MAX_PRIORITY) to mean FX60 on Solaris 10 and 11
phh
parents:
11487
diff
changeset
|
3713 |
\ |
1 | 3714 |
/* compiler debugging */ \ |
3715 |
notproduct(intx, CompileTheWorldStartAt, 1, \ |
|
3716 |
"First class to consider when using +CompileTheWorld") \ |
|
3717 |
\ |
|
3718 |
notproduct(intx, CompileTheWorldStopAt, max_jint, \ |
|
3719 |
"Last class to consider when using +CompileTheWorld") \ |
|
3720 |
\ |
|
3721 |
develop(intx, NewCodeParameter, 0, \ |
|
3722 |
"Testing Only: Create a dedicated integer parameter before " \ |
|
3723 |
"putback") \ |
|
3724 |
\ |
|
3725 |
/* new oopmap storage allocation */ \ |
|
3726 |
develop(intx, MinOopMapAllocation, 8, \ |
|
3727 |
"Minimum number of OopMap entries in an OopMapSet") \ |
|
3728 |
\ |
|
3729 |
/* Background Compilation */ \ |
|
3730 |
develop(intx, LongCompileThreshold, 50, \ |
|
3731 |
"Used with +TraceLongCompiles") \ |
|
3732 |
\ |
|
3733 |
/* recompilation */ \ |
|
3734 |
product_pd(intx, CompileThreshold, \ |
|
3735 |
"number of interpreted method invocations before (re-)compiling") \ |
|
3736 |
\ |
|
27148
a4b542d56e01
8059604: Add CompileThresholdScaling flag to control when methods are first compiled (with and withour TieredCompilation)
zmajo
parents:
27143
diff
changeset
|
3737 |
product(double, CompileThresholdScaling, 1.0, \ |
a4b542d56e01
8059604: Add CompileThresholdScaling flag to control when methods are first compiled (with and withour TieredCompilation)
zmajo
parents:
27143
diff
changeset
|
3738 |
"Factor to control when first compilation happens " \ |
28650
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28477
diff
changeset
|
3739 |
"(both with and without tiered compilation): " \ |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28477
diff
changeset
|
3740 |
"values greater than 1.0 delay counter overflow, " \ |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28477
diff
changeset
|
3741 |
"values between 0 and 1.0 rush counter overflow, " \ |
28928
e3815b017664
8072398: assert fails in L1RGenerator::increment_event_counter_impl
zmajo
parents:
28650
diff
changeset
|
3742 |
"value of 1.0 leaves compilation thresholds unchanged " \ |
28650
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28477
diff
changeset
|
3743 |
"value of 0.0 is equivalent to -Xint. " \ |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28477
diff
changeset
|
3744 |
"" \ |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28477
diff
changeset
|
3745 |
"Flag can be set as per-method option. " \ |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28477
diff
changeset
|
3746 |
"If a value is specified for a method, compilation thresholds " \ |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28477
diff
changeset
|
3747 |
"for that method are scaled by both the value of the global flag "\ |
772aaab2582f
8059606: Enable per-method usage of CompileThresholdScaling (per-method compilation thresholds)
zmajo
parents:
28477
diff
changeset
|
3748 |
"and the value of the per-method flag.") \ |
27148
a4b542d56e01
8059604: Add CompileThresholdScaling flag to control when methods are first compiled (with and withour TieredCompilation)
zmajo
parents:
27143
diff
changeset
|
3749 |
\ |
6453 | 3750 |
product(intx, Tier0InvokeNotifyFreqLog, 7, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3751 |
"Interpreter (tier 0) invocation notification frequency") \ |
6453 | 3752 |
\ |
3753 |
product(intx, Tier2InvokeNotifyFreqLog, 11, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3754 |
"C1 without MDO (tier 2) invocation notification frequency") \ |
6453 | 3755 |
\ |
3756 |
product(intx, Tier3InvokeNotifyFreqLog, 10, \ |
|
3757 |
"C1 with MDO profiling (tier 3) invocation notification " \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3758 |
"frequency") \ |
6453 | 3759 |
\ |
10569
f5ce1108443b
7096639: Tiered: Incorrect counter overflow handling for inlined methods
iveresov
parents:
10565
diff
changeset
|
3760 |
product(intx, Tier23InlineeNotifyFreqLog, 20, \ |
f5ce1108443b
7096639: Tiered: Incorrect counter overflow handling for inlined methods
iveresov
parents:
10565
diff
changeset
|
3761 |
"Inlinee invocation (tiers 2 and 3) notification frequency") \ |
f5ce1108443b
7096639: Tiered: Incorrect counter overflow handling for inlined methods
iveresov
parents:
10565
diff
changeset
|
3762 |
\ |
6453 | 3763 |
product(intx, Tier0BackedgeNotifyFreqLog, 10, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3764 |
"Interpreter (tier 0) invocation notification frequency") \ |
6453 | 3765 |
\ |
3766 |
product(intx, Tier2BackedgeNotifyFreqLog, 14, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3767 |
"C1 without MDO (tier 2) invocation notification frequency") \ |
6453 | 3768 |
\ |
3769 |
product(intx, Tier3BackedgeNotifyFreqLog, 13, \ |
|
3770 |
"C1 with MDO profiling (tier 3) invocation notification " \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3771 |
"frequency") \ |
6453 | 3772 |
\ |
3773 |
product(intx, Tier2CompileThreshold, 0, \ |
|
3774 |
"threshold at which tier 2 compilation is invoked") \ |
|
3775 |
\ |
|
3776 |
product(intx, Tier2BackEdgeThreshold, 0, \ |
|
3777 |
"Back edge threshold at which tier 2 compilation is invoked") \ |
|
3778 |
\ |
|
3779 |
product(intx, Tier3InvocationThreshold, 200, \ |
|
3780 |
"Compile if number of method invocations crosses this " \ |
|
3781 |
"threshold") \ |
|
3782 |
\ |
|
3783 |
product(intx, Tier3MinInvocationThreshold, 100, \ |
|
3784 |
"Minimum invocation to compile at tier 3") \ |
|
3785 |
\ |
|
3786 |
product(intx, Tier3CompileThreshold, 2000, \ |
|
3787 |
"Threshold at which tier 3 compilation is invoked (invocation " \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3788 |
"minimum must be satisfied") \ |
6453 | 3789 |
\ |
11566
351229eec596
7132945: Tiered: adjust OSR threshold of level 3
iveresov
parents:
11487
diff
changeset
|
3790 |
product(intx, Tier3BackEdgeThreshold, 60000, \ |
6453 | 3791 |
"Back edge threshold at which tier 3 OSR compilation is invoked") \ |
3792 |
\ |
|
3793 |
product(intx, Tier4InvocationThreshold, 5000, \ |
|
3794 |
"Compile if number of method invocations crosses this " \ |
|
3795 |
"threshold") \ |
|
3796 |
\ |
|
3797 |
product(intx, Tier4MinInvocationThreshold, 600, \ |
|
3798 |
"Minimum invocation to compile at tier 4") \ |
|
3799 |
\ |
|
3800 |
product(intx, Tier4CompileThreshold, 15000, \ |
|
3801 |
"Threshold at which tier 4 compilation is invoked (invocation " \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3802 |
"minimum must be satisfied") \ |
6453 | 3803 |
\ |
3804 |
product(intx, Tier4BackEdgeThreshold, 40000, \ |
|
3805 |
"Back edge threshold at which tier 4 OSR compilation is invoked") \ |
|
3806 |
\ |
|
3807 |
product(intx, Tier3DelayOn, 5, \ |
|
3808 |
"If C2 queue size grows over this amount per compiler thread " \ |
|
3809 |
"stop compiling at tier 3 and start compiling at tier 2") \ |
|
3810 |
\ |
|
3811 |
product(intx, Tier3DelayOff, 2, \ |
|
3812 |
"If C2 queue size is less than this amount per compiler thread " \ |
|
3813 |
"allow methods compiled at tier 2 transition to tier 3") \ |
|
3814 |
\ |
|
3815 |
product(intx, Tier3LoadFeedback, 5, \ |
|
3816 |
"Tier 3 thresholds will increase twofold when C1 queue size " \ |
|
3817 |
"reaches this amount per compiler thread") \ |
|
3818 |
\ |
|
3819 |
product(intx, Tier4LoadFeedback, 3, \ |
|
3820 |
"Tier 4 thresholds will increase twofold when C2 queue size " \ |
|
3821 |
"reaches this amount per compiler thread") \ |
|
3822 |
\ |
|
3823 |
product(intx, TieredCompileTaskTimeout, 50, \ |
|
3824 |
"Kill compile task if method was not used within " \ |
|
3825 |
"given timeout in milliseconds") \ |
|
3826 |
\ |
|
3827 |
product(intx, TieredStopAtLevel, 4, \ |
|
3828 |
"Stop at given compilation level") \ |
|
3829 |
\ |
|
3830 |
product(intx, Tier0ProfilingStartPercentage, 200, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3831 |
"Start profiling in interpreter if the counters exceed tier 3 " \ |
6453 | 3832 |
"thresholds by the specified percentage") \ |
3833 |
\ |
|
17617
4e330bce1812
8012371: Adjust Tiered compile threshold according to available space in code cache
anoll
parents:
17398
diff
changeset
|
3834 |
product(uintx, IncreaseFirstTierCompileThresholdAt, 50, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3835 |
"Increase the compile threshold for C1 compilation if the code " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3836 |
"cache is filled by the specified percentage") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3837 |
range(0, 99) \ |
17617
4e330bce1812
8012371: Adjust Tiered compile threshold according to available space in code cache
anoll
parents:
17398
diff
changeset
|
3838 |
\ |
6453 | 3839 |
product(intx, TieredRateUpdateMinTime, 1, \ |
3840 |
"Minimum rate sampling interval (in milliseconds)") \ |
|
3841 |
\ |
|
3842 |
product(intx, TieredRateUpdateMaxTime, 25, \ |
|
3843 |
"Maximum rate sampling interval (in milliseconds)") \ |
|
1 | 3844 |
\ |
3845 |
product_pd(bool, TieredCompilation, \ |
|
6453 | 3846 |
"Enable tiered compilation") \ |
3847 |
\ |
|
3848 |
product(bool, PrintTieredEvents, false, \ |
|
3849 |
"Print tiered events notifications") \ |
|
1 | 3850 |
\ |
3851 |
product_pd(intx, OnStackReplacePercentage, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3852 |
"NON_TIERED number of method invocations/branches (expressed as " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3853 |
"% of CompileThreshold) before (re-)compiling OSR code") \ |
1 | 3854 |
\ |
3855 |
product(intx, InterpreterProfilePercentage, 33, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3856 |
"NON_TIERED number of method invocations/branches (expressed as " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3857 |
"% of CompileThreshold) before profiling in the interpreter") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3858 |
range(0, 100) \ |
1 | 3859 |
\ |
3860 |
develop(intx, MaxRecompilationSearchLength, 10, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3861 |
"The maximum number of frames to inspect when searching for " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3862 |
"recompilee") \ |
1 | 3863 |
\ |
3864 |
develop(intx, MaxInterpretedSearchLength, 3, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3865 |
"The maximum number of interpreted frames to skip when searching "\ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3866 |
"for recompilee") \ |
1 | 3867 |
\ |
3868 |
develop(intx, DesiredMethodLimit, 8000, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3869 |
"The desired maximum method size (in bytecodes) after inlining") \ |
1 | 3870 |
\ |
3871 |
develop(intx, HugeMethodLimit, 8000, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3872 |
"Don't compile methods larger than this if " \ |
1 | 3873 |
"+DontCompileHugeMethods") \ |
3874 |
\ |
|
3875 |
/* New JDK 1.4 reflection implementation */ \ |
|
3876 |
\ |
|
3877 |
develop(intx, FastSuperclassLimit, 8, \ |
|
3878 |
"Depth of hardwired instanceof accelerator array") \ |
|
3879 |
\ |
|
3880 |
/* Properties for Java libraries */ \ |
|
3881 |
\ |
|
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
3882 |
product(size_t, MaxDirectMemorySize, 0, \ |
1 | 3883 |
"Maximum total size of NIO direct-buffer allocations") \ |
3884 |
\ |
|
22551 | 3885 |
/* Flags used for temporary code during development */ \ |
1 | 3886 |
\ |
3887 |
diagnostic(bool, UseNewCode, false, \ |
|
3888 |
"Testing Only: Use the new version while testing") \ |
|
3889 |
\ |
|
3890 |
diagnostic(bool, UseNewCode2, false, \ |
|
3891 |
"Testing Only: Use the new version while testing") \ |
|
3892 |
\ |
|
3893 |
diagnostic(bool, UseNewCode3, false, \ |
|
3894 |
"Testing Only: Use the new version while testing") \ |
|
3895 |
\ |
|
3896 |
/* flags for performance data collection */ \ |
|
3897 |
\ |
|
10020
9325b4244ec4
7061192: option handling adjustments for oracle and embedded builds
jcoomes
parents:
10003
diff
changeset
|
3898 |
product(bool, UsePerfData, falseInEmbedded, \ |
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3899 |
"Flag to disable jvmstat instrumentation for performance testing "\ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3900 |
"and problem isolation purposes") \ |
1 | 3901 |
\ |
3902 |
product(bool, PerfDataSaveToFile, false, \ |
|
3903 |
"Save PerfData memory to hsperfdata_<pid> file on exit") \ |
|
3904 |
\ |
|
3905 |
product(ccstr, PerfDataSaveFile, NULL, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3906 |
"Save PerfData memory to the specified absolute pathname. " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3907 |
"The string %p in the file name (if present) " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3908 |
"will be replaced by pid") \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3909 |
\ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3910 |
product(intx, PerfDataSamplingInterval, 50, \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3911 |
"Data sampling interval (in milliseconds)") \ |
1 | 3912 |
\ |
3913 |
develop(bool, PerfTraceDataCreation, false, \ |
|
3914 |
"Trace creation of Performance Data Entries") \ |
|
3915 |
\ |
|
3916 |
develop(bool, PerfTraceMemOps, false, \ |
|
3917 |
"Trace PerfMemory create/attach/detach calls") \ |
|
3918 |
\ |
|
3919 |
product(bool, PerfDisableSharedMem, false, \ |
|
3920 |
"Store performance data in standard memory") \ |
|
3921 |
\ |
|
3922 |
product(intx, PerfDataMemorySize, 32*K, \ |
|
3923 |
"Size of performance data memory region. Will be rounded " \ |
|
3924 |
"up to a multiple of the native os page size.") \ |
|
3925 |
\ |
|
3926 |
product(intx, PerfMaxStringConstLength, 1024, \ |
|
3927 |
"Maximum PerfStringConstant string length before truncation") \ |
|
3928 |
\ |
|
3929 |
product(bool, PerfAllowAtExitRegistration, false, \ |
|
3930 |
"Allow registration of atexit() methods") \ |
|
3931 |
\ |
|
3932 |
product(bool, PerfBypassFileSystemCheck, false, \ |
|
3933 |
"Bypass Win32 file system criteria checks (Windows Only)") \ |
|
3934 |
\ |
|
3935 |
product(intx, UnguardOnExecutionViolation, 0, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3936 |
"Unguard page and retry on no-execute fault (Win32 only) " \ |
1 | 3937 |
"0=off, 1=conservative, 2=aggressive") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
3938 |
range(0, 2) \ |
1 | 3939 |
\ |
3940 |
/* Serviceability Support */ \ |
|
3941 |
\ |
|
3942 |
product(bool, ManagementServer, false, \ |
|
3943 |
"Create JMX Management Server") \ |
|
3944 |
\ |
|
3945 |
product(bool, DisableAttachMechanism, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3946 |
"Disable mechanism that allows tools to attach to this VM") \ |
1 | 3947 |
\ |
3948 |
product(bool, StartAttachListener, false, \ |
|
3949 |
"Always start Attach Listener at VM startup") \ |
|
3950 |
\ |
|
3951 |
manageable(bool, PrintConcurrentLocks, false, \ |
|
3952 |
"Print java.util.concurrent locks in thread dump") \ |
|
3953 |
\ |
|
8124
70ed6d8368bc
7019718: make error reporting flags product instead of diagnostic
kamg
parents:
8119
diff
changeset
|
3954 |
product(bool, TransmitErrorReport, false, \ |
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
3955 |
"Enable error report transmission on erroneous termination") \ |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
3956 |
\ |
8124
70ed6d8368bc
7019718: make error reporting flags product instead of diagnostic
kamg
parents:
8119
diff
changeset
|
3957 |
product(ccstr, ErrorReportServer, NULL, \ |
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
3958 |
"Override built-in error report server address") \ |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
8107
diff
changeset
|
3959 |
\ |
1 | 3960 |
/* Shared spaces */ \ |
3961 |
\ |
|
3962 |
product(bool, UseSharedSpaces, true, \ |
|
15101
58d43bf04c45
8005076: Creating a CDS archive with one alignment and running another causes a crash.
hseigel
parents:
14835
diff
changeset
|
3963 |
"Use shared spaces for metadata") \ |
1 | 3964 |
\ |
27025 | 3965 |
product(bool, VerifySharedSpaces, false, \ |
3966 |
"Verify shared spaces (false for default archive, true for " \ |
|
3967 |
"archive specified by -XX:SharedArchiveFile)") \ |
|
3968 |
\ |
|
1 | 3969 |
product(bool, RequireSharedSpaces, false, \ |
15101
58d43bf04c45
8005076: Creating a CDS archive with one alignment and running another causes a crash.
hseigel
parents:
14835
diff
changeset
|
3970 |
"Require shared spaces for metadata") \ |
1 | 3971 |
\ |
3972 |
product(bool, DumpSharedSpaces, false, \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3973 |
"Special mode: JVM reads a class list, loads classes, builds " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3974 |
"shared spaces, and dumps the shared spaces to a file to be " \ |
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
3975 |
"used in future JVM runs") \ |
1 | 3976 |
\ |
3977 |
product(bool, PrintSharedSpaces, false, \ |
|
3978 |
"Print usage of shared spaces") \ |
|
3979 |
\ |
|
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25950
diff
changeset
|
3980 |
product(bool, PrintSharedArchiveAndExit, false, \ |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25950
diff
changeset
|
3981 |
"Print shared archive file contents") \ |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25950
diff
changeset
|
3982 |
\ |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25950
diff
changeset
|
3983 |
product(bool, PrintSharedDictionary, false, \ |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25950
diff
changeset
|
3984 |
"If PrintSharedArchiveAndExit is true, also print the shared " \ |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25950
diff
changeset
|
3985 |
"dictionary") \ |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25950
diff
changeset
|
3986 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
3987 |
product(size_t, SharedReadWriteSize, NOT_LP64(12*M) LP64_ONLY(16*M), \ |
15101
58d43bf04c45
8005076: Creating a CDS archive with one alignment and running another causes a crash.
hseigel
parents:
14835
diff
changeset
|
3988 |
"Size of read-write space for metadata (in bytes)") \ |
1 | 3989 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
29459
diff
changeset
|
3990 |
product(size_t, SharedReadOnlySize, NOT_LP64(12*M) LP64_ONLY(16*M), \ |
15101
58d43bf04c45
8005076: Creating a CDS archive with one alignment and running another causes a crash.
hseigel
parents:
14835
diff
changeset
|
3991 |
"Size of read-only space for metadata (in bytes)") \ |
1 | 3992 |
\ |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
3993 |
product(uintx, SharedMiscDataSize, NOT_LP64(2*M) LP64_ONLY(4*M), \ |
15101
58d43bf04c45
8005076: Creating a CDS archive with one alignment and running another causes a crash.
hseigel
parents:
14835
diff
changeset
|
3994 |
"Size of the shared miscellaneous data area (in bytes)") \ |
1 | 3995 |
\ |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13521
diff
changeset
|
3996 |
product(uintx, SharedMiscCodeSize, 120*K, \ |
15101
58d43bf04c45
8005076: Creating a CDS archive with one alignment and running another causes a crash.
hseigel
parents:
14835
diff
changeset
|
3997 |
"Size of the shared miscellaneous code area (in bytes)") \ |
1 | 3998 |
\ |
16430
882cddc35bec
8008217: CDS: Class data sharing limits the malloc heap on Solaris
coleenp
parents:
16428
diff
changeset
|
3999 |
product(uintx, SharedBaseAddress, LP64_ONLY(32*G) \ |
882cddc35bec
8008217: CDS: Class data sharing limits the malloc heap on Solaris
coleenp
parents:
16428
diff
changeset
|
4000 |
NOT_LP64(LINUX_ONLY(2*G) NOT_LINUX(0)), \ |
882cddc35bec
8008217: CDS: Class data sharing limits the malloc heap on Solaris
coleenp
parents:
16428
diff
changeset
|
4001 |
"Address to allocate shared memory region for class data") \ |
1 | 4002 |
\ |
28363
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
28174
diff
changeset
|
4003 |
product(uintx, SharedSymbolTableBucketSize, 4, \ |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
28174
diff
changeset
|
4004 |
"Average number of symbols per bucket in shared table") \ |
047115468f16
8059510: Compact symbol table layout inside shared archive.
jiangli
parents:
28174
diff
changeset
|
4005 |
\ |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25950
diff
changeset
|
4006 |
diagnostic(bool, IgnoreUnverifiableClassesDuringDump, false, \ |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25950
diff
changeset
|
4007 |
"Do not quit -Xshare:dump even if we encounter unverifiable " \ |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25950
diff
changeset
|
4008 |
"classes. Just exclude them from the shared dictionary.") \ |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25950
diff
changeset
|
4009 |
\ |
9980
a330de5dea17
7052219: JSR 292: Crash in ~BufferBlob::MethodHandles adapters
never
parents:
9968
diff
changeset
|
4010 |
diagnostic(bool, PrintMethodHandleStubs, false, \ |
a330de5dea17
7052219: JSR 292: Crash in ~BufferBlob::MethodHandles adapters
never
parents:
9968
diff
changeset
|
4011 |
"Print generated stub code for method handles") \ |
a330de5dea17
7052219: JSR 292: Crash in ~BufferBlob::MethodHandles adapters
never
parents:
9968
diff
changeset
|
4012 |
\ |
2534 | 4013 |
develop(bool, TraceMethodHandles, false, \ |
4014 |
"trace internal method handle operations") \ |
|
4015 |
\ |
|
4016 |
diagnostic(bool, VerifyMethodHandles, trueInDebug, \ |
|
4017 |
"perform extra checks when constructing method handles") \ |
|
4018 |
\ |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13197
diff
changeset
|
4019 |
diagnostic(bool, ShowHiddenFrames, false, \ |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13197
diff
changeset
|
4020 |
"show method handle implementation frames (usually hidden)") \ |
9946
b3d5b50e2289
7045513: JSR 292 inlining causes crashes in methodHandleWalk.cpp
never
parents:
9942
diff
changeset
|
4021 |
\ |
4644
2b1a1bc98168
6912065: final fields in objects need to support inlining optimizations for JSR 292
jrose
parents:
4586
diff
changeset
|
4022 |
experimental(bool, TrustFinalNonStaticFields, false, \ |
2b1a1bc98168
6912065: final fields in objects need to support inlining optimizations for JSR 292
jrose
parents:
4586
diff
changeset
|
4023 |
"trust final non-static declarations for constant folding") \ |
2b1a1bc98168
6912065: final fields in objects need to support inlining optimizations for JSR 292
jrose
parents:
4586
diff
changeset
|
4024 |
\ |
23192 | 4025 |
diagnostic(bool, FoldStableValues, true, \ |
4026 |
"Optimize loads from stable fields (marked w/ @Stable)") \ |
|
19770
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
19704
diff
changeset
|
4027 |
\ |
2570
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2536
diff
changeset
|
4028 |
develop(bool, TraceInvokeDynamic, false, \ |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2536
diff
changeset
|
4029 |
"trace internal invoke dynamic operations") \ |
ecc7862946d4
6655646: dynamic languages need dynamically linked call sites
jrose
parents:
2536
diff
changeset
|
4030 |
\ |
1 | 4031 |
diagnostic(bool, PauseAtStartup, false, \ |
4032 |
"Causes the VM to pause at startup time and wait for the pause " \ |
|
4033 |
"file to be removed (default: ./vm.paused.<pid>)") \ |
|
4034 |
\ |
|
4035 |
diagnostic(ccstr, PauseAtStartupFile, NULL, \ |
|
4036 |
"The file to create and for whose removal to await when pausing " \ |
|
4037 |
"at startup. (default: ./vm.paused.<pid>)") \ |
|
4038 |
\ |
|
8476
7e34c2d4cf9b
7022037: Pause when exiting if debugger is attached on windows
sla
parents:
8335
diff
changeset
|
4039 |
diagnostic(bool, PauseAtExit, false, \ |
7e34c2d4cf9b
7022037: Pause when exiting if debugger is attached on windows
sla
parents:
8335
diff
changeset
|
4040 |
"Pause and wait for keypress on exit if a debugger is attached") \ |
7e34c2d4cf9b
7022037: Pause when exiting if debugger is attached on windows
sla
parents:
8335
diff
changeset
|
4041 |
\ |
1 | 4042 |
product(bool, ExtendedDTraceProbes, false, \ |
4043 |
"Enable performance-impacting dtrace probes") \ |
|
4044 |
\ |
|
4045 |
product(bool, DTraceMethodProbes, false, \ |
|
4046 |
"Enable dtrace probes for method-entry and method-exit") \ |
|
4047 |
\ |
|
4048 |
product(bool, DTraceAllocProbes, false, \ |
|
4049 |
"Enable dtrace probes for object allocation") \ |
|
4050 |
\ |
|
4051 |
product(bool, DTraceMonitorProbes, false, \ |
|
4052 |
"Enable dtrace probes for monitor events") \ |
|
4053 |
\ |
|
4054 |
product(bool, RelaxAccessControlCheck, false, \ |
|
4055 |
"Relax the access control checks in the verifier") \ |
|
4056 |
\ |
|
14487
9a40ad461ee9
7122219: Passed StringTableSize value not verified
hseigel
parents:
14386
diff
changeset
|
4057 |
product(uintx, StringTableSize, defaultStringTableSize, \ |
8727 | 4058 |
"Number of buckets in the interned String table") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4059 |
range(minimumStringTableSize, 111*defaultStringTableSize) \ |
8727 | 4060 |
\ |
20393
0675c0224a5a
8019375: Internal symbol table size should be tunable.
kevinw
parents:
20292
diff
changeset
|
4061 |
experimental(uintx, SymbolTableSize, defaultSymbolTableSize, \ |
0675c0224a5a
8019375: Internal symbol table size should be tunable.
kevinw
parents:
20292
diff
changeset
|
4062 |
"Number of buckets in the JVM internal Symbol table") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4063 |
range(minimumSymbolTableSize, 111*defaultSymbolTableSize) \ |
20393
0675c0224a5a
8019375: Internal symbol table size should be tunable.
kevinw
parents:
20292
diff
changeset
|
4064 |
\ |
23472 | 4065 |
product(bool, UseStringDeduplication, false, \ |
4066 |
"Use string deduplication") \ |
|
4067 |
\ |
|
4068 |
product(bool, PrintStringDeduplicationStatistics, false, \ |
|
4069 |
"Print string deduplication statistics") \ |
|
4070 |
\ |
|
4071 |
product(uintx, StringDeduplicationAgeThreshold, 3, \ |
|
4072 |
"A string must reach this age (or be promoted to an old region) " \ |
|
4073 |
"to be considered for deduplication") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4074 |
range(1, markOopDesc::max_age) \ |
23472 | 4075 |
\ |
4076 |
diagnostic(bool, StringDeduplicationResizeALot, false, \ |
|
4077 |
"Force table resize every time the table is scanned") \ |
|
4078 |
\ |
|
4079 |
diagnostic(bool, StringDeduplicationRehashALot, false, \ |
|
4080 |
"Force table rehash every time the table is scanned") \ |
|
4081 |
\ |
|
14385 | 4082 |
develop(bool, TraceDefaultMethods, false, \ |
4083 |
"Trace the default method processing steps") \ |
|
4084 |
\ |
|
12095 | 4085 |
diagnostic(bool, WhiteBoxAPI, false, \ |
12630
ddf6ee008138
7166894: Add gc cause to GC logging for all collectors
brutisso
parents:
12263
diff
changeset
|
4086 |
"Enable internal testing APIs") \ |
ddf6ee008138
7166894: Add gc cause to GC logging for all collectors
brutisso
parents:
12263
diff
changeset
|
4087 |
\ |
ddf6ee008138
7166894: Add gc cause to GC logging for all collectors
brutisso
parents:
12263
diff
changeset
|
4088 |
product(bool, PrintGCCause, true, \ |
15918 | 4089 |
"Include GC cause in GC logging") \ |
4090 |
\ |
|
25905
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
25630
diff
changeset
|
4091 |
experimental(intx, SurvivorAlignmentInBytes, 0, \ |
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
25630
diff
changeset
|
4092 |
"Default survivor space alignment in bytes") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4093 |
constraint(SurvivorAlignmentInBytesConstraintFunc) \ |
25905
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
25630
diff
changeset
|
4094 |
\ |
16682
4e30a46f6b76
7197666: java -d64 -version core dumps in a box with lots of memory
brutisso
parents:
16680
diff
changeset
|
4095 |
product(bool , AllowNonVirtualCalls, false, \ |
4e30a46f6b76
7197666: java -d64 -version core dumps in a box with lots of memory
brutisso
parents:
16680
diff
changeset
|
4096 |
"Obey the ACC_SUPER flag and allow invokenonvirtual calls") \ |
4e30a46f6b76
7197666: java -d64 -version core dumps in a box with lots of memory
brutisso
parents:
16680
diff
changeset
|
4097 |
\ |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25950
diff
changeset
|
4098 |
product(ccstr, DumpLoadedClassList, NULL, \ |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25950
diff
changeset
|
4099 |
"Dump the names all loaded classes, that could be stored into " \ |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25950
diff
changeset
|
4100 |
"the CDS archive, in the specified file") \ |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25950
diff
changeset
|
4101 |
\ |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25950
diff
changeset
|
4102 |
product(ccstr, SharedClassListFile, NULL, \ |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25950
diff
changeset
|
4103 |
"Override the default CDS class list") \ |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25950
diff
changeset
|
4104 |
\ |
17375
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
17374
diff
changeset
|
4105 |
diagnostic(ccstr, SharedArchiveFile, NULL, \ |
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
17374
diff
changeset
|
4106 |
"Override the default location of the CDS archive file") \ |
e9554fd82263
8014138: Add VM option to facilitate the writing of CDS tests
hseigel
parents:
17374
diff
changeset
|
4107 |
\ |
26135
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25950
diff
changeset
|
4108 |
product(ccstr, ExtraSharedClassListFile, NULL, \ |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25950
diff
changeset
|
4109 |
"Extra classlist for building the CDS archive file") \ |
82b516c550f7
8046070: Class Data Sharing clean up and refactoring
iklam
parents:
25950
diff
changeset
|
4110 |
\ |
25959 | 4111 |
experimental(size_t, ArrayAllocatorMallocLimit, \ |
4112 |
SOLARIS_ONLY(64*K) NOT_SOLARIS((size_t)-1), \ |
|
16682
4e30a46f6b76
7197666: java -d64 -version core dumps in a box with lots of memory
brutisso
parents:
16680
diff
changeset
|
4113 |
"Allocation less than this value will be allocated " \ |
18025 | 4114 |
"using malloc. Larger allocations will use mmap.") \ |
4115 |
\ |
|
23189
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
22916
diff
changeset
|
4116 |
experimental(bool, AlwaysAtomicAccesses, false, \ |
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
22916
diff
changeset
|
4117 |
"Accesses to all variables should always be atomic") \ |
27cf1316709b
8033380: Experimental VM flag to enforce access atomicity
shade
parents:
22916
diff
changeset
|
4118 |
\ |
18025 | 4119 |
product(bool, EnableTracing, false, \ |
4120 |
"Enable event-based tracing") \ |
|
20404
2e17d4cd1fc2
8010506: Typos and errors in descriptions of vm options in globals.hpp
tamao
parents:
20065
diff
changeset
|
4121 |
\ |
18025 | 4122 |
product(bool, UseLockedTracing, false, \ |
30209
8ea30dc99369
8026049: (bf) Intrinsify ByteBuffer.put{Int, Double, Float, ...} methods
aph
parents:
29698
diff
changeset
|
4123 |
"Use locked-tracing when doing event-based tracing") \ |
8ea30dc99369
8026049: (bf) Intrinsify ByteBuffer.put{Int, Double, Float, ...} methods
aph
parents:
29698
diff
changeset
|
4124 |
\ |
8ea30dc99369
8026049: (bf) Intrinsify ByteBuffer.put{Int, Double, Float, ...} methods
aph
parents:
29698
diff
changeset
|
4125 |
diagnostic(bool, UseUnalignedAccesses, false, \ |
30305
b92a97e1e9cb
8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents:
30302
diff
changeset
|
4126 |
"Use unaligned memory accesses in sun.misc.Unsafe") \ |
b92a97e1e9cb
8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents:
30302
diff
changeset
|
4127 |
\ |
b92a97e1e9cb
8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents:
30302
diff
changeset
|
4128 |
product_pd(bool, PreserveFramePointer, \ |
b92a97e1e9cb
8068945: Use RBP register as proper frame pointer in JIT compiled code on x86
zmajo
parents:
30302
diff
changeset
|
4129 |
"Use the FP register for holding the frame pointer " \ |
31587
e48945b7849c
8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents:
31515
diff
changeset
|
4130 |
"and not as a general purpose register.") \ |
e48945b7849c
8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents:
31515
diff
changeset
|
4131 |
\ |
31862
8673bd4db4b1
8131326: Enable CheckIntrinsics in all types of builds
zmajo
parents:
31635
diff
changeset
|
4132 |
diagnostic(bool, CheckIntrinsics, true, \ |
31587
e48945b7849c
8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents:
31515
diff
changeset
|
4133 |
"When a class C is loaded, check that " \ |
e48945b7849c
8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents:
31515
diff
changeset
|
4134 |
"(1) all intrinsics defined by the VM for class C are present "\ |
e48945b7849c
8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents:
31515
diff
changeset
|
4135 |
"in the loaded class file and are marked with the " \ |
31862
8673bd4db4b1
8131326: Enable CheckIntrinsics in all types of builds
zmajo
parents:
31635
diff
changeset
|
4136 |
"@HotSpotIntrinsicCandidate annotation, that " \ |
31587
e48945b7849c
8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents:
31515
diff
changeset
|
4137 |
"(2) there is an intrinsic registered for all loaded methods " \ |
e48945b7849c
8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents:
31515
diff
changeset
|
4138 |
"that are annotated with the @HotSpotIntrinsicCandidate " \ |
31862
8673bd4db4b1
8131326: Enable CheckIntrinsics in all types of builds
zmajo
parents:
31635
diff
changeset
|
4139 |
"annotation, and that " \ |
8673bd4db4b1
8131326: Enable CheckIntrinsics in all types of builds
zmajo
parents:
31635
diff
changeset
|
4140 |
"(3) no orphan methods exist for class C (i.e., methods for " \ |
8673bd4db4b1
8131326: Enable CheckIntrinsics in all types of builds
zmajo
parents:
31635
diff
changeset
|
4141 |
"which the VM declares an intrinsic but that are not declared "\ |
8673bd4db4b1
8131326: Enable CheckIntrinsics in all types of builds
zmajo
parents:
31635
diff
changeset
|
4142 |
"in the loaded class C. " \ |
8673bd4db4b1
8131326: Enable CheckIntrinsics in all types of builds
zmajo
parents:
31635
diff
changeset
|
4143 |
"Check (3) is available only in debug builds.") |
18025 | 4144 |
|
1 | 4145 |
/* |
4146 |
* Macros for factoring of globals |
|
4147 |
*/ |
|
4148 |
||
4149 |
// Interface macros |
|
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
4150 |
#define DECLARE_PRODUCT_FLAG(type, name, value, doc) extern "C" type name; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
4151 |
#define DECLARE_PD_PRODUCT_FLAG(type, name, doc) extern "C" type name; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
4152 |
#define DECLARE_DIAGNOSTIC_FLAG(type, name, value, doc) extern "C" type name; |
1382
fa3de4068282
6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents:
1380
diff
changeset
|
4153 |
#define DECLARE_EXPERIMENTAL_FLAG(type, name, value, doc) extern "C" type name; |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
4154 |
#define DECLARE_MANAGEABLE_FLAG(type, name, value, doc) extern "C" type name; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
4155 |
#define DECLARE_PRODUCT_RW_FLAG(type, name, value, doc) extern "C" type name; |
1 | 4156 |
#ifdef PRODUCT |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
4157 |
#define DECLARE_DEVELOPER_FLAG(type, name, value, doc) extern "C" type CONST_##name; const type name = value; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
4158 |
#define DECLARE_PD_DEVELOPER_FLAG(type, name, doc) extern "C" type CONST_##name; const type name = pd_##name; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
4159 |
#define DECLARE_NOTPRODUCT_FLAG(type, name, value, doc) extern "C" type CONST_##name; |
1 | 4160 |
#else |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
4161 |
#define DECLARE_DEVELOPER_FLAG(type, name, value, doc) extern "C" type name; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
4162 |
#define DECLARE_PD_DEVELOPER_FLAG(type, name, doc) extern "C" type name; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
4163 |
#define DECLARE_NOTPRODUCT_FLAG(type, name, value, doc) extern "C" type name; |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4164 |
#endif // PRODUCT |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
356
diff
changeset
|
4165 |
// Special LP64 flags, product only needed for now. |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
356
diff
changeset
|
4166 |
#ifdef _LP64 |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
356
diff
changeset
|
4167 |
#define DECLARE_LP64_PRODUCT_FLAG(type, name, value, doc) extern "C" type name; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
356
diff
changeset
|
4168 |
#else |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
356
diff
changeset
|
4169 |
#define DECLARE_LP64_PRODUCT_FLAG(type, name, value, doc) const type name = value; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
356
diff
changeset
|
4170 |
#endif // _LP64 |
1 | 4171 |
|
4172 |
// Implementation macros |
|
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
4173 |
#define MATERIALIZE_PRODUCT_FLAG(type, name, value, doc) type name = value; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
4174 |
#define MATERIALIZE_PD_PRODUCT_FLAG(type, name, doc) type name = pd_##name; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
4175 |
#define MATERIALIZE_DIAGNOSTIC_FLAG(type, name, value, doc) type name = value; |
1382
fa3de4068282
6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents:
1380
diff
changeset
|
4176 |
#define MATERIALIZE_EXPERIMENTAL_FLAG(type, name, value, doc) type name = value; |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
4177 |
#define MATERIALIZE_MANAGEABLE_FLAG(type, name, value, doc) type name = value; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
4178 |
#define MATERIALIZE_PRODUCT_RW_FLAG(type, name, value, doc) type name = value; |
1 | 4179 |
#ifdef PRODUCT |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
4180 |
#define MATERIALIZE_DEVELOPER_FLAG(type, name, value, doc) type CONST_##name = value; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
4181 |
#define MATERIALIZE_PD_DEVELOPER_FLAG(type, name, doc) type CONST_##name = pd_##name; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
4182 |
#define MATERIALIZE_NOTPRODUCT_FLAG(type, name, value, doc) type CONST_##name = value; |
1 | 4183 |
#else |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
4184 |
#define MATERIALIZE_DEVELOPER_FLAG(type, name, value, doc) type name = value; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
4185 |
#define MATERIALIZE_PD_DEVELOPER_FLAG(type, name, doc) type name = pd_##name; |
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
4186 |
#define MATERIALIZE_NOTPRODUCT_FLAG(type, name, value, doc) type name = value; |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4187 |
#endif // PRODUCT |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
356
diff
changeset
|
4188 |
#ifdef _LP64 |
20288
e2d549f40de9
8024545: make develop and notproduct flag values available in product builds
twisti
parents:
20022
diff
changeset
|
4189 |
#define MATERIALIZE_LP64_PRODUCT_FLAG(type, name, value, doc) type name = value; |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
356
diff
changeset
|
4190 |
#else |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
356
diff
changeset
|
4191 |
#define MATERIALIZE_LP64_PRODUCT_FLAG(type, name, value, doc) /* flag is constant */ |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
356
diff
changeset
|
4192 |
#endif // _LP64 |
1 | 4193 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4194 |
// Only materialize src code for range checking when required, ignore otherwise |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4195 |
#define IGNORE_RANGE(a, b) |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4196 |
// Only materialize src code for contraint checking when required, ignore otherwise |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4197 |
#define IGNORE_CONSTRAINT(func) |
1 | 4198 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4199 |
RUNTIME_FLAGS(DECLARE_DEVELOPER_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4200 |
DECLARE_PD_DEVELOPER_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4201 |
DECLARE_PRODUCT_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4202 |
DECLARE_PD_PRODUCT_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4203 |
DECLARE_DIAGNOSTIC_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4204 |
DECLARE_EXPERIMENTAL_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4205 |
DECLARE_NOTPRODUCT_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4206 |
DECLARE_MANAGEABLE_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4207 |
DECLARE_PRODUCT_RW_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4208 |
DECLARE_LP64_PRODUCT_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4209 |
IGNORE_RANGE, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4210 |
IGNORE_CONSTRAINT) |
7397 | 4211 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4212 |
RUNTIME_OS_FLAGS(DECLARE_DEVELOPER_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4213 |
DECLARE_PD_DEVELOPER_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4214 |
DECLARE_PRODUCT_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4215 |
DECLARE_PD_PRODUCT_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4216 |
DECLARE_DIAGNOSTIC_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4217 |
DECLARE_NOTPRODUCT_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4218 |
IGNORE_RANGE, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4219 |
IGNORE_CONSTRAINT) |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4220 |
|
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4221 |
ARCH_FLAGS(DECLARE_DEVELOPER_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4222 |
DECLARE_PRODUCT_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4223 |
DECLARE_DIAGNOSTIC_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4224 |
DECLARE_EXPERIMENTAL_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4225 |
DECLARE_NOTPRODUCT_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4226 |
IGNORE_RANGE, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
31330
diff
changeset
|
4227 |
IGNORE_CONSTRAINT) |
13521
97a23be06f4e
6677625: Move platform specific flags from globals.hpp to globals_<arch>.hpp
twisti
parents:
13479
diff
changeset
|
4228 |
|
11183
a81bb5c041d3
7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents:
11167
diff
changeset
|
4229 |
// Extensions |
a81bb5c041d3
7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents:
11167
diff
changeset
|
4230 |
|
a81bb5c041d3
7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents:
11167
diff
changeset
|
4231 |
#include "runtime/globals_ext.hpp" |
a81bb5c041d3
7117389: Add a framework for vendor-specific command line switch extensions to Hotspot
phh
parents:
11167
diff
changeset
|
4232 |
|
7397 | 4233 |
#endif // SHARE_VM_RUNTIME_GLOBALS_HPP |