1385 develop(bool, TraceICBuffer, false, \ 1386 "Trace usage of IC buffer") \ 1387 \ 1388 develop(bool, TraceCompiledIC, false, \ 1389 "Trace changes of compiled IC") \ 1390 \ 1391 /* gc */ \ 1392 \ 1393 product(bool, UseSerialGC, false, \ 1394 "Use the Serial garbage collector") \ 1395 \ 1396 product(bool, UseG1GC, false, \ 1397 "Use the Garbage-First garbage collector") \ 1398 \ 1399 product(bool, UseParallelGC, false, \ 1400 "Use the Parallel Scavenge garbage collector") \ 1401 \ 1402 product(bool, UseParallelOldGC, false, \ 1403 "Use the Parallel Old garbage collector") \ 1404 \ 1405 product(uintx, HeapMaximumCompactionInterval, 20, \ 1406 "How often should we maximally compact the heap (not allowing " \ 1407 "any dead space)") \ 1408 range(0, max_uintx) \ 1409 \ 1410 product(uintx, HeapFirstMaximumCompactionCount, 3, \ 1411 "The collection count for the first maximum compaction") \ 1412 range(0, max_uintx) \ 1413 \ 1414 product(bool, UseMaximumCompactionOnSystemGC, true, \ 1415 "Use maximum compaction in the Parallel Old garbage collector " \ 1416 "for a system GC") \ 1417 \ 1418 product(uintx, ParallelOldDeadWoodLimiterMean, 50, \ 1419 "The mean used by the parallel compact dead wood " \ 1420 "limiter (a number between 0-100)") \ 1421 range(0, 100) \ 1422 \ 1423 product(uintx, ParallelOldDeadWoodLimiterStdDev, 80, \ 1424 "The standard deviation used by the parallel compact dead wood " \ | 1385 develop(bool, TraceICBuffer, false, \ 1386 "Trace usage of IC buffer") \ 1387 \ 1388 develop(bool, TraceCompiledIC, false, \ 1389 "Trace changes of compiled IC") \ 1390 \ 1391 /* gc */ \ 1392 \ 1393 product(bool, UseSerialGC, false, \ 1394 "Use the Serial garbage collector") \ 1395 \ 1396 product(bool, UseG1GC, false, \ 1397 "Use the Garbage-First garbage collector") \ 1398 \ 1399 product(bool, UseParallelGC, false, \ 1400 "Use the Parallel Scavenge garbage collector") \ 1401 \ 1402 product(bool, UseParallelOldGC, false, \ 1403 "Use the Parallel Old garbage collector") \ 1404 \ 1405 experimental(bool, UseEpsilonGC, false, \ 1406 "Use the Epsilon (no-op) garbage collector") \ 1407 \ 1408 product(uintx, HeapMaximumCompactionInterval, 20, \ 1409 "How often should we maximally compact the heap (not allowing " \ 1410 "any dead space)") \ 1411 range(0, max_uintx) \ 1412 \ 1413 product(uintx, HeapFirstMaximumCompactionCount, 3, \ 1414 "The collection count for the first maximum compaction") \ 1415 range(0, max_uintx) \ 1416 \ 1417 product(bool, UseMaximumCompactionOnSystemGC, true, \ 1418 "Use maximum compaction in the Parallel Old garbage collector " \ 1419 "for a system GC") \ 1420 \ 1421 product(uintx, ParallelOldDeadWoodLimiterMean, 50, \ 1422 "The mean used by the parallel compact dead wood " \ 1423 "limiter (a number between 0-100)") \ 1424 range(0, 100) \ 1425 \ 1426 product(uintx, ParallelOldDeadWoodLimiterStdDev, 80, \ 1427 "The standard deviation used by the parallel compact dead wood " \ |