comparison jvmci/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/HotSpotJVMCIRuntime.java @ 23319:c1935b089c01

8151470: [JVMCI] remove up-call to HotSpotJVMCICompilerConfig.selectCompiler Reviewed-by: dnsimon, vlivanov Contributed-by: twisti
author Roland Schatz <roland.schatz@oracle.com>
date Fri, 11 Mar 2016 16:00:25 +0100
parents 7b09dede4552
children 56479400913e
comparison
equal deleted inserted replaced
23318:293eb76b86d3 23319:c1935b089c01
89 89
90 /** 90 /**
91 * A list of all supported JVMCI options. 91 * A list of all supported JVMCI options.
92 */ 92 */
93 public enum Option { 93 public enum Option {
94 Compiler(String.class, null, "Selects the system compiler."),
94 ImplicitStableValues(boolean.class, true, "Mark well-known stable fields as such."), 95 ImplicitStableValues(boolean.class, true, "Mark well-known stable fields as such."),
95 // Note: The following one is not used (see InitTimer.ENABLED). 96 // Note: The following one is not used (see InitTimer.ENABLED).
96 InitTimer(boolean.class, false, "Specifies if initialization timing is enabled."), 97 InitTimer(boolean.class, false, "Specifies if initialization timing is enabled."),
97 PrintConfig(boolean.class, false, "Prints all HotSpotVMConfig fields."), 98 PrintConfig(boolean.class, false, "Prints all HotSpotVMConfig fields."),
98 PrintFlags(boolean.class, false, "Prints all JVMCI flags and exits."), 99 PrintFlags(boolean.class, false, "Prints all JVMCI flags and exits."),