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




 819           "Use intrinsics for AES versions of crypto")                      \
 820                                                                             \
 821   product(bool, UseSHA1Intrinsics, false,                                   \
 822           "Use intrinsics for SHA-1 crypto hash function. "                 \
 823           "Requires that UseSHA is enabled.")                                \
 824                                                                             \
 825   product(bool, UseSHA256Intrinsics, false,                                 \
 826           "Use intrinsics for SHA-224 and SHA-256 crypto hash functions. "  \
 827           "Requires that UseSHA is enabled.")                               \
 828                                                                             \
 829   product(bool, UseSHA512Intrinsics, false,                                 \
 830           "Use intrinsics for SHA-384 and SHA-512 crypto hash functions. "  \
 831           "Requires that UseSHA is enabled.")                               \
 832                                                                             \
 833   product(bool, UseCRC32Intrinsics, false,                                  \
 834           "use intrinsics for java.util.zip.CRC32")                         \
 835                                                                             \
 836   product(bool, UseCRC32CIntrinsics, false,                                 \
 837           "use intrinsics for java.util.zip.CRC32C")                        \
 838                                                                             \



 839   diagnostic(ccstrlist, DisableIntrinsic, "",                               \
 840          "do not expand intrinsics whose (internal) names appear here")     \
 841                                                                             \
 842   develop(bool, TraceCallFixup, false,                                      \
 843           "Trace all call fixups")                                          \
 844                                                                             \
 845   develop(bool, DeoptimizeALot, false,                                      \
 846           "Deoptimize at every exit from the runtime system")               \
 847                                                                             \
 848   notproduct(ccstrlist, DeoptimizeOnlyAt, "",                               \
 849           "A comma separated list of bcis to deoptimize at")                \
 850                                                                             \
 851   product(bool, DeoptimizeRandom, false,                                    \
 852           "Deoptimize random frames on random exit from the runtime system")\
 853                                                                             \
 854   notproduct(bool, ZombieALot, false,                                       \
 855           "Create zombies (non-entrant) at exit from the runtime system")   \
 856                                                                             \
 857   product(bool, UnlinkSymbolsALot, false,                                   \
 858           "Unlink unreferenced symbols from the symbol table at safepoints")\




 819           "Use intrinsics for AES versions of crypto")                      \
 820                                                                             \
 821   product(bool, UseSHA1Intrinsics, false,                                   \
 822           "Use intrinsics for SHA-1 crypto hash function. "                 \
 823           "Requires that UseSHA is enabled.")                                \
 824                                                                             \
 825   product(bool, UseSHA256Intrinsics, false,                                 \
 826           "Use intrinsics for SHA-224 and SHA-256 crypto hash functions. "  \
 827           "Requires that UseSHA is enabled.")                               \
 828                                                                             \
 829   product(bool, UseSHA512Intrinsics, false,                                 \
 830           "Use intrinsics for SHA-384 and SHA-512 crypto hash functions. "  \
 831           "Requires that UseSHA is enabled.")                               \
 832                                                                             \
 833   product(bool, UseCRC32Intrinsics, false,                                  \
 834           "use intrinsics for java.util.zip.CRC32")                         \
 835                                                                             \
 836   product(bool, UseCRC32CIntrinsics, false,                                 \
 837           "use intrinsics for java.util.zip.CRC32C")                        \
 838                                                                             \
 839   product(bool, UseAdler32Intrinsics, false,                                \
 840           "use intrinsics for java.util.zip.Adler32")                       \
 841                                                                             \
 842   diagnostic(ccstrlist, DisableIntrinsic, "",                               \
 843          "do not expand intrinsics whose (internal) names appear here")     \
 844                                                                             \
 845   develop(bool, TraceCallFixup, false,                                      \
 846           "Trace all call fixups")                                          \
 847                                                                             \
 848   develop(bool, DeoptimizeALot, false,                                      \
 849           "Deoptimize at every exit from the runtime system")               \
 850                                                                             \
 851   notproduct(ccstrlist, DeoptimizeOnlyAt, "",                               \
 852           "A comma separated list of bcis to deoptimize at")                \
 853                                                                             \
 854   product(bool, DeoptimizeRandom, false,                                    \
 855           "Deoptimize random frames on random exit from the runtime system")\
 856                                                                             \
 857   notproduct(bool, ZombieALot, false,                                       \
 858           "Create zombies (non-entrant) at exit from the runtime system")   \
 859                                                                             \
 860   product(bool, UnlinkSymbolsALot, false,                                   \
 861           "Unlink unreferenced symbols from the symbol table at safepoints")\


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