author | kbarrett |
Wed, 15 Apr 2015 12:16:01 -0400 | |
changeset 30182 | 1c980a880941 |
parent 29697 | 92501504191b |
child 30256 | 0538cccd8921 |
permissions | -rw-r--r-- |
1374 | 1 |
/* |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
28379
diff
changeset
|
2 |
* Copyright (c) 2001, 2015, 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 |
||
7397 | 25 |
#ifndef SHARE_VM_GC_IMPLEMENTATION_G1_G1_GLOBALS_HPP |
26 |
#define SHARE_VM_GC_IMPLEMENTATION_G1_G1_GLOBALS_HPP |
|
27 |
||
28 |
#include "runtime/globals.hpp" |
|
1374 | 29 |
// |
30 |
// Defines all globals flags used by the garbage-first compiler. |
|
31 |
// |
|
32 |
||
1382
fa3de4068282
6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents:
1374
diff
changeset
|
33 |
#define G1_FLAGS(develop, develop_pd, product, product_pd, diagnostic, experimental, notproduct, manageable, product_rw) \ |
1374 | 34 |
\ |
15806
f3fb856749cf
8008546: Wrong G1ConfidencePercent results in GUARANTEE(VARIANCE() > -1.0) FAILED
poonam
parents:
15605
diff
changeset
|
35 |
product(uintx, G1ConfidencePercent, 50, \ |
1374 | 36 |
"Confidence level for MMU/pause predictions") \ |
37 |
\ |
|
3584
42c1f7bbffa4
6866591: G1: print update buffer processing stats more often
tonyp
parents:
3583
diff
changeset
|
38 |
develop(intx, G1MarkingOverheadPercent, 0, \ |
1374 | 39 |
"Overhead of concurrent marking") \ |
40 |
\ |
|
41 |
develop(intx, G1MarkingVerboseLevel, 0, \ |
|
42 |
"Level (0-4) of verboseness of the marking code") \ |
|
43 |
\ |
|
4099 | 44 |
develop(bool, G1PrintReachableAtInitialMark, false, \ |
45 |
"Reachable object dump at the initial mark pause") \ |
|
46 |
\ |
|
47 |
develop(bool, G1VerifyDuringGCPrintReachable, false, \ |
|
48 |
"If conc mark verification fails, dump reachable objects") \ |
|
49 |
\ |
|
50 |
develop(ccstr, G1PrintReachableBaseFile, NULL, \ |
|
51 |
"The base file name for the reachable object dumps") \ |
|
1374 | 52 |
\ |
53 |
develop(bool, G1TraceMarkStackOverflow, false, \ |
|
54 |
"If true, extra debugging code for CM restart for ovflw.") \ |
|
55 |
\ |
|
13113
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12382
diff
changeset
|
56 |
develop(bool, G1TraceHeapRegionRememberedSet, false, \ |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12382
diff
changeset
|
57 |
"Enables heap region remembered set debug logs") \ |
ab3870a79b18
6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets
johnc
parents:
12382
diff
changeset
|
58 |
\ |
5033 | 59 |
diagnostic(bool, G1SummarizeConcMark, false, \ |
1374 | 60 |
"Summarize concurrent mark info") \ |
61 |
\ |
|
2741 | 62 |
diagnostic(bool, G1SummarizeRSetStats, false, \ |
1374 | 63 |
"Summarize remembered set processing info") \ |
64 |
\ |
|
3584
42c1f7bbffa4
6866591: G1: print update buffer processing stats more often
tonyp
parents:
3583
diff
changeset
|
65 |
diagnostic(intx, G1SummarizeRSetStatsPeriod, 0, \ |
42c1f7bbffa4
6866591: G1: print update buffer processing stats more often
tonyp
parents:
3583
diff
changeset
|
66 |
"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
|
67 |
"update buffer processing info " \ |
42c1f7bbffa4
6866591: G1: print update buffer processing stats more often
tonyp
parents:
3583
diff
changeset
|
68 |
"(0 means do not periodically generate this info); " \ |
42c1f7bbffa4
6866591: G1: print update buffer processing stats more often
tonyp
parents:
3583
diff
changeset
|
69 |
"it also requires -XX:+G1SummarizeRSetStats") \ |
42c1f7bbffa4
6866591: G1: print update buffer processing stats more often
tonyp
parents:
3583
diff
changeset
|
70 |
\ |
5033 | 71 |
diagnostic(bool, G1TraceConcRefinement, false, \ |
1374 | 72 |
"Trace G1 concurrent refinement") \ |
73 |
\ |
|
22545
b93a7f0e9b9d
8027476: Improve performance of Stringtable unlink
tschatzl
parents:
19339
diff
changeset
|
74 |
experimental(bool, G1TraceStringSymbolTableScrubbing, false, \ |
b93a7f0e9b9d
8027476: Improve performance of Stringtable unlink
tschatzl
parents:
19339
diff
changeset
|
75 |
"Trace information string and symbol table scrubbing.") \ |
b93a7f0e9b9d
8027476: Improve performance of Stringtable unlink
tschatzl
parents:
19339
diff
changeset
|
76 |
\ |
8073
a14dc27842dc
6608385: G1: need to support parallel reference processing
johnc
parents:
7923
diff
changeset
|
77 |
product(double, G1ConcMarkStepDurationMillis, 10.0, \ |
a14dc27842dc
6608385: G1: need to support parallel reference processing
johnc
parents:
7923
diff
changeset
|
78 |
"Target duration of individual concurrent marking steps " \ |
a14dc27842dc
6608385: G1: need to support parallel reference processing
johnc
parents:
7923
diff
changeset
|
79 |
"in milliseconds.") \ |
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.") \ |
a14dc27842dc
6608385: G1: need to support parallel reference processing
johnc
parents:
7923
diff
changeset
|
84 |
\ |
9176
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8931
diff
changeset
|
85 |
experimental(bool, G1UseConcMarkReferenceProcessing, true, \ |
8931 | 86 |
"If true, enable reference discovery during concurrent " \ |
9176
42d9d1010f38
7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents:
8931
diff
changeset
|
87 |
"marking and reference processing at the end of remark.") \ |
1374 | 88 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
28379
diff
changeset
|
89 |
product(size_t, G1SATBBufferSize, 1*K, \ |
1374 | 90 |
"Number of entries in an SATB log buffer.") \ |
91 |
\ |
|
5033 | 92 |
develop(intx, G1SATBProcessCompletedThreshold, 20, \ |
1374 | 93 |
"Number of completed buffers that triggers log processing.") \ |
94 |
\ |
|
7920 | 95 |
product(uintx, G1SATBBufferEnqueueingThresholdPercent, 60, \ |
96 |
"Before enqueueing them, each mutator thread tries to do some " \ |
|
97 |
"filtering on the SATB buffers it generates. If post-filtering " \ |
|
98 |
"the percentage of retained entries is over this threshold " \ |
|
99 |
"the buffer will be enqueued for processing. A value of 0 " \ |
|
100 |
"specifies that mutator threads should not do such filtering.") \ |
|
101 |
\ |
|
1374 | 102 |
develop(bool, G1SATBPrintStubs, false, \ |
103 |
"If true, print generated stubs for the SATB barrier") \ |
|
104 |
\ |
|
5033 | 105 |
experimental(intx, G1ExpandByPercentOfAvailable, 20, \ |
1374 | 106 |
"When expanding, % of uncommitted space to claim.") \ |
107 |
\ |
|
108 |
develop(bool, G1RSBarrierRegionFilter, true, \ |
|
109 |
"If true, generate region filtering code in RS barrier") \ |
|
110 |
\ |
|
10530
e6b53dec4b9e
7087717: G1: make the G1PrintRegionLivenessInfo parameter diagnostic
tonyp
parents:
10528
diff
changeset
|
111 |
diagnostic(bool, G1PrintRegionLivenessInfo, false, \ |
e6b53dec4b9e
7087717: G1: make the G1PrintRegionLivenessInfo parameter diagnostic
tonyp
parents:
10528
diff
changeset
|
112 |
"Prints the liveness information for all regions in the heap " \ |
e6b53dec4b9e
7087717: G1: make the G1PrintRegionLivenessInfo parameter diagnostic
tonyp
parents:
10528
diff
changeset
|
113 |
"at the end of a marking cycle.") \ |
1374 | 114 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
28379
diff
changeset
|
115 |
product(size_t, G1UpdateBufferSize, 256, \ |
3583
805584e16d0f
6864886: G1: rename -XX parameters related to update buffers
tonyp
parents:
3262
diff
changeset
|
116 |
"Size of an update buffer") \ |
805584e16d0f
6864886: G1: rename -XX parameters related to update buffers
tonyp
parents:
3262
diff
changeset
|
117 |
\ |
5033 | 118 |
product(intx, 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.") \ |
|
122 |
\ |
|
5033 | 123 |
product(intx, G1ConcRefinementRedZone, 0, \ |
4481 | 124 |
"Maximum number of enqueued update buffers before mutator " \ |
125 |
"threads start processing new ones instead of enqueueing them. " \ |
|
126 |
"Will be selected ergonomically by default. Zero will disable " \ |
|
127 |
"concurrent processing.") \ |
|
128 |
\ |
|
5033 | 129 |
product(intx, G1ConcRefinementGreenZone, 0, \ |
4481 | 130 |
"The number of update buffers that are left in the queue by the " \ |
131 |
"concurrent processing threads. Will be selected ergonomically " \ |
|
132 |
"by default.") \ |
|
3583
805584e16d0f
6864886: G1: rename -XX parameters related to update buffers
tonyp
parents:
3262
diff
changeset
|
133 |
\ |
5033 | 134 |
product(intx, G1ConcRefinementServiceIntervalMillis, 300, \ |
4481 | 135 |
"The last concurrent refinement thread wakes up every " \ |
136 |
"specified number of milliseconds to do miscellaneous work.") \ |
|
137 |
\ |
|
5033 | 138 |
product(intx, G1ConcRefinementThresholdStep, 0, \ |
4481 | 139 |
"Each time the rset update queue increases by this amount " \ |
140 |
"activate the next refinement thread if available. " \ |
|
141 |
"Will be selected ergonomically by default.") \ |
|
142 |
\ |
|
5033 | 143 |
product(intx, G1RSetUpdatingPauseTimePercent, 10, \ |
4481 | 144 |
"A target percentage of time that is allowed to be spend on " \ |
145 |
"process RS update buffers during the collection pause.") \ |
|
146 |
\ |
|
5033 | 147 |
product(bool, G1UseAdaptiveConcRefinement, true, \ |
4481 | 148 |
"Select green, yellow and red zones adaptively to meet the " \ |
149 |
"the pause requirements.") \ |
|
1374 | 150 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
28379
diff
changeset
|
151 |
product(size_t, G1ConcRSLogCacheSize, 10, \ |
1374 | 152 |
"Log base 2 of the length of conc RS hot-card cache.") \ |
153 |
\ |
|
17327
4bd0581aa231
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
johnc
parents:
15806
diff
changeset
|
154 |
product(uintx, G1ConcRSHotCardLimit, 4, \ |
1374 | 155 |
"The threshold that defines (>=) a hot card.") \ |
156 |
\ |
|
4902
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
157 |
develop(intx, G1RSetRegionEntriesBase, 256, \ |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
158 |
"Max number of regions in a fine-grain table per MB.") \ |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
159 |
\ |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
160 |
product(intx, G1RSetRegionEntries, 0, \ |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
161 |
"Max number of regions for which we keep bitmaps." \ |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
162 |
"Will be set ergonomically by default") \ |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
163 |
\ |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
164 |
develop(intx, G1RSetSparseRegionEntriesBase, 4, \ |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
165 |
"Max number of entries per region in a sparse table " \ |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
166 |
"per MB.") \ |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
167 |
\ |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
168 |
product(intx, G1RSetSparseRegionEntries, 0, \ |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
169 |
"Max number of entries per region in a sparse table." \ |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
170 |
"Will be set ergonomically by default.") \ |
1374 | 171 |
\ |
172 |
develop(bool, G1RecordHRRSOops, false, \ |
|
173 |
"When true, record recent calls to rem set operations.") \ |
|
174 |
\ |
|
175 |
develop(bool, G1RecordHRRSEvents, false, \ |
|
176 |
"When true, record recent calls to rem set operations.") \ |
|
177 |
\ |
|
178 |
develop(intx, G1MaxVerifyFailures, -1, \ |
|
22775 | 179 |
"The maximum number of verification failures to print. " \ |
1374 | 180 |
"-1 means print all.") \ |
181 |
\ |
|
182 |
develop(bool, G1ScrubRemSets, true, \ |
|
183 |
"When true, do RS scrubbing after cleanup.") \ |
|
184 |
\ |
|
185 |
develop(bool, G1RSScrubVerbose, false, \ |
|
186 |
"When true, do RS scrubbing with verbose output.") \ |
|
187 |
\ |
|
188 |
develop(bool, G1YoungSurvRateVerbose, false, \ |
|
189 |
"print out the survival rate of young regions according to age.") \ |
|
190 |
\ |
|
191 |
develop(intx, G1YoungSurvRateNumRegionsSummary, 0, \ |
|
192 |
"the number of regions for which we'll print a surv rate " \ |
|
193 |
"summary.") \ |
|
194 |
\ |
|
10528
06fab03478df
7084509: G1: fix inconsistencies and mistakes in the young list target length calculations
tonyp
parents:
10497
diff
changeset
|
195 |
product(uintx, G1ReservePercent, 10, \ |
1374 | 196 |
"It determines the minimum reserve we should have in the heap " \ |
197 |
"to minimize the probability of promotion failure.") \ |
|
198 |
\ |
|
5033 | 199 |
diagnostic(bool, G1PrintHeapRegions, false, \ |
1374 | 200 |
"If set G1 will print information on which regions are being " \ |
201 |
"allocated and which are reclaimed.") \ |
|
202 |
\ |
|
203 |
develop(bool, G1HRRSUseSparseTable, true, \ |
|
204 |
"When true, use sparse table to save space.") \ |
|
205 |
\ |
|
206 |
develop(bool, G1HRRSFlushLogBuffersOnVerify, false, \ |
|
207 |
"Forces flushing of log buffers before verification.") \ |
|
208 |
\ |
|
4457
f05d2dc1c332
6902701: G1: protect debugging code related to 6898948 with a debug flag
ysr
parents:
4099
diff
changeset
|
209 |
develop(bool, G1FailOnFPError, false, \ |
f05d2dc1c332
6902701: G1: protect debugging code related to 6898948 with a debug flag
ysr
parents:
4099
diff
changeset
|
210 |
"When set, G1 will fail when it encounters an FP 'error', " \ |
f05d2dc1c332
6902701: G1: protect debugging code related to 6898948 with a debug flag
ysr
parents:
4099
diff
changeset
|
211 |
"so as to allow debugging") \ |
f05d2dc1c332
6902701: G1: protect debugging code related to 6898948 with a debug flag
ysr
parents:
4099
diff
changeset
|
212 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
28379
diff
changeset
|
213 |
product(size_t, G1HeapRegionSize, 0, \ |
3697
ea9211aa02f5
6819085: G1: use larger and/or user settable region size
tonyp
parents:
3695
diff
changeset
|
214 |
"Size of the G1 regions.") \ |
ea9211aa02f5
6819085: G1: use larger and/or user settable region size
tonyp
parents:
3695
diff
changeset
|
215 |
\ |
5033 | 216 |
product(uintx, G1ConcRefinementThreads, 0, \ |
2881 | 217 |
"If non-0 is the number of parallel rem set update threads, " \ |
3590
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3584
diff
changeset
|
218 |
"otherwise the value is determined ergonomically.") \ |
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3584
diff
changeset
|
219 |
\ |
3695
421cfcc8843c
6841313: G1: dirty cards of survivor regions in parallel
apetrusenko
parents:
3691
diff
changeset
|
220 |
develop(bool, G1VerifyCTCleanup, false, \ |
4742
9b18850a3185
6920090: G1: Disable ReduceInitialCardMarks at least until 6920109 is fixed
ysr
parents:
4481
diff
changeset
|
221 |
"Verify card table cleanup.") \ |
9b18850a3185
6920090: G1: Disable ReduceInitialCardMarks at least until 6920109 is fixed
ysr
parents:
4481
diff
changeset
|
222 |
\ |
29697
92501504191b
8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents:
28379
diff
changeset
|
223 |
product(size_t, G1RSetScanBlockSize, 64, \ |
4902
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
224 |
"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
|
225 |
"during RSet scanning.") \ |
991aaddb5165
6923991: G1: improve scalability of RSet scanning
iveresov
parents:
4742
diff
changeset
|
226 |
\ |
7923 | 227 |
develop(uintx, G1SecondaryFreeListAppendLength, 5, \ |
228 |
"The number of regions we will add to the secondary free list " \ |
|
229 |
"at every append operation") \ |
|
230 |
\ |
|
231 |
develop(bool, G1ConcRegionFreeingVerbose, false, \ |
|
232 |
"Enables verboseness during concurrent region freeing") \ |
|
233 |
\ |
|
234 |
develop(bool, G1StressConcRegionFreeing, false, \ |
|
235 |
"It stresses the concurrent region freeing operation") \ |
|
236 |
\ |
|
237 |
develop(uintx, G1StressConcRegionFreeingDelayMillis, 0, \ |
|
238 |
"Artificial delay during concurrent region freeing") \ |
|
239 |
\ |
|
9334
640f1a6f0b85
7011855: G1: non-product flag to artificially grow the heap
tonyp
parents:
9176
diff
changeset
|
240 |
develop(uintx, G1DummyRegionsPerGC, 0, \ |
640f1a6f0b85
7011855: G1: non-product flag to artificially grow the heap
tonyp
parents:
9176
diff
changeset
|
241 |
"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
|
242 |
"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
|
243 |
"heap and stress the marking implementation.") \ |
640f1a6f0b85
7011855: G1: non-product flag to artificially grow the heap
tonyp
parents:
9176
diff
changeset
|
244 |
\ |
8103
65eafe3fb3c7
6923430: G1: assert(res != 0,"This should have worked.")
johnc
parents:
8073
diff
changeset
|
245 |
develop(bool, G1ExitOnExpansionFailure, false, \ |
65eafe3fb3c7
6923430: G1: assert(res != 0,"This should have worked.")
johnc
parents:
8073
diff
changeset
|
246 |
"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
|
247 |
" 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
|
248 |
\ |
6719a2e727c0
7034139: G1: assert(Thread::current()->is_ConcurrentGC_thread()) failed: only a conc GC thread can call this.
tonyp
parents:
9334
diff
changeset
|
249 |
develop(uintx, G1ConcMarkForceOverflow, 0, \ |
6719a2e727c0
7034139: G1: assert(Thread::current()->is_ConcurrentGC_thread()) failed: only a conc GC thread can call this.
tonyp
parents:
9334
diff
changeset
|
250 |
"The number of times we'll force an overflow during " \ |
11397
7dc5c8f572b0
7113021: G1: automatically enable young gen size auto-tuning when -Xms==-Xmx
brutisso
parents:
11169
diff
changeset
|
251 |
"concurrent marking") \ |
7dc5c8f572b0
7113021: G1: automatically enable young gen size auto-tuning when -Xms==-Xmx
brutisso
parents:
11169
diff
changeset
|
252 |
\ |
15218
758d7536f16c
8001425: G1: Change the default values for certain G1 specific flags
johnc
parents:
15089
diff
changeset
|
253 |
experimental(uintx, G1NewSizePercent, 5, \ |
15089 | 254 |
"Percentage (0-100) of the heap size to use as default " \ |
255 |
"minimum young gen size.") \ |
|
11397
7dc5c8f572b0
7113021: G1: automatically enable young gen size auto-tuning when -Xms==-Xmx
brutisso
parents:
11169
diff
changeset
|
256 |
\ |
15218
758d7536f16c
8001425: G1: Change the default values for certain G1 specific flags
johnc
parents:
15089
diff
changeset
|
257 |
experimental(uintx, G1MaxNewSizePercent, 60, \ |
15089 | 258 |
"Percentage (0-100) of the heap size to use as default " \ |
259 |
" maximum young gen size.") \ |
|
11756
28b6fe22e43d
7132029: G1: mixed GC phase lasts for longer than it should
tonyp
parents:
11454
diff
changeset
|
260 |
\ |
26936
504bad404be6
8059452: G1: Change the default values for G1HeapWastePercent and G1MixedGCLiveThresholdPercent
brutisso
parents:
26701
diff
changeset
|
261 |
experimental(uintx, G1MixedGCLiveThresholdPercent, 85, \ |
15089 | 262 |
"Threshold for regions to be considered for inclusion in the " \ |
263 |
"collection set of mixed GCs. " \ |
|
264 |
"Regions with live bytes exceeding this will not be collected.") \ |
|
11756
28b6fe22e43d
7132029: G1: mixed GC phase lasts for longer than it should
tonyp
parents:
11454
diff
changeset
|
265 |
\ |
26936
504bad404be6
8059452: G1: Change the default values for G1HeapWastePercent and G1MixedGCLiveThresholdPercent
brutisso
parents:
26701
diff
changeset
|
266 |
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
|
267 |
"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
|
268 |
"that G1 is willing not to collect to avoid expensive GCs.") \ |
11756
28b6fe22e43d
7132029: G1: mixed GC phase lasts for longer than it should
tonyp
parents:
11454
diff
changeset
|
269 |
\ |
15218
758d7536f16c
8001425: G1: Change the default values for certain G1 specific flags
johnc
parents:
15089
diff
changeset
|
270 |
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
|
271 |
"The target number of mixed GCs after a marking cycle.") \ |
11756
28b6fe22e43d
7132029: G1: mixed GC phase lasts for longer than it should
tonyp
parents:
11454
diff
changeset
|
272 |
\ |
28379
e6784fc8fff2
8048179: Early reclaim of large objects that are referenced by a few objects
tschatzl
parents:
27635
diff
changeset
|
273 |
experimental(bool, G1EagerReclaimHumongousObjects, true, \ |
25889
221296ac4359
8027959: Early reclamation of large objects in G1
tschatzl
parents:
24244
diff
changeset
|
274 |
"Try to reclaim dead large objects at every young GC.") \ |
221296ac4359
8027959: Early reclamation of large objects in G1
tschatzl
parents:
24244
diff
changeset
|
275 |
\ |
28379
e6784fc8fff2
8048179: Early reclaim of large objects that are referenced by a few objects
tschatzl
parents:
27635
diff
changeset
|
276 |
experimental(bool, G1EagerReclaimHumongousObjectsWithStaleRefs, true, \ |
e6784fc8fff2
8048179: Early reclaim of large objects that are referenced by a few objects
tschatzl
parents:
27635
diff
changeset
|
277 |
"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
|
278 |
"references at every young GC.") \ |
e6784fc8fff2
8048179: Early reclaim of large objects that are referenced by a few objects
tschatzl
parents:
27635
diff
changeset
|
279 |
\ |
e6784fc8fff2
8048179: Early reclaim of large objects that are referenced by a few objects
tschatzl
parents:
27635
diff
changeset
|
280 |
experimental(bool, G1TraceEagerReclaimHumongousObjects, false, \ |
25889
221296ac4359
8027959: Early reclamation of large objects in G1
tschatzl
parents:
24244
diff
changeset
|
281 |
"Print some information about large object liveness " \ |
221296ac4359
8027959: Early reclamation of large objects in G1
tschatzl
parents:
24244
diff
changeset
|
282 |
"at every young GC.") \ |
221296ac4359
8027959: Early reclamation of large objects in G1
tschatzl
parents:
24244
diff
changeset
|
283 |
\ |
13483
cf5aaa798f38
7193157: G1: Make some develpflags available in product builds
brutisso
parents:
13113
diff
changeset
|
284 |
experimental(uintx, G1OldCSetRegionThresholdPercent, 10, \ |
11756
28b6fe22e43d
7132029: G1: mixed GC phase lasts for longer than it should
tonyp
parents:
11454
diff
changeset
|
285 |
"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
|
286 |
"as a percentage of the heap size.") \ |
ed44b9ecfa2f
7160728: Introduce an extra logging level for G1 logging
brutisso
parents:
12272
diff
changeset
|
287 |
\ |
ed44b9ecfa2f
7160728: Introduce an extra logging level for G1 logging
brutisso
parents:
12272
diff
changeset
|
288 |
experimental(ccstr, G1LogLevel, NULL, \ |
13517
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
289 |
"Log level for G1 logging: fine, finer, finest") \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
290 |
\ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
291 |
notproduct(bool, G1EvacuationFailureALot, false, \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
292 |
"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
|
293 |
"evacuation pauses") \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
294 |
\ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
295 |
develop(uintx, G1EvacuationFailureALotCount, 1000, \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
296 |
"Number of successful evacuations between evacuation failures " \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
297 |
"occurring at object copying") \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
298 |
\ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
299 |
develop(uintx, G1EvacuationFailureALotInterval, 5, \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
300 |
"Total collections between forced triggering of evacuation " \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
301 |
"failures") \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
302 |
\ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
303 |
develop(bool, G1EvacuationFailureALotDuringConcMark, true, \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
304 |
"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
|
305 |
"pauses when marking is in progress") \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
306 |
\ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
307 |
develop(bool, G1EvacuationFailureALotDuringInitialMark, true, \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
308 |
"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
|
309 |
"evacuation pauses") \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
310 |
\ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
311 |
develop(bool, G1EvacuationFailureALotDuringYoungGC, true, \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
312 |
"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
|
313 |
"evacuation pauses") \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
314 |
\ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
315 |
develop(bool, G1EvacuationFailureALotDuringMixedGC, true, \ |
f158a0c702d4
7041879: G1: introduce stress testing parameter to cause frequent evacuation failures
johnc
parents:
13483
diff
changeset
|
316 |
"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
|
317 |
"evacuation pauses") \ |
9d0719d7bb85
8015244: G1: Verification after a full GC is incorrectly placed.
johnc
parents:
17327
diff
changeset
|
318 |
\ |
9d0719d7bb85
8015244: G1: Verification after a full GC is incorrectly placed.
johnc
parents:
17327
diff
changeset
|
319 |
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
|
320 |
"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
|
321 |
"remembered set when verifying the heap during a full GC.") \ |
19339 | 322 |
\ |
323 |
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
|
324 |
"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
|
325 |
\ |
2c7a1e5649bd
7132678: G1: verify that the marking bitmaps have no marks for objects over TAMS
brutisso
parents:
23451
diff
changeset
|
326 |
develop(bool, G1VerifyBitmaps, false, \ |
2c7a1e5649bd
7132678: G1: verify that the marking bitmaps have no marks for objects over TAMS
brutisso
parents:
23451
diff
changeset
|
327 |
"Verifies the consistency of the marking bitmaps") |
1374 | 328 |
|
1382
fa3de4068282
6618726: Introduce -XX:+UnlockExperimentalVMOptions flag
ysr
parents:
1374
diff
changeset
|
329 |
G1_FLAGS(DECLARE_DEVELOPER_FLAG, DECLARE_PD_DEVELOPER_FLAG, DECLARE_PRODUCT_FLAG, DECLARE_PD_PRODUCT_FLAG, DECLARE_DIAGNOSTIC_FLAG, DECLARE_EXPERIMENTAL_FLAG, DECLARE_NOTPRODUCT_FLAG, DECLARE_MANAGEABLE_FLAG, DECLARE_PRODUCT_RW_FLAG) |
7397 | 330 |
|
331 |
#endif // SHARE_VM_GC_IMPLEMENTATION_G1_G1_GLOBALS_HPP |