< prev index next >

src/share/vm/runtime/globals.hpp

Print this page




1382   develop(bool, TraceICBuffer, false,                                       \
1383           "Trace usage of IC buffer")                                       \
1384                                                                             \
1385   develop(bool, TraceCompiledIC, false,                                     \
1386           "Trace changes of compiled IC")                                   \
1387                                                                             \
1388   /* gc */                                                                  \
1389                                                                             \
1390   product(bool, UseSerialGC, false,                                         \
1391           "Use the Serial garbage collector")                               \
1392                                                                             \
1393   product(bool, UseG1GC, false,                                             \
1394           "Use the Garbage-First garbage collector")                        \
1395                                                                             \
1396   product(bool, UseParallelGC, false,                                       \
1397           "Use the Parallel Scavenge garbage collector")                    \
1398                                                                             \
1399   product(bool, UseParallelOldGC, false,                                    \
1400           "Use the Parallel Old garbage collector")                         \
1401                                                                             \



1402   product(uintx, HeapMaximumCompactionInterval, 20,                         \
1403           "How often should we maximally compact the heap (not allowing "   \
1404           "any dead space)")                                                \
1405           range(0, max_uintx)                                               \
1406                                                                             \
1407   product(uintx, HeapFirstMaximumCompactionCount, 3,                        \
1408           "The collection count for the first maximum compaction")          \
1409           range(0, max_uintx)                                               \
1410                                                                             \
1411   product(bool, UseMaximumCompactionOnSystemGC, true,                       \
1412           "Use maximum compaction in the Parallel Old garbage collector "   \
1413           "for a system GC")                                                \
1414                                                                             \
1415   product(uintx, ParallelOldDeadWoodLimiterMean, 50,                        \
1416           "The mean used by the parallel compact dead wood "                \
1417           "limiter (a number between 0-100)")                               \
1418           range(0, 100)                                                     \
1419                                                                             \
1420   product(uintx, ParallelOldDeadWoodLimiterStdDev, 80,                      \
1421           "The standard deviation used by the parallel compact dead wood "  \




1382   develop(bool, TraceICBuffer, false,                                       \
1383           "Trace usage of IC buffer")                                       \
1384                                                                             \
1385   develop(bool, TraceCompiledIC, false,                                     \
1386           "Trace changes of compiled IC")                                   \
1387                                                                             \
1388   /* gc */                                                                  \
1389                                                                             \
1390   product(bool, UseSerialGC, false,                                         \
1391           "Use the Serial garbage collector")                               \
1392                                                                             \
1393   product(bool, UseG1GC, false,                                             \
1394           "Use the Garbage-First garbage collector")                        \
1395                                                                             \
1396   product(bool, UseParallelGC, false,                                       \
1397           "Use the Parallel Scavenge garbage collector")                    \
1398                                                                             \
1399   product(bool, UseParallelOldGC, false,                                    \
1400           "Use the Parallel Old garbage collector")                         \
1401                                                                             \
1402   experimental(bool, UseEpsilonGC, false,                                   \
1403           "Use the Epsilon (no-op) 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 "  \


< prev index next >