8233900: [JVMCI] improve help text for EnableJVMCIProduct option

Reviewed-by: kvn
This commit is contained in:
Doug Simon 2019-11-12 10:19:04 +01:00
parent 1833584f92
commit 301e068935

View File

@ -49,10 +49,14 @@ class fileStream;
"Enable JVMCI") \
\
experimental(bool, EnableJVMCIProduct, false, \
"Allow JVMCI to be used in product mode") \
"Allow JVMCI to be used in product mode. This alters a subset of "\
"JVMCI flags to be non-experimental, defaults UseJVMCICompiler " \
"to true and defaults UseJVMCINativeLibrary to true if a JVMCI " \
"native library is available.") \
\
experimental(bool, UseJVMCICompiler, false, \
"Use JVMCI as the default compiler") \
"Use JVMCI as the default compiler. Defaults to true if " \
"EnableJVMCIProduct is true.") \
\
experimental(bool, JVMCIPrintProperties, false, \
"Prints properties used by the JVMCI compiler and exits") \
@ -117,7 +121,8 @@ class fileStream;
experimental(bool, UseJVMCINativeLibrary, false, \
"Execute JVMCI Java code from a shared library " \
"instead of loading it from class files and executing it " \
"on the HotSpot heap") \
"on the HotSpot heap. Defaults to true if EnableJVMCIProduct is " \
"true and a JVMCI native library is available.")\
\
NOT_COMPILER2(diagnostic(bool, UseMultiplyToLenIntrinsic, false, \
"Enables intrinsification of BigInteger.multiplyToLen()")) \