< prev index next >

src/hotspot/share/runtime/globals.hpp

Print this page

        

@@ -251,12 +251,13 @@
           "(Deprecated) Instruct the VM to assume multiple processors are available")\
                                                                             \
   /* UseMembar is theoretically a temp flag used for memory barrier      */ \
   /* removal testing.  It was supposed to be removed before FCS but has  */ \
   /* been re-added (see 6401008)                                         */ \
+  NOT_AARCH32(                                                              \
   product_pd(bool, UseMembar,                                               \
-          "(Unstable) Issues membars on thread state transitions")          \
+          "(Unstable) Issues membars on thread state transitions"))         \
                                                                             \
   develop(bool, CleanChunkPoolAsync, true,                                  \
           "Clean the chunk pool asynchronously")                            \
                                                                             \
   product_pd(bool, ThreadLocalHandshakes,                                   \

@@ -442,10 +443,16 @@
           "Use intrinsics for AES versions of crypto")                      \
                                                                             \
   diagnostic(bool, UseAESCTRIntrinsics, false,                              \
           "Use intrinsics for the paralleled version of AES/CTR crypto")    \
                                                                             \
+  AARCH32_ONLY(diagnostic(bool, UseMontgomeryMultiplyIntrinsic, false,      \
+          "Enables intrinsification of BigInteger.montgomeryMultiply()"))   \
+                                                                            \
+  AARCH32_ONLY(diagnostic(bool, UseMontgomerySquareIntrinsic, false,        \
+          "Enables intrinsification of BigInteger.montgomerySquare()"))     \
+                                                                            \
   diagnostic(bool, UseSHA1Intrinsics, false,                                \
           "Use intrinsics for SHA-1 crypto hash function. "                 \
           "Requires that UseSHA is enabled.")                               \
                                                                             \
   diagnostic(bool, UseSHA256Intrinsics, false,                              \
< prev index next >