diff -r 2251ba078bec -r eb7ce841ccec src/share/vm/runtime/globals.hpp --- a/src/share/vm/runtime/globals.hpp Sat Oct 24 16:18:50 2020 +0800 +++ b/src/share/vm/runtime/globals.hpp Sat Oct 24 16:43:47 2020 +0800 @@ -718,6 +718,9 @@ product(bool, CriticalJNINatives, true, \ "Check for critical JNI entry points") \ \ + product(bool, UseLegacyJNINameEscaping, false, \ + "Use the original JNI name escaping scheme") \ + \ notproduct(bool, StressCriticalJNINatives, false, \ "Exercise register saving code in critical natives") \ \ @@ -1351,7 +1354,7 @@ develop(bool, TraceClassInitialization, false, \ "Trace class initialization") \ \ - develop(bool, TraceExceptions, false, \ + product(bool, TraceExceptions, false, \ "Trace exceptions") \ \ develop(bool, TraceICs, false, \ @@ -2031,7 +2034,7 @@ experimental(uintx, WorkStealingSpinToYieldRatio, 10, \ "Ratio of hard spins to calls to yield") \ \ - develop(uintx, ObjArrayMarkingStride, 512, \ + develop(uintx, ObjArrayMarkingStride, 2048, \ "Number of object array elements to push onto the marking stack " \ "before pushing a continuation entry") \ \