8054376: Move RTM flags from Experimental to Product

Mon, 11 Aug 2014 11:43:22 -0700

author
kvn
date
Mon, 11 Aug 2014 11:43:22 -0700
changeset 6998
dac61d838654
parent 6997
dbb05f6d93c4
child 6999
cabe05c85665

8054376: Move RTM flags from Experimental to Product
Reviewed-by: roland

src/cpu/x86/vm/globals_x86.hpp file | annotate | diff | comparison | revisions
     1.1 --- a/src/cpu/x86/vm/globals_x86.hpp	Mon Jul 28 15:06:38 2014 -0700
     1.2 +++ b/src/cpu/x86/vm/globals_x86.hpp	Mon Aug 11 11:43:22 2014 -0700
     1.3 @@ -130,16 +130,16 @@
     1.4            "Use fast-string operation for zeroing: rep stosb")               \
     1.5                                                                              \
     1.6    /* Use Restricted Transactional Memory for lock eliding */                \
     1.7 -  experimental(bool, UseRTMLocking, false,                                  \
     1.8 +  product(bool, UseRTMLocking, false,                                       \
     1.9            "Enable RTM lock eliding for inflated locks in compiled code")    \
    1.10                                                                              \
    1.11    experimental(bool, UseRTMForStackLocks, false,                            \
    1.12            "Enable RTM lock eliding for stack locks in compiled code")       \
    1.13                                                                              \
    1.14 -  experimental(bool, UseRTMDeopt, false,                                    \
    1.15 +  product(bool, UseRTMDeopt, false,                                         \
    1.16            "Perform deopt and recompilation based on RTM abort ratio")       \
    1.17                                                                              \
    1.18 -  experimental(uintx, RTMRetryCount, 5,                                     \
    1.19 +  product(uintx, RTMRetryCount, 5,                                          \
    1.20            "Number of RTM retries on lock abort or busy")                    \
    1.21                                                                              \
    1.22    experimental(intx, RTMSpinLoopCount, 100,                                 \

mercurial