< prev index next >

src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/debug/BenchmarkCounters.java

Print this page
rev 52509 : [mq]: graal

*** 73,83 **** * See <a href="BenchmarkDynamicCountersHelp.txt">here</a> for a detailed example of how to use * benchmark counters. */ public class BenchmarkCounters { ! static class Options { //@formatter:off @Option(help = "Turn on the benchmark counters, and displays the results on VM shutdown", type = OptionType.Debug) public static final OptionKey<Boolean> GenericDynamicCounters = new OptionKey<>(false); @Option(help = "Turn on the benchmark counters, and displays the results every n milliseconds", type = OptionType.Debug) --- 73,83 ---- * See <a href="BenchmarkDynamicCountersHelp.txt">here</a> for a detailed example of how to use * benchmark counters. */ public class BenchmarkCounters { ! public static class Options { //@formatter:off @Option(help = "Turn on the benchmark counters, and displays the results on VM shutdown", type = OptionType.Debug) public static final OptionKey<Boolean> GenericDynamicCounters = new OptionKey<>(false); @Option(help = "Turn on the benchmark counters, and displays the results every n milliseconds", type = OptionType.Debug)
*** 93,102 **** --- 93,104 ---- public static final OptionKey<String> BenchmarkCountersFile = new OptionKey<>(null); @Option(help = "Dump dynamic counters", type = OptionType.Debug) public static final OptionKey<Boolean> BenchmarkCountersDumpDynamic = new OptionKey<>(true); @Option(help = "Dump static counters", type = OptionType.Debug) public static final OptionKey<Boolean> BenchmarkCountersDumpStatic = new OptionKey<>(false); + @Option(help = "file:doc-files/AbortOnBenchmarkCounterOverflowHelp.txt", type = OptionType.Debug) + public static final OptionKey<Boolean> AbortOnBenchmarkCounterOverflow = new OptionKey<>(false); //@formatter:on } public static boolean enabled = false;
< prev index next >