author | kbarrett |
Tue, 30 Aug 2016 23:48:16 -0400 | |
changeset 40892 | 330a02d935ad |
parent 39117 | 59fa99a45873 |
child 46611 | 3b8b1f7ee3b4 |
permissions | -rw-r--r-- |
1374 | 1 |
/* |
36371
fd81a4f0ea00
8139651: ConcurrentG1Refine uses ints for many of its members that should be unsigned types
jprovino
parents:
35061
diff
changeset
|
2 |
* Copyright (c) 2001, 2016, Oracle and/or its affiliates. All rights reserved. |
1374 | 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:
5350
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5350
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:
5350
diff
changeset
|
21 |
* questions. |
1374 | 22 |
* |
23 |
*/ |
|
24 |
||
30764 | 25 |
#ifndef SHARE_VM_GC_G1_G1_GLOBALS_HPP |
26 |
#define SHARE_VM_GC_G1_G1_GLOBALS_HPP |
|
7397 | 27 |
|
28 |
#include "runtime/globals.hpp" |
|
33144
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
29 |
#include <float.h> // for DBL_MAX |
1374 | 30 |
// |
31 |
// Defines all globals flags used by the garbage-first compiler. |
|
32 |
// |
|
33 |
||
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38185
diff
changeset
|
34 |
#define G1_FLAGS(develop, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38185
diff
changeset
|
35 |
develop_pd, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38185
diff
changeset
|
36 |
product, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38185
diff
changeset
|
37 |
product_pd, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38185
diff
changeset
|
38 |
diagnostic, \ |
39117 | 39 |
diagnostic_pd, \ |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38185
diff
changeset
|
40 |
experimental, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38185
diff
changeset
|
41 |
notproduct, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38185
diff
changeset
|
42 |
manageable, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38185
diff
changeset
|
43 |
product_rw, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38185
diff
changeset
|
44 |
range, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38185
diff
changeset
|
45 |
constraint, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38185
diff
changeset
|
46 |
writeable) \ |
1374 | 47 |
\ |
34626 | 48 |
product(bool, G1UseAdaptiveIHOP, true, \ |
49 |
"Adaptively adjust the initiating heap occupancy from the " \ |
|
50 |
"initial value of InitiatingHeapOccupancyPercent. The policy " \ |
|
51 |
"attempts to start marking in time based on application " \ |
|
52 |
"behavior.") \ |
|
34299
3fdfdda0ac1f
8136678: Implement adaptive sizing algorithm for IHOP
tschatzl
parents:
33797
diff
changeset
|
53 |
\ |
3fdfdda0ac1f
8136678: Implement adaptive sizing algorithm for IHOP
tschatzl
parents:
33797
diff
changeset
|
54 |
experimental(size_t, G1AdaptiveIHOPNumInitialSamples, 3, \ |
3fdfdda0ac1f
8136678: Implement adaptive sizing algorithm for IHOP
tschatzl
parents:
33797
diff
changeset
|
55 |
"How many completed time periods from initial mark to first " \ |
3fdfdda0ac1f
8136678: Implement adaptive sizing algorithm for IHOP
tschatzl
parents:
33797
diff
changeset
|
56 |
"mixed gc are required to use the input values for prediction " \ |
3fdfdda0ac1f
8136678: Implement adaptive sizing algorithm for IHOP
tschatzl
parents:
33797
diff
changeset
|
57 |
"of the optimal occupancy to start marking.") \ |
3fdfdda0ac1f
8136678: Implement adaptive sizing algorithm for IHOP
tschatzl
parents:
33797
diff
changeset
|
58 |
range(1, max_intx) \ |
3fdfdda0ac1f
8136678: Implement adaptive sizing algorithm for IHOP
tschatzl
parents:
33797
diff
changeset
|
59 |
\ |
15806
f3fb856749cf
8008546: Wrong G1ConfidencePercent results in GUARANTEE(VARIANCE() > -1.0) FAILED
poonam
parents:
15605
diff
changeset
|
60 |
product(uintx, G1ConfidencePercent, 50, \ |
1374 | 61 |
"Confidence level for MMU/pause predictions") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
30764
diff
changeset
|
62 |
range(0, 100) \ |
1374 | 63 |
\ |
3584
42c1f7bbffa4
6866591: G1: print update buffer processing stats more often
tonyp
parents:
3583
diff
changeset
|
64 |
develop(intx, G1MarkingOverheadPercent, 0, \ |
1374 | 65 |
"Overhead of concurrent marking") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
30764
diff
changeset
|
66 |
range(0, 100) \ |
1374 | 67 |
\ |
3584
42c1f7bbffa4
6866591: G1: print update buffer processing stats more often
tonyp
parents:
3583
diff
changeset
|
68 |
diagnostic(intx, G1SummarizeRSetStatsPeriod, 0, \ |
42c1f7bbffa4
6866591: G1: print update buffer processing stats more often
tonyp
parents:
3583
diff
changeset
|
69 |
"The period (in number of GCs) at which we will generate " \ |
42c1f7bbffa4
6866591: G1: print update buffer processing stats more often
tonyp
parents:
3583
diff
changeset
|
70 |
"update buffer processing info " \ |
42c1f7bbffa4
6866591: G1: print update buffer processing stats more often
tonyp
parents:
3583
diff
changeset
|
71 |
"(0 means do not periodically generate this info); " \ |
35061 | 72 |
"it also requires that logging is enabled on the trace" \ |
73 |
"level for gc+remset") \ |
|
33144
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
74 |
range(0, max_intx) \ |
3584
42c1f7bbffa4
6866591: G1: print update buffer processing stats more often
tonyp
parents:
3583
diff
changeset
|
75 |
\ |
8073
a14dc27842dc
6608385: G1: need to support parallel reference processing
johnc
parents:
7923
diff
changeset
|
76 |
product(double, G1ConcMarkStepDurationMillis, 10.0, \ |
a14dc27842dc
6608385: G1: need to support parallel reference processing
johnc
parents:
7923
diff
changeset
|
77 |
"Target duration of individual concurrent marking steps " \ |
a14dc27842dc
6608385: G1: need to support parallel reference processing
johnc
parents:
7923
diff
changeset
|
78 |
"in milliseconds.") \ |
33144
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
79 |
range(1.0, DBL_MAX) \ |
8073
a14dc27842dc
6608385: G1: need to support parallel reference processing
johnc
parents:
7923
diff
changeset
|
80 |
\ |
a14dc27842dc
6608385: G1: need to support parallel reference processing
johnc
parents:
7923
diff
changeset
|
81 |
product(intx, G1RefProcDrainInterval, 10, \ |
a14dc27842dc
6608385: G1: need to support parallel reference processing
johnc
parents:
7923
diff
changeset
|
82 |
"The number of discovered reference objects to process before " \ |
a14dc27842dc
6608385: G1: need to support parallel reference processing
johnc
parents:
7923
diff
changeset
|
83 |
"draining concurrent marking work queues.") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
30764
diff
changeset
|
84 |
range(1, max_intx) \ |
8073
a14dc27842dc
6608385: G1: need to support parallel reference processing
johnc
parents:
7923
diff
changeset
|
85 |
\ |
32602
27d046027824
8067341: Modify PLAB sizing algorithm to waste less
tschatzl
parents:
32601
diff
changeset
|
86 |
experimental(double, G1LastPLABAverageOccupancy, 50.0, \ |
27d046027824
8067341: Modify PLAB sizing algorithm to waste less
tschatzl
parents:
32601
diff
changeset
|
87 |
"The expected average occupancy of the last PLAB in " \ |
27d046027824
8067341: Modify PLAB sizing algorithm to waste less
tschatzl
parents:
32601
diff
changeset
|
88 |
"percent.") \ |
27d046027824
8067341: Modify PLAB sizing algorithm to waste less
tschatzl
parents:
32601
diff
changeset
|
89 |
range(0.001, 100.0) \ |
27d046027824
8067341: Modify PLAB sizing algorithm to waste less
tschatzl
parents:
32601
diff
changeset
|
90 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
28379
diff
changeset
|
91 |
product(size_t, G1SATBBufferSize, 1*K, \ |
1374 | 92 |
"Number of entries in an SATB log buffer.") \ |
33144
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
93 |
range(1, max_uintx) \ |
1374 | 94 |
\ |
5033 | 95 |
develop(intx, G1SATBProcessCompletedThreshold, 20, \ |
1374 | 96 |
"Number of completed buffers that triggers log processing.") \ |
33144
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
97 |
range(0, max_jint) \ |
1374 | 98 |
\ |
7920 | 99 |
product(uintx, G1SATBBufferEnqueueingThresholdPercent, 60, \ |
100 |
"Before enqueueing them, each mutator thread tries to do some " \ |
|
101 |
"filtering on the SATB buffers it generates. If post-filtering " \ |
|
102 |
"the percentage of retained entries is over this threshold " \ |
|
103 |
"the buffer will be enqueued for processing. A value of 0 " \ |
|
104 |
"specifies that mutator threads should not do such filtering.") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
30764
diff
changeset
|
105 |
range(0, 100) \ |
7920 | 106 |
\ |
5033 | 107 |
experimental(intx, G1ExpandByPercentOfAvailable, 20, \ |
1374 | 108 |
"When expanding, % of uncommitted space to claim.") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
30764
diff
changeset
|
109 |
range(0, 100) \ |
1374 | 110 |
\ |
111 |
develop(bool, G1RSBarrierRegionFilter, true, \ |
|
112 |
"If true, generate region filtering code in RS barrier") \ |
|
113 |
\ |
|
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
28379
diff
changeset
|
114 |
product(size_t, G1UpdateBufferSize, 256, \ |
3583
805584e16d0f
6864886: G1: rename -XX parameters related to update buffers
tonyp
parents:
3262
diff
changeset
|
115 |
"Size of an update buffer") \ |
33144
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
116 |
range(1, NOT_LP64(32*M) LP64_ONLY(1*G)) \ |
3583
805584e16d0f
6864886: G1: rename -XX parameters related to update buffers
tonyp
parents:
3262
diff
changeset
|
117 |
\ |
36371
fd81a4f0ea00
8139651: ConcurrentG1Refine uses ints for many of its members that should be unsigned types
jprovino
parents:
35061
diff
changeset
|
118 |
product(size_t, G1ConcRefinementYellowZone, 0, \ |
3583
805584e16d0f
6864886: G1: rename -XX parameters related to update buffers
tonyp
parents:
3262
diff
changeset
|
119 |
"Number of enqueued update buffers that will " \ |
4481 | 120 |
"trigger concurrent processing. Will be selected ergonomically " \ |
121 |
"by default.") \ |
|
36402
7c20aae43c41
8150984: Invalid VM argument causes crash -XX:G1ConcRefinementServiceIntervalMillis=2147483648
jprovino
parents:
36373
diff
changeset
|
122 |
range(0, max_intx) \ |
4481 | 123 |
\ |
36371
fd81a4f0ea00
8139651: ConcurrentG1Refine uses ints for many of its members that should be unsigned types
jprovino
parents:
35061
diff
changeset
|
124 |
product(size_t, G1ConcRefinementRedZone, 0, \ |
4481 | 125 |
"Maximum number of enqueued update buffers before mutator " \ |
126 |
"threads start processing new ones instead of enqueueing them. " \ |
|
37510
cf066fe4531b
8133051: Concurrent refinement threads may be activated and deactivated at random
kbarrett
parents:
37413
diff
changeset
|
127 |
"Will be selected ergonomically by default.") \ |
36402
7c20aae43c41
8150984: Invalid VM argument causes crash -XX:G1ConcRefinementServiceIntervalMillis=2147483648
jprovino
parents:
36373
diff
changeset
|
128 |
range(0, max_intx) \ |
4481 | 129 |
\ |
36371
fd81a4f0ea00
8139651: ConcurrentG1Refine uses ints for many of its members that should be unsigned types
jprovino
parents:
35061
diff
changeset
|
130 |
product(size_t, G1ConcRefinementGreenZone, 0, \ |
4481 | 131 |
"The number of update buffers that are left in the queue by the " \ |
132 |
"concurrent processing threads. Will be selected ergonomically " \ |
|
133 |
"by default.") \ |
|
36402
7c20aae43c41
8150984: Invalid VM argument causes crash -XX:G1ConcRefinementServiceIntervalMillis=2147483648
jprovino
parents:
36373
diff
changeset
|
134 |
range(0, max_intx) \ |
3583
805584e16d0f
6864886: G1: rename -XX parameters related to update buffers
tonyp
parents:
3262
diff
changeset
|
135 |
\ |
36371
fd81a4f0ea00
8139651: ConcurrentG1Refine uses ints for many of its members that should be unsigned types
jprovino
parents:
35061
diff
changeset
|
136 |
product(uintx, G1ConcRefinementServiceIntervalMillis, 300, \ |
4481 | 137 |
"The last concurrent refinement thread wakes up every " \ |
138 |
"specified number of milliseconds to do miscellaneous work.") \ |
|
36402
7c20aae43c41
8150984: Invalid VM argument causes crash -XX:G1ConcRefinementServiceIntervalMillis=2147483648
jprovino
parents:
36373
diff
changeset
|
139 |
range(0, max_jint) \ |
4481 | 140 |
\ |
37510
cf066fe4531b
8133051: Concurrent refinement threads may be activated and deactivated at random
kbarrett
parents:
37413
diff
changeset
|
141 |
product(size_t, G1ConcRefinementThresholdStep, 2, \ |
4481 | 142 |
"Each time the rset update queue increases by this amount " \ |
143 |
"activate the next refinement thread if available. " \ |
|
37510
cf066fe4531b
8133051: Concurrent refinement threads may be activated and deactivated at random
kbarrett
parents:
37413
diff
changeset
|
144 |
"The actual step size will be selected ergonomically by " \ |
cf066fe4531b
8133051: Concurrent refinement threads may be activated and deactivated at random
kbarrett
parents:
37413
diff
changeset
|
145 |
"default, with this value used to determine a lower bound.") \ |
cf066fe4531b
8133051: Concurrent refinement threads may be activated and deactivated at random
kbarrett
parents:
37413
diff
changeset
|
146 |
range(1, SIZE_MAX) \ |
4481 | 147 |
\ |
5033 | 148 |
product(intx, G1RSetUpdatingPauseTimePercent, 10, \ |
4481 | 149 |
"A target percentage of time that is allowed to be spend on " \ |
150 |
"process RS update buffers during the collection pause.") \ |
|
33144
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
151 |
range(0, 100) \ |
4481 | 152 |
\ |
5033 | 153 |
product(bool, G1UseAdaptiveConcRefinement, true, \ |
4481 | 154 |
"Select green, yellow and red zones adaptively to meet the " \ |
155 |
"the pause requirements.") \ |
|
1374 | 156 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
28379
diff
changeset
|
157 |
product(size_t, G1ConcRSLogCacheSize, 10, \ |
1374 | 158 |
"Log base 2 of the length of conc RS hot-card cache.") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
30764
diff
changeset
|
159 |
range(0, 27) \ |
1374 | 160 |
\ |
17327
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
15806
diff
changeset
|
161 |
product(uintx, G1ConcRSHotCardLimit, 4, \ |
1374 | 162 |
"The threshold that defines (>=) a hot card.") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
30764
diff
changeset
|
163 |
range(0, max_jubyte) \ |
1374 | 164 |
\ |
4902
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
165 |
develop(intx, G1RSetRegionEntriesBase, 256, \ |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
166 |
"Max number of regions in a fine-grain table per MB.") \ |
33144
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
167 |
range(1, max_jint/wordSize) \ |
4902
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
168 |
\ |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
169 |
product(intx, G1RSetRegionEntries, 0, \ |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
170 |
"Max number of regions for which we keep bitmaps." \ |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
171 |
"Will be set ergonomically by default") \ |
33144
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
172 |
range(0, max_jint/wordSize) \ |
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
173 |
constraint(G1RSetRegionEntriesConstraintFunc,AfterErgo) \ |
4902
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
174 |
\ |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
175 |
develop(intx, G1RSetSparseRegionEntriesBase, 4, \ |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
176 |
"Max number of entries per region in a sparse table " \ |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
177 |
"per MB.") \ |
33144
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
178 |
range(1, max_jint/wordSize) \ |
4902
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
179 |
\ |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
180 |
product(intx, G1RSetSparseRegionEntries, 0, \ |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
181 |
"Max number of entries per region in a sparse table." \ |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
182 |
"Will be set ergonomically by default.") \ |
33144
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
183 |
range(0, max_jint/wordSize) \ |
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
184 |
constraint(G1RSetSparseRegionEntriesConstraintFunc,AfterErgo) \ |
1374 | 185 |
\ |
186 |
develop(intx, G1MaxVerifyFailures, -1, \ |
|
22775 | 187 |
"The maximum number of verification failures to print. " \ |
1374 | 188 |
"-1 means print all.") \ |
33144
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
189 |
range(-1, max_jint) \ |
1374 | 190 |
\ |
191 |
develop(bool, G1ScrubRemSets, true, \ |
|
192 |
"When true, do RS scrubbing after cleanup.") \ |
|
193 |
\ |
|
10528
06fab03478df
7084509: G1: fix inconsistencies and mistakes in the young list target length calculations
tonyp
parents:
10497
diff
changeset
|
194 |
product(uintx, G1ReservePercent, 10, \ |
1374 | 195 |
"It determines the minimum reserve we should have in the heap " \ |
196 |
"to minimize the probability of promotion failure.") \ |
|
33144
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
197 |
range(0, 50) \ |
1374 | 198 |
\ |
199 |
develop(bool, G1HRRSUseSparseTable, true, \ |
|
200 |
"When true, use sparse table to save space.") \ |
|
201 |
\ |
|
202 |
develop(bool, G1HRRSFlushLogBuffersOnVerify, false, \ |
|
203 |
"Forces flushing of log buffers before verification.") \ |
|
204 |
\ |
|
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
28379
diff
changeset
|
205 |
product(size_t, G1HeapRegionSize, 0, \ |
3697
ea9211aa02f5
6819085: G1: use larger and/or user settable region size
tonyp
parents:
3695
diff
changeset
|
206 |
"Size of the G1 regions.") \ |
33144
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
207 |
range(0, 32*M) \ |
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
208 |
constraint(G1HeapRegionSizeConstraintFunc,AfterMemoryInit) \ |
3697
ea9211aa02f5
6819085: G1: use larger and/or user settable region size
tonyp
parents:
3695
diff
changeset
|
209 |
\ |
37510
cf066fe4531b
8133051: Concurrent refinement threads may be activated and deactivated at random
kbarrett
parents:
37413
diff
changeset
|
210 |
product(uint, G1ConcRefinementThreads, 0, \ |
cf066fe4531b
8133051: Concurrent refinement threads may be activated and deactivated at random
kbarrett
parents:
37413
diff
changeset
|
211 |
"The number of parallel rem set update threads. " \ |
cf066fe4531b
8133051: Concurrent refinement threads may be activated and deactivated at random
kbarrett
parents:
37413
diff
changeset
|
212 |
"Will be set ergonomically by default.") \ |
33144
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
213 |
range(0, (max_jint-1)/wordSize) \ |
3590
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3584
diff
changeset
|
214 |
\ |
3695
421cfcc8843c
6841313: G1: dirty cards of survivor regions in parallel
apetrusenko
parents:
3691
diff
changeset
|
215 |
develop(bool, G1VerifyCTCleanup, false, \ |
4742
9b18850a3185
6920090: G1: Disable ReduceInitialCardMarks at least until 6920109 is fixed
ysr
parents:
4481
diff
changeset
|
216 |
"Verify card table cleanup.") \ |
9b18850a3185
6920090: G1: Disable ReduceInitialCardMarks at least until 6920109 is fixed
ysr
parents:
4481
diff
changeset
|
217 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
28379
diff
changeset
|
218 |
product(size_t, G1RSetScanBlockSize, 64, \ |
4902
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
219 |
"Size of a work unit of cards claimed by a worker thread" \ |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
220 |
"during RSet scanning.") \ |
33144
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
221 |
range(1, max_uintx) \ |
4902
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
222 |
\ |
7923 | 223 |
develop(uintx, G1SecondaryFreeListAppendLength, 5, \ |
224 |
"The number of regions we will add to the secondary free list " \ |
|
225 |
"at every append operation") \ |
|
226 |
\ |
|
227 |
develop(bool, G1StressConcRegionFreeing, false, \ |
|
228 |
"It stresses the concurrent region freeing operation") \ |
|
229 |
\ |
|
230 |
develop(uintx, G1StressConcRegionFreeingDelayMillis, 0, \ |
|
231 |
"Artificial delay during concurrent region freeing") \ |
|
232 |
\ |
|
9334
640f1a6f0b85
7011855: G1: non-product flag to artificially grow the heap
tonyp
parents:
9176
diff
changeset
|
233 |
develop(uintx, G1DummyRegionsPerGC, 0, \ |
640f1a6f0b85
7011855: G1: non-product flag to artificially grow the heap
tonyp
parents:
9176
diff
changeset
|
234 |
"The number of dummy regions G1 will allocate at the end of " \ |
640f1a6f0b85
7011855: G1: non-product flag to artificially grow the heap
tonyp
parents:
9176
diff
changeset
|
235 |
"each evacuation pause in order to artificially fill up the " \ |
640f1a6f0b85
7011855: G1: non-product flag to artificially grow the heap
tonyp
parents:
9176
diff
changeset
|
236 |
"heap and stress the marking implementation.") \ |
640f1a6f0b85
7011855: G1: non-product flag to artificially grow the heap
tonyp
parents:
9176
diff
changeset
|
237 |
\ |
8103
65eafe3fb3c7
6923430: G1: assert(res != 0,"This should have worked.")
johnc
parents:
8073
diff
changeset
|
238 |
develop(bool, G1ExitOnExpansionFailure, false, \ |
65eafe3fb3c7
6923430: G1: assert(res != 0,"This should have worked.")
johnc
parents:
8073
diff
changeset
|
239 |
"Raise a fatal VM exit out of memory failure in the event " \ |
9417
6719a2e727c0
7034139: G1: assert(Thread::current()->is_ConcurrentGC_thread()) failed: only a conc GC thread can call this.
tonyp
parents:
9334
diff
changeset
|
240 |
" that heap expansion fails due to running out of swap.") \ |
6719a2e727c0
7034139: G1: assert(Thread::current()->is_ConcurrentGC_thread()) failed: only a conc GC thread can call this.
tonyp
parents:
9334
diff
changeset
|
241 |
\ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
30764
diff
changeset
|
242 |
experimental(uintx, G1MaxNewSizePercent, 60, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
30764
diff
changeset
|
243 |
"Percentage (0-100) of the heap size to use as default " \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
30764
diff
changeset
|
244 |
" maximum young gen size.") \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
30764
diff
changeset
|
245 |
range(0, 100) \ |
31995
aa4049b4184a
8130459: Add additional validation after heap creation
sangheki
parents:
31371
diff
changeset
|
246 |
constraint(G1MaxNewSizePercentConstraintFunc,AfterErgo) \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
30764
diff
changeset
|
247 |
\ |
15218
758d7536f16c
8001425: G1: Change the default values for certain G1 specific flags
johnc
parents:
15089
diff
changeset
|
248 |
experimental(uintx, G1NewSizePercent, 5, \ |
15089 | 249 |
"Percentage (0-100) of the heap size to use as default " \ |
250 |
"minimum young gen size.") \ |
|
33144
c56850e328fc
8134995: [REDO] GC: implement ranges (optionally constraints) for those flags that have them missing
sangheki
parents:
32613
diff
changeset
|
251 |
range(0, 100) \ |
31995
aa4049b4184a
8130459: Add additional validation after heap creation
sangheki
parents:
31371
diff
changeset
|
252 |
constraint(G1NewSizePercentConstraintFunc,AfterErgo) \ |
11756
28b6fe22e43d
7132029: G1: mixed GC phase lasts for longer than it should
tonyp
parents:
11454
diff
changeset
|
253 |
\ |
26936
504bad404be6
8059452: G1: Change the default values for G1HeapWastePercent and G1MixedGCLiveThresholdPercent
brutisso
parents:
26701
diff
changeset
|
254 |
experimental(uintx, G1MixedGCLiveThresholdPercent, 85, \ |
15089 | 255 |
"Threshold for regions to be considered for inclusion in the " \ |
256 |
"collection set of mixed GCs. " \ |
|
257 |
"Regions with live bytes exceeding this will not be collected.") \ |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
30764
diff
changeset
|
258 |
range(0, 100) \ |
11756
28b6fe22e43d
7132029: G1: mixed GC phase lasts for longer than it should
tonyp
parents:
11454
diff
changeset
|
259 |
\ |
26936
504bad404be6
8059452: G1: Change the default values for G1HeapWastePercent and G1MixedGCLiveThresholdPercent
brutisso
parents:
26701
diff
changeset
|
260 |
product(uintx, G1HeapWastePercent, 5, \ |
12228
15ffdb8224fe
7146246: G1: expose some of the -XX flags that drive which old regions to collect during mixed GCs
tonyp
parents:
11756
diff
changeset
|
261 |
"Amount of space, expressed as a percentage of the heap size, " \ |
15ffdb8224fe
7146246: G1: expose some of the -XX flags that drive which old regions to collect during mixed GCs
tonyp
parents:
11756
diff
changeset
|
262 |
"that G1 is willing not to collect to avoid expensive GCs.") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
30764
diff
changeset
|
263 |
range(0, 100) \ |
11756
28b6fe22e43d
7132029: G1: mixed GC phase lasts for longer than it should
tonyp
parents:
11454
diff
changeset
|
264 |
\ |
15218
758d7536f16c
8001425: G1: Change the default values for certain G1 specific flags
johnc
parents:
15089
diff
changeset
|
265 |
product(uintx, G1MixedGCCountTarget, 8, \ |
12228
15ffdb8224fe
7146246: G1: expose some of the -XX flags that drive which old regions to collect during mixed GCs
tonyp
parents:
11756
diff
changeset
|
266 |
"The target number of mixed GCs after a marking cycle.") \ |
34661
9a1d11d88ea0
8142341: GC: current flags need ranges to be implemented
sangheki
parents:
34626
diff
changeset
|
267 |
range(0, max_uintx) \ |
11756
28b6fe22e43d
7132029: G1: mixed GC phase lasts for longer than it should
tonyp
parents:
11454
diff
changeset
|
268 |
\ |
37413
2f71679d06dd
8077144: Concurrent mark initialization takes too long
tschatzl
parents:
37075
diff
changeset
|
269 |
experimental(bool, G1PretouchAuxiliaryMemory, false, \ |
2f71679d06dd
8077144: Concurrent mark initialization takes too long
tschatzl
parents:
37075
diff
changeset
|
270 |
"Pre-touch large auxiliary data structures used by the GC.") \ |
2f71679d06dd
8077144: Concurrent mark initialization takes too long
tschatzl
parents:
37075
diff
changeset
|
271 |
\ |
28379
e6784fc8fff2
8048179: Early reclaim of large objects that are referenced by a few objects
tschatzl
parents:
27635
diff
changeset
|
272 |
experimental(bool, G1EagerReclaimHumongousObjects, true, \ |
25889
221296ac4359
8027959: Early reclamation of large objects in G1
tschatzl
parents:
24244
diff
changeset
|
273 |
"Try to reclaim dead large objects at every young GC.") \ |
221296ac4359
8027959: Early reclamation of large objects in G1
tschatzl
parents:
24244
diff
changeset
|
274 |
\ |
28379
e6784fc8fff2
8048179: Early reclaim of large objects that are referenced by a few objects
tschatzl
parents:
27635
diff
changeset
|
275 |
experimental(bool, G1EagerReclaimHumongousObjectsWithStaleRefs, true, \ |
e6784fc8fff2
8048179: Early reclaim of large objects that are referenced by a few objects
tschatzl
parents:
27635
diff
changeset
|
276 |
"Try to reclaim dead large objects that have a few stale " \ |
e6784fc8fff2
8048179: Early reclaim of large objects that are referenced by a few objects
tschatzl
parents:
27635
diff
changeset
|
277 |
"references at every young GC.") \ |
e6784fc8fff2
8048179: Early reclaim of large objects that are referenced by a few objects
tschatzl
parents:
27635
diff
changeset
|
278 |
\ |
13483
cf5aaa798f38
7193157: G1: Make some develpflags available in product builds
brutisso
parents:
13113
diff
changeset
|
279 |
experimental(uintx, G1OldCSetRegionThresholdPercent, 10, \ |
11756
28b6fe22e43d
7132029: G1: mixed GC phase lasts for longer than it should
tonyp
parents:
11454
diff
changeset
|
280 |
"An upper bound for the number of old CSet regions expressed " \ |
12378
ed44b9ecfa2f
7160728: Introduce an extra logging level for G1 logging
brutisso
parents:
12272
diff
changeset
|
281 |
"as a percentage of the heap size.") \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
30764
diff
changeset
|
282 |
range(0, 100) \ |
12378
ed44b9ecfa2f
7160728: Introduce an extra logging level for G1 logging
brutisso
parents:
12272
diff
changeset
|
283 |
\ |
13517
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
284 |
notproduct(bool, G1EvacuationFailureALot, false, \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
285 |
"Force use of evacuation failure handling during certain " \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
286 |
"evacuation pauses") \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
287 |
\ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
288 |
develop(uintx, G1EvacuationFailureALotCount, 1000, \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
289 |
"Number of successful evacuations between evacuation failures " \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
290 |
"occurring at object copying") \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
291 |
\ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
292 |
develop(uintx, G1EvacuationFailureALotInterval, 5, \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
293 |
"Total collections between forced triggering of evacuation " \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
294 |
"failures") \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
295 |
\ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
296 |
develop(bool, G1EvacuationFailureALotDuringConcMark, true, \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
297 |
"Force use of evacuation failure handling during evacuation " \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
298 |
"pauses when marking is in progress") \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
299 |
\ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
300 |
develop(bool, G1EvacuationFailureALotDuringInitialMark, true, \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
301 |
"Force use of evacuation failure handling during initial mark " \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
302 |
"evacuation pauses") \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
303 |
\ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
304 |
develop(bool, G1EvacuationFailureALotDuringYoungGC, true, \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
305 |
"Force use of evacuation failure handling during young " \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
306 |
"evacuation pauses") \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
307 |
\ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
308 |
develop(bool, G1EvacuationFailureALotDuringMixedGC, true, \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
309 |
"Force use of evacuation failure handling during mixed " \ |
17855
9d0719d7bb85
8015244: G1: Verification after a full GC is incorrectly placed.
johnc
parents:
17327
diff
changeset
|
310 |
"evacuation pauses") \ |
9d0719d7bb85
8015244: G1: Verification after a full GC is incorrectly placed.
johnc
parents:
17327
diff
changeset
|
311 |
\ |
9d0719d7bb85
8015244: G1: Verification after a full GC is incorrectly placed.
johnc
parents:
17327
diff
changeset
|
312 |
diagnostic(bool, G1VerifyRSetsDuringFullGC, false, \ |
24244
2c7a1e5649bd
7132678: G1: verify that the marking bitmaps have no marks for objects over TAMS
brutisso
parents:
23451
diff
changeset
|
313 |
"If true, perform verification of each heap region's " \ |
2c7a1e5649bd
7132678: G1: verify that the marking bitmaps have no marks for objects over TAMS
brutisso
parents:
23451
diff
changeset
|
314 |
"remembered set when verifying the heap during a full GC.") \ |
19339 | 315 |
\ |
316 |
diagnostic(bool, G1VerifyHeapRegionCodeRoots, false, \ |
|
24244
2c7a1e5649bd
7132678: G1: verify that the marking bitmaps have no marks for objects over TAMS
brutisso
parents:
23451
diff
changeset
|
317 |
"Verify the code root lists attached to each heap region.") \ |
2c7a1e5649bd
7132678: G1: verify that the marking bitmaps have no marks for objects over TAMS
brutisso
parents:
23451
diff
changeset
|
318 |
\ |
2c7a1e5649bd
7132678: G1: verify that the marking bitmaps have no marks for objects over TAMS
brutisso
parents:
23451
diff
changeset
|
319 |
develop(bool, G1VerifyBitmaps, false, \ |
2c7a1e5649bd
7132678: G1: verify that the marking bitmaps have no marks for objects over TAMS
brutisso
parents:
23451
diff
changeset
|
320 |
"Verifies the consistency of the marking bitmaps") |
1374 | 321 |
|
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
30764
diff
changeset
|
322 |
G1_FLAGS(DECLARE_DEVELOPER_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
30764
diff
changeset
|
323 |
DECLARE_PD_DEVELOPER_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
30764
diff
changeset
|
324 |
DECLARE_PRODUCT_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
30764
diff
changeset
|
325 |
DECLARE_PD_PRODUCT_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
30764
diff
changeset
|
326 |
DECLARE_DIAGNOSTIC_FLAG, \ |
39117 | 327 |
DECLARE_PD_DIAGNOSTIC_FLAG, \ |
31371
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
30764
diff
changeset
|
328 |
DECLARE_EXPERIMENTAL_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
30764
diff
changeset
|
329 |
DECLARE_NOTPRODUCT_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
30764
diff
changeset
|
330 |
DECLARE_MANAGEABLE_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
30764
diff
changeset
|
331 |
DECLARE_PRODUCT_RW_FLAG, \ |
311143309e73
8122937: [JEP 245] Validate JVM Command-Line Flag Arguments.
gziemski
parents:
30764
diff
changeset
|
332 |
IGNORE_RANGE, \ |
38273
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38185
diff
changeset
|
333 |
IGNORE_CONSTRAINT, \ |
2634194d7555
8073500: Prevent certain commercial flags from being changed at runtime
gziemski
parents:
38185
diff
changeset
|
334 |
IGNORE_WRITEABLE) |
7397 | 335 |
|
30764 | 336 |
#endif // SHARE_VM_GC_G1_G1_GLOBALS_HPP |