< prev index next >
src/hotspot/share/jvmci/jvmci_globals.hpp
Print this page
@@ -47,14 +47,18 @@
\
experimental(bool, EnableJVMCI, false, \
"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") \
\
experimental(bool, BootstrapJVMCI, false, \
@@ -115,11 +119,12 @@
"and methods the JVMCI shared library must provide") \
\
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()")) \
\
NOT_COMPILER2(diagnostic(bool, UseSquareToLenIntrinsic, false, \
< prev index next >