diff jvmci/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/HotSpotJVMCIRuntime.java @ 24145:2f2299c68571 jvmci-0.27

change default of UseJVMCICompiler based on jvmci.Compiler property (which can now be set from <java.home>/jre/lib/jvmci/compiler-name)
author Doug Simon <doug.simon@oracle.com>
date Thu, 15 Jun 2017 21:38:21 +0200
parents 42cc0c2dd4a7
children a86e69d2d92e
line wrap: on
line diff
--- a/jvmci/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/HotSpotJVMCIRuntime.java	Thu Jun 15 12:04:08 2017 +0200
+++ b/jvmci/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/HotSpotJVMCIRuntime.java	Thu Jun 15 21:38:21 2017 +0200
@@ -89,9 +89,9 @@
     public enum Option {
         // @formatter:off
         Compiler(String.class, null, "Selects the system compiler. This must match the getCompilerName() value returned " +
-                        "by a jdk.vm.ci.runtime.JVMCICompilerFactory provider. " +
-                        "An empty string or the value \"null\" selects a compiler " +
-                        "that will raise an exception upon receiving a compilation request."),
+                        "by a jdk.vm.ci.runtime.JVMCICompilerFactory provider. An empty string or the value \"null\" " +
+                        "selects a compiler that will raise an exception upon receiving a compilation request. This " +
+                        "property can also be defined by the contents of <java.home>/lib/jvmci/compiler-name."),
         // Note: The following one is not used (see InitTimer.ENABLED). It is added here
         // so that -XX:+JVMCIPrintProperties shows the option.
         InitTimer(Boolean.class, false, "Specifies if initialization timing is enabled."),