8277854: The upper bound of GCCardSizeInBytes should be limited to 512 for 32-bit platforms

Reviewed-by: tschatzl, mli
This commit is contained in:
Jie Fu 2021-11-29 23:17:39 +00:00
parent 825e633e71
commit 3a4a94e5a8

View File

@ -696,7 +696,7 @@
\
product(uint, GCCardSizeInBytes, 512, \
"Card table entry size (in bytes) for card based collectors") \
range(128, 1024) \
range(128, NOT_LP64(512) LP64_ONLY(1024)) \
constraint(GCCardSizeInBytesConstraintFunc,AtParse)
// end of GC_FLAGS