8321808: G1: Use unsigned type for non-negative G1 flags

Reviewed-by: tschatzl, iwalulya
This commit is contained in:
Albert Mingkun Yang 2023-12-13 11:18:51 +00:00
parent 493b5bd2fd
commit 2a565ff368

View File

@ -113,11 +113,11 @@
"of the optimal occupancy to start marking.") \
range(1, max_intx) \
\
product(uint, G1ConfidencePercent, 50, \
product(uint, G1ConfidencePercent, 50, \
"Confidence level for MMU/pause predictions") \
range(0, 100) \
\
product(intx, G1SummarizeRSetStatsPeriod, 0, DIAGNOSTIC, \
product(uintx, G1SummarizeRSetStatsPeriod, 0, DIAGNOSTIC, \
"The period (in number of GCs) at which we will generate " \
"update buffer processing info " \
"(0 means do not periodically generate this info); " \
@ -148,7 +148,7 @@
"Number of entries in an SATB log buffer.") \
constraint(G1SATBBufferSizeConstraintFunc, AtParse) \
\
develop(intx, G1SATBProcessCompletedThreshold, 20, \
develop(uintx, G1SATBProcessCompletedThreshold, 20, \
"Number of completed buffers that triggers log processing.") \
range(0, max_jint) \
\