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




 831           "Exercise register saving code in critical natives")              \
 832                                                                             \
 833   product(bool, UseSSE42Intrinsics, false,                                  \
 834           "SSE4.2 versions of intrinsics")                                  \
 835                                                                             \
 836   product(bool, UseAESIntrinsics, false,                                    \
 837           "Use intrinsics for AES versions of crypto")                      \
 838                                                                             \
 839   product(bool, UseSHA1Intrinsics, false,                                   \
 840           "Use intrinsics for SHA-1 crypto hash function")                  \
 841                                                                             \
 842   product(bool, UseSHA256Intrinsics, false,                                 \
 843           "Use intrinsics for SHA-224 and SHA-256 crypto hash functions")   \
 844                                                                             \
 845   product(bool, UseSHA512Intrinsics, false,                                 \
 846           "Use intrinsics for SHA-384 and SHA-512 crypto hash functions")   \
 847                                                                             \
 848   product(bool, UseCRC32Intrinsics, false,                                  \
 849           "use intrinsics for java.util.zip.CRC32")                         \
 850                                                                             \



 851   develop(bool, TraceCallFixup, false,                                      \
 852           "Trace all call fixups")                                          \
 853                                                                             \
 854   develop(bool, DeoptimizeALot, false,                                      \
 855           "Deoptimize at every exit from the runtime system")               \
 856                                                                             \
 857   notproduct(ccstrlist, DeoptimizeOnlyAt, "",                               \
 858           "A comma separated list of bcis to deoptimize at")                \
 859                                                                             \
 860   product(bool, DeoptimizeRandom, false,                                    \
 861           "Deoptimize random frames on random exit from the runtime system")\
 862                                                                             \
 863   notproduct(bool, ZombieALot, false,                                       \
 864           "Create zombies (non-entrant) at exit from the runtime system")   \
 865                                                                             \
 866   product(bool, UnlinkSymbolsALot, false,                                   \
 867           "Unlink unreferenced symbols from the symbol table at safepoints")\
 868                                                                             \
 869   notproduct(bool, WalkStackALot, false,                                    \
 870           "Trace stack (no print) at every exit from the runtime system")   \




 831           "Exercise register saving code in critical natives")              \
 832                                                                             \
 833   product(bool, UseSSE42Intrinsics, false,                                  \
 834           "SSE4.2 versions of intrinsics")                                  \
 835                                                                             \
 836   product(bool, UseAESIntrinsics, false,                                    \
 837           "Use intrinsics for AES versions of crypto")                      \
 838                                                                             \
 839   product(bool, UseSHA1Intrinsics, false,                                   \
 840           "Use intrinsics for SHA-1 crypto hash function")                  \
 841                                                                             \
 842   product(bool, UseSHA256Intrinsics, false,                                 \
 843           "Use intrinsics for SHA-224 and SHA-256 crypto hash functions")   \
 844                                                                             \
 845   product(bool, UseSHA512Intrinsics, false,                                 \
 846           "Use intrinsics for SHA-384 and SHA-512 crypto hash functions")   \
 847                                                                             \
 848   product(bool, UseCRC32Intrinsics, false,                                  \
 849           "use intrinsics for java.util.zip.CRC32")                         \
 850                                                                             \
 851   product(bool, UseCRC32CIntrinsics, false,                                 \
 852           "use intrinsics for java.util.zip.CRC32C")                        \
 853                                                                             \
 854   develop(bool, TraceCallFixup, false,                                      \
 855           "Trace all call fixups")                                          \
 856                                                                             \
 857   develop(bool, DeoptimizeALot, false,                                      \
 858           "Deoptimize at every exit from the runtime system")               \
 859                                                                             \
 860   notproduct(ccstrlist, DeoptimizeOnlyAt, "",                               \
 861           "A comma separated list of bcis to deoptimize at")                \
 862                                                                             \
 863   product(bool, DeoptimizeRandom, false,                                    \
 864           "Deoptimize random frames on random exit from the runtime system")\
 865                                                                             \
 866   notproduct(bool, ZombieALot, false,                                       \
 867           "Create zombies (non-entrant) at exit from the runtime system")   \
 868                                                                             \
 869   product(bool, UnlinkSymbolsALot, false,                                   \
 870           "Unlink unreferenced symbols from the symbol table at safepoints")\
 871                                                                             \
 872   notproduct(bool, WalkStackALot, false,                                    \
 873           "Trace stack (no print) at every exit from the runtime system")   \


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