< prev index next >

src/hotspot/share/gc/shared/gc_globals.hpp

Print this page
rev 50428 : 8203030: Zero s390 31 bit size_t type conflicts in shared code
Summary: Cast to size_t or change to size_t foe compatibility with other archs.
Reviewed-by: Duke
Contributed-by: chrisphi


 294           "Number of promotion failures occurring at PLAB "                 \
 295           "refill attempts (ParNew) or promotion attempts "                 \
 296           "(other young collectors)")                                       \
 297                                                                             \
 298   develop(uintx, PromotionFailureALotInterval, 5,                           \
 299           "Total collections between promotion failures a lot")             \
 300                                                                             \
 301   experimental(uintx, WorkStealingSleepMillis, 1,                           \
 302           "Sleep time when sleep is used for yields")                       \
 303                                                                             \
 304   experimental(uintx, WorkStealingYieldsBeforeSleep, 5000,                  \
 305           "Number of yields before a sleep is done during work stealing")   \
 306                                                                             \
 307   experimental(uintx, WorkStealingHardSpins, 4096,                          \
 308           "Number of iterations in a spin loop between checks on "          \
 309           "time out of hard spin")                                          \
 310                                                                             \
 311   experimental(uintx, WorkStealingSpinToYieldRatio, 10,                     \
 312           "Ratio of hard spins to calls to yield")                          \
 313                                                                             \
 314   develop(uintx, ObjArrayMarkingStride, 2048,                               \
 315           "Number of object array elements to push onto the marking stack " \
 316           "before pushing a continuation entry")                            \
 317                                                                             \
 318   develop(bool, MetadataAllocationFailALot, false,                          \
 319           "Fail metadata allocations at intervals controlled by "           \
 320           "MetadataAllocationFailALotInterval")                             \
 321                                                                             \
 322   develop(uintx, MetadataAllocationFailALotInterval, 1000,                  \
 323           "Metadata allocation failure a lot interval")                     \
 324                                                                             \
 325   notproduct(bool, ExecuteInternalVMTests, false,                           \
 326           "Enable execution of internal VM tests")                          \
 327                                                                             \
 328   notproduct(bool, VerboseInternalVMTests, false,                           \
 329           "Turn on logging for internal VM tests.")                         \
 330                                                                             \
 331   product(bool, ExecutingUnitTests, false,                                  \
 332           "Whether the JVM is running unit tests or not")                   \
 333                                                                             \
 334   product_pd(bool, UseTLAB, "Use thread-local object allocation")           \




 294           "Number of promotion failures occurring at PLAB "                 \
 295           "refill attempts (ParNew) or promotion attempts "                 \
 296           "(other young collectors)")                                       \
 297                                                                             \
 298   develop(uintx, PromotionFailureALotInterval, 5,                           \
 299           "Total collections between promotion failures a lot")             \
 300                                                                             \
 301   experimental(uintx, WorkStealingSleepMillis, 1,                           \
 302           "Sleep time when sleep is used for yields")                       \
 303                                                                             \
 304   experimental(uintx, WorkStealingYieldsBeforeSleep, 5000,                  \
 305           "Number of yields before a sleep is done during work stealing")   \
 306                                                                             \
 307   experimental(uintx, WorkStealingHardSpins, 4096,                          \
 308           "Number of iterations in a spin loop between checks on "          \
 309           "time out of hard spin")                                          \
 310                                                                             \
 311   experimental(uintx, WorkStealingSpinToYieldRatio, 10,                     \
 312           "Ratio of hard spins to calls to yield")                          \
 313                                                                             \
 314   develop(size_t, ObjArrayMarkingStride, 2048,                              \
 315           "Number of object array elements to push onto the marking stack " \
 316           "before pushing a continuation entry")                            \
 317                                                                             \
 318   develop(bool, MetadataAllocationFailALot, false,                          \
 319           "Fail metadata allocations at intervals controlled by "           \
 320           "MetadataAllocationFailALotInterval")                             \
 321                                                                             \
 322   develop(uintx, MetadataAllocationFailALotInterval, 1000,                  \
 323           "Metadata allocation failure a lot interval")                     \
 324                                                                             \
 325   notproduct(bool, ExecuteInternalVMTests, false,                           \
 326           "Enable execution of internal VM tests")                          \
 327                                                                             \
 328   notproduct(bool, VerboseInternalVMTests, false,                           \
 329           "Turn on logging for internal VM tests.")                         \
 330                                                                             \
 331   product(bool, ExecutingUnitTests, false,                                  \
 332           "Whether the JVM is running unit tests or not")                   \
 333                                                                             \
 334   product_pd(bool, UseTLAB, "Use thread-local object allocation")           \


< prev index next >