comparison jvmci/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/HotSpotJVMCIRuntime.java @ 23391:dd9f3badc978

Remove implicit stable field handling (JDK-8156552).
author Roland Schatz <roland.schatz@oracle.com>
date Thu, 12 May 2016 14:24:15 +0200
parents a920338dd4d4
children b3a816d3b844
comparison
equal deleted inserted replaced
23390:19855d029fc0 23391:dd9f3badc978
92 /** 92 /**
93 * A list of all supported JVMCI options. 93 * A list of all supported JVMCI options.
94 */ 94 */
95 public enum Option { 95 public enum Option {
96 Compiler(String.class, null, "Selects the system compiler."), 96 Compiler(String.class, null, "Selects the system compiler."),
97 ImplicitStableValues(boolean.class, true, "Mark well-known stable fields as such."),
98 // Note: The following one is not used (see InitTimer.ENABLED). 97 // Note: The following one is not used (see InitTimer.ENABLED).
99 InitTimer(boolean.class, false, "Specifies if initialization timing is enabled."), 98 InitTimer(boolean.class, false, "Specifies if initialization timing is enabled."),
100 PrintConfig(boolean.class, false, "Prints all HotSpotVMConfig fields."), 99 PrintConfig(boolean.class, false, "Prints all HotSpotVMConfig fields."),
101 PrintFlags(boolean.class, false, "Prints all JVMCI flags and exits."), 100 PrintFlags(boolean.class, false, "Prints all JVMCI flags and exits."),
102 ShowFlags(boolean.class, false, "Prints all JVMCI flags and continues."), 101 ShowFlags(boolean.class, false, "Prints all JVMCI flags and continues."),