< prev index next >

src/share/vm/runtime/globals.hpp

Print this page




1417   product(bool, TraceBiasedLocking, false,                                  \
1418           "Trace biased locking in JVM")                                    \
1419                                                                             \
1420   product(bool, TraceMonitorInflation, false,                               \
1421           "Trace monitor inflation in JVM")                                 \
1422                                                                             \
1423   /* gc */                                                                  \
1424                                                                             \
1425   product(bool, UseSerialGC, false,                                         \
1426           "Use the Serial garbage collector")                               \
1427                                                                             \
1428   product(bool, UseG1GC, false,                                             \
1429           "Use the Garbage-First garbage collector")                        \
1430                                                                             \
1431   product(bool, UseParallelGC, false,                                       \
1432           "Use the Parallel Scavenge garbage collector")                    \
1433                                                                             \
1434   product(bool, UseParallelOldGC, false,                                    \
1435           "Use the Parallel Old garbage collector")                         \
1436                                                                             \



1437   product(uintx, HeapMaximumCompactionInterval, 20,                         \
1438           "How often should we maximally compact the heap (not allowing "   \
1439           "any dead space)")                                                \
1440                                                                             \
1441   product(uintx, HeapFirstMaximumCompactionCount, 3,                        \
1442           "The collection count for the first maximum compaction")          \
1443                                                                             \
1444   product(bool, UseMaximumCompactionOnSystemGC, true,                       \
1445           "Use maximum compaction in the Parallel Old garbage collector "   \
1446           "for a system GC")                                                \
1447                                                                             \
1448   product(uintx, ParallelOldDeadWoodLimiterMean, 50,                        \
1449           "The mean used by the parallel compact dead wood "                \
1450           "limiter (a number between 0-100)")                               \
1451                                                                             \
1452   product(uintx, ParallelOldDeadWoodLimiterStdDev, 80,                      \
1453           "The standard deviation used by the parallel compact dead wood "  \
1454           "limiter (a number between 0-100)")                               \
1455                                                                             \
1456   product(uintx, ParallelGCThreads, 0,                                      \




1417   product(bool, TraceBiasedLocking, false,                                  \
1418           "Trace biased locking in JVM")                                    \
1419                                                                             \
1420   product(bool, TraceMonitorInflation, false,                               \
1421           "Trace monitor inflation in JVM")                                 \
1422                                                                             \
1423   /* gc */                                                                  \
1424                                                                             \
1425   product(bool, UseSerialGC, false,                                         \
1426           "Use the Serial garbage collector")                               \
1427                                                                             \
1428   product(bool, UseG1GC, false,                                             \
1429           "Use the Garbage-First garbage collector")                        \
1430                                                                             \
1431   product(bool, UseParallelGC, false,                                       \
1432           "Use the Parallel Scavenge garbage collector")                    \
1433                                                                             \
1434   product(bool, UseParallelOldGC, false,                                    \
1435           "Use the Parallel Old garbage collector")                         \
1436                                                                             \
1437   product(bool, UseShenandoahGC, false,                                     \
1438           "Use the Shenandoah garbage collector")                           \
1439                                                                             \
1440   product(uintx, HeapMaximumCompactionInterval, 20,                         \
1441           "How often should we maximally compact the heap (not allowing "   \
1442           "any dead space)")                                                \
1443                                                                             \
1444   product(uintx, HeapFirstMaximumCompactionCount, 3,                        \
1445           "The collection count for the first maximum compaction")          \
1446                                                                             \
1447   product(bool, UseMaximumCompactionOnSystemGC, true,                       \
1448           "Use maximum compaction in the Parallel Old garbage collector "   \
1449           "for a system GC")                                                \
1450                                                                             \
1451   product(uintx, ParallelOldDeadWoodLimiterMean, 50,                        \
1452           "The mean used by the parallel compact dead wood "                \
1453           "limiter (a number between 0-100)")                               \
1454                                                                             \
1455   product(uintx, ParallelOldDeadWoodLimiterStdDev, 80,                      \
1456           "The standard deviation used by the parallel compact dead wood "  \
1457           "limiter (a number between 0-100)")                               \
1458                                                                             \
1459   product(uintx, ParallelGCThreads, 0,                                      \


< prev index next >