comparison jvmci/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/HotSpotJVMCIRuntime.java @ 23384:f102ee538647

Remove stable constant handling from ConstantReflectionProvider (JDK-8156552).
author Roland Schatz <roland.schatz@oracle.com>
date Tue, 10 May 2016 14:55:40 +0200
parents 0226d6bcb0d2
children a920338dd4d4
comparison
equal deleted inserted replaced
23383:0226d6bcb0d2 23384:f102ee538647
99 // Note: The following one is not used (see InitTimer.ENABLED). 99 // Note: The following one is not used (see InitTimer.ENABLED).
100 InitTimer(boolean.class, false, "Specifies if initialization timing is enabled."), 100 InitTimer(boolean.class, false, "Specifies if initialization timing is enabled."),
101 PrintConfig(boolean.class, false, "Prints all HotSpotVMConfig fields."), 101 PrintConfig(boolean.class, false, "Prints all HotSpotVMConfig fields."),
102 PrintFlags(boolean.class, false, "Prints all JVMCI flags and exits."), 102 PrintFlags(boolean.class, false, "Prints all JVMCI flags and exits."),
103 ShowFlags(boolean.class, false, "Prints all JVMCI flags and continues."), 103 ShowFlags(boolean.class, false, "Prints all JVMCI flags and continues."),
104 TraceMethodDataFilter(String.class, null, ""), 104 TraceMethodDataFilter(String.class, null, "");
105 TrustFinalDefaultFields(boolean.class, true, "Determines whether to treat final fields with default values as constant.");
106 105
107 /** 106 /**
108 * The prefix for system properties that are JVMCI options. 107 * The prefix for system properties that are JVMCI options.
109 */ 108 */
110 private static final String JVMCI_OPTION_PROPERTY_PREFIX = "jvmci."; 109 private static final String JVMCI_OPTION_PROPERTY_PREFIX = "jvmci.";