src/share/vm/runtime/globals.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File protectiondomain.02 Sdiff src/share/vm/runtime

src/share/vm/runtime/globals.hpp

Print this page




1465           "Trace OopMapGeneration: print detailed cell states")             \
1466                                                                             \
1467   develop(bool, TimeOopMap, false,                                          \
1468           "Time calls to GenerateOopMap::compute_map() in sum")             \
1469                                                                             \
1470   develop(bool, TimeOopMap2, false,                                         \
1471           "Time calls to GenerateOopMap::compute_map() individually")       \
1472                                                                             \
1473   develop(bool, TraceMonitorMismatch, false,                                \
1474           "Trace monitor matching failures during OopMapGeneration")        \
1475                                                                             \
1476   develop(bool, TraceOopMapRewrites, false,                                 \
1477           "Trace rewriting of method oops during oop map generation")       \
1478                                                                             \
1479   develop(bool, TraceICBuffer, false,                                       \
1480           "Trace usage of IC buffer")                                       \
1481                                                                             \
1482   develop(bool, TraceCompiledIC, false,                                     \
1483           "Trace changes of compiled IC")                                   \
1484                                                                             \
1485   develop(bool, TraceProtectionDomainVerification, false,                   \
1486           "Trace protection domain verification")                           \
1487                                                                             \
1488   develop(bool, TraceClearedExceptions, false,                              \
1489           "Print when an exception is forcibly cleared")                    \
1490                                                                             \
1491   /* gc */                                                                  \
1492                                                                             \
1493   product(bool, UseSerialGC, false,                                         \
1494           "Use the Serial garbage collector")                               \
1495                                                                             \
1496   product(bool, UseG1GC, false,                                             \
1497           "Use the Garbage-First garbage collector")                        \
1498                                                                             \
1499   product(bool, UseParallelGC, false,                                       \
1500           "Use the Parallel Scavenge garbage collector")                    \
1501                                                                             \
1502   product(bool, UseParallelOldGC, false,                                    \
1503           "Use the Parallel Old garbage collector")                         \
1504                                                                             \
1505   product(uintx, HeapMaximumCompactionInterval, 20,                         \
1506           "How often should we maximally compact the heap (not allowing "   \
1507           "any dead space)")                                                \




1465           "Trace OopMapGeneration: print detailed cell states")             \
1466                                                                             \
1467   develop(bool, TimeOopMap, false,                                          \
1468           "Time calls to GenerateOopMap::compute_map() in sum")             \
1469                                                                             \
1470   develop(bool, TimeOopMap2, false,                                         \
1471           "Time calls to GenerateOopMap::compute_map() individually")       \
1472                                                                             \
1473   develop(bool, TraceMonitorMismatch, false,                                \
1474           "Trace monitor matching failures during OopMapGeneration")        \
1475                                                                             \
1476   develop(bool, TraceOopMapRewrites, false,                                 \
1477           "Trace rewriting of method oops during oop map generation")       \
1478                                                                             \
1479   develop(bool, TraceICBuffer, false,                                       \
1480           "Trace usage of IC buffer")                                       \
1481                                                                             \
1482   develop(bool, TraceCompiledIC, false,                                     \
1483           "Trace changes of compiled IC")                                   \
1484                                                                             \



1485   develop(bool, TraceClearedExceptions, false,                              \
1486           "Print when an exception is forcibly cleared")                    \
1487                                                                             \
1488   /* gc */                                                                  \
1489                                                                             \
1490   product(bool, UseSerialGC, false,                                         \
1491           "Use the Serial garbage collector")                               \
1492                                                                             \
1493   product(bool, UseG1GC, false,                                             \
1494           "Use the Garbage-First garbage collector")                        \
1495                                                                             \
1496   product(bool, UseParallelGC, false,                                       \
1497           "Use the Parallel Scavenge garbage collector")                    \
1498                                                                             \
1499   product(bool, UseParallelOldGC, false,                                    \
1500           "Use the Parallel Old garbage collector")                         \
1501                                                                             \
1502   product(uintx, HeapMaximumCompactionInterval, 20,                         \
1503           "How often should we maximally compact the heap (not allowing "   \
1504           "any dead space)")                                                \


src/share/vm/runtime/globals.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File