src/share/vm/runtime/globals.hpp

changeset 7027
b20a35eae442
parent 6996
f3aeae1f9fc5
child 7031
ee019285a52c
     1.1 --- a/src/share/vm/runtime/globals.hpp	Tue Jun 10 12:28:06 2014 -0700
     1.2 +++ b/src/share/vm/runtime/globals.hpp	Wed Jun 11 11:05:10 2014 -0700
     1.3 @@ -597,6 +597,9 @@
     1.4    product(bool, UseAES, false,                                              \
     1.5            "Control whether AES instructions can be used on x86/x64")        \
     1.6                                                                              \
     1.7 +  product(bool, UseSHA, false,                                              \
     1.8 +          "Control whether SHA instructions can be used on SPARC")          \
     1.9 +                                                                            \
    1.10    product(uintx, LargePageSizeInBytes, 0,                                   \
    1.11            "Large page size (0 to let VM choose the page size)")             \
    1.12                                                                              \
    1.13 @@ -703,6 +706,15 @@
    1.14    product(bool, UseAESIntrinsics, false,                                    \
    1.15            "Use intrinsics for AES versions of crypto")                      \
    1.16                                                                              \
    1.17 +  product(bool, UseSHA1Intrinsics, false,                                   \
    1.18 +          "Use intrinsics for SHA-1 crypto hash function")                  \
    1.19 +                                                                            \
    1.20 +  product(bool, UseSHA256Intrinsics, false,                                 \
    1.21 +          "Use intrinsics for SHA-224 and SHA-256 crypto hash functions")   \
    1.22 +                                                                            \
    1.23 +  product(bool, UseSHA512Intrinsics, false,                                 \
    1.24 +          "Use intrinsics for SHA-384 and SHA-512 crypto hash functions")   \
    1.25 +                                                                            \
    1.26    product(bool, UseCRC32Intrinsics, false,                                  \
    1.27            "use intrinsics for java.util.zip.CRC32")                         \
    1.28                                                                              \

mercurial