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

src/share/vm/runtime/globals.hpp

Print this page




 920           "Force exceptions on FP stack under/overflow")                    \
 921                                                                             \
 922   develop(bool, VerifyStackAtCalls, false,                                  \
 923           "Verify that the stack pointer is unchanged after calls")         \
 924                                                                             \
 925   develop(bool, TraceJavaAssertions, false,                                 \
 926           "Trace java language assertions")                                 \
 927                                                                             \
 928   notproduct(bool, CheckAssertionStatusDirectives, false,                   \
 929           "Temporary - see javaClasses.cpp")                                \
 930                                                                             \
 931   notproduct(bool, PrintMallocFree, false,                                  \
 932           "Trace calls to C heap malloc/free allocation")                   \
 933                                                                             \
 934   product(bool, PrintOopAddress, false,                                     \
 935           "Always print the location of the oop")                           \
 936                                                                             \
 937   notproduct(bool, VerifyCodeCache, false,                                  \
 938           "Verify code cache on memory allocation/deallocation")            \
 939                                                                             \
 940   develop(bool, ZapDeadCompiledLocals, false,                               \
 941           "Zap dead locals in compiler frames")                             \
 942                                                                             \
 943   notproduct(bool, ZapDeadLocalsOld, false,                                 \
 944           "Zap dead locals (old version, zaps all frames when "             \
 945           "entering the VM")                                                \
 946                                                                             \
 947   notproduct(bool, CheckOopishValues, false,                                \
 948           "Warn if value contains oop (requires ZapDeadLocals)")            \
 949                                                                             \
 950   develop(bool, UseMallocOnly, false,                                       \
 951           "Use only malloc/free for allocation (no resource area/arena)")   \
 952                                                                             \
 953   develop(bool, PrintMalloc, false,                                         \
 954           "Print all malloc/free calls")                                    \
 955                                                                             \
 956   develop(bool, PrintMallocStatistics, false,                               \
 957           "Print malloc/free statistics")                                   \
 958                                                                             \
 959   develop(bool, ZapResourceArea, trueInDebug,                               \
 960           "Zap freed resource/arena space with 0xABABABAB")                 \
 961                                                                             \
 962   notproduct(bool, ZapVMHandleArea, trueInDebug,                            \
 963           "Zap freed VM handle space with 0xBCBCBCBC")                      \
 964                                                                             \
 965   develop(bool, ZapJNIHandleArea, trueInDebug,                              \
 966           "Zap freed JNI handle space with 0xFEFEFEFE")                     \
 967                                                                             \
 968   notproduct(bool, ZapStackSegments, trueInDebug,                           \
 969           "Zap allocated/freed stack segments with 0xFADFADED")             \


1472           "Time calls to GenerateOopMap::compute_map() in sum")             \
1473                                                                             \
1474   develop(bool, TimeOopMap2, false,                                         \
1475           "Time calls to GenerateOopMap::compute_map() individually")       \
1476                                                                             \
1477   develop(bool, TraceMonitorMismatch, false,                                \
1478           "Trace monitor matching failures during OopMapGeneration")        \
1479                                                                             \
1480   develop(bool, TraceOopMapRewrites, false,                                 \
1481           "Trace rewriting of method oops during oop map generation")       \
1482                                                                             \
1483   develop(bool, TraceSafepoint, false,                                      \
1484           "Trace safepoint operations")                                     \
1485                                                                             \
1486   develop(bool, TraceICBuffer, false,                                       \
1487           "Trace usage of IC buffer")                                       \
1488                                                                             \
1489   develop(bool, TraceCompiledIC, false,                                     \
1490           "Trace changes of compiled IC")                                   \
1491                                                                             \
1492   notproduct(bool, TraceZapDeadLocals, false,                               \
1493           "Trace zapping dead locals")                                      \
1494                                                                             \
1495   develop(bool, TraceStartupTime, false,                                    \
1496           "Trace setup time")                                               \
1497                                                                             \
1498   develop(bool, TraceProtectionDomainVerification, false,                   \
1499           "Trace protection domain verification")                           \
1500                                                                             \
1501   develop(bool, TraceClearedExceptions, false,                              \
1502           "Print when an exception is forcibly cleared")                    \
1503                                                                             \
1504   product(bool, TraceClassResolution, false,                                \
1505           "Trace all constant pool resolutions (for debugging)")            \
1506                                                                             \
1507   product(bool, TraceBiasedLocking, false,                                  \
1508           "Trace biased locking in JVM")                                    \
1509                                                                             \
1510   product(bool, TraceMonitorInflation, false,                               \
1511           "Trace monitor inflation in JVM")                                 \
1512                                                                             \
1513   /* gc */                                                                  \
1514                                                                             \




 920           "Force exceptions on FP stack under/overflow")                    \
 921                                                                             \
 922   develop(bool, VerifyStackAtCalls, false,                                  \
 923           "Verify that the stack pointer is unchanged after calls")         \
 924                                                                             \
 925   develop(bool, TraceJavaAssertions, false,                                 \
 926           "Trace java language assertions")                                 \
 927                                                                             \
 928   notproduct(bool, CheckAssertionStatusDirectives, false,                   \
 929           "Temporary - see javaClasses.cpp")                                \
 930                                                                             \
 931   notproduct(bool, PrintMallocFree, false,                                  \
 932           "Trace calls to C heap malloc/free allocation")                   \
 933                                                                             \
 934   product(bool, PrintOopAddress, false,                                     \
 935           "Always print the location of the oop")                           \
 936                                                                             \
 937   notproduct(bool, VerifyCodeCache, false,                                  \
 938           "Verify code cache on memory allocation/deallocation")            \
 939                                                                             \










 940   develop(bool, UseMallocOnly, false,                                       \
 941           "Use only malloc/free for allocation (no resource area/arena)")   \
 942                                                                             \
 943   develop(bool, PrintMalloc, false,                                         \
 944           "Print all malloc/free calls")                                    \
 945                                                                             \
 946   develop(bool, PrintMallocStatistics, false,                               \
 947           "Print malloc/free statistics")                                   \
 948                                                                             \
 949   develop(bool, ZapResourceArea, trueInDebug,                               \
 950           "Zap freed resource/arena space with 0xABABABAB")                 \
 951                                                                             \
 952   notproduct(bool, ZapVMHandleArea, trueInDebug,                            \
 953           "Zap freed VM handle space with 0xBCBCBCBC")                      \
 954                                                                             \
 955   develop(bool, ZapJNIHandleArea, trueInDebug,                              \
 956           "Zap freed JNI handle space with 0xFEFEFEFE")                     \
 957                                                                             \
 958   notproduct(bool, ZapStackSegments, trueInDebug,                           \
 959           "Zap allocated/freed stack segments with 0xFADFADED")             \


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



1482   develop(bool, TraceStartupTime, false,                                    \
1483           "Trace setup time")                                               \
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   product(bool, TraceClassResolution, false,                                \
1492           "Trace all constant pool resolutions (for debugging)")            \
1493                                                                             \
1494   product(bool, TraceBiasedLocking, false,                                  \
1495           "Trace biased locking in JVM")                                    \
1496                                                                             \
1497   product(bool, TraceMonitorInflation, false,                               \
1498           "Trace monitor inflation in JVM")                                 \
1499                                                                             \
1500   /* gc */                                                                  \
1501                                                                             \


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