src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/stubs/StubOptions.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/stubs/StubOptions.java

src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/stubs/StubOptions.java

Print this page

        

*** 22,32 **** */ package org.graalvm.compiler.hotspot.stubs; import org.graalvm.compiler.options.Option; import org.graalvm.compiler.options.OptionType; ! import org.graalvm.compiler.options.OptionValue; //JaCoCo Exclude /** * Options related to HotSpot Graal-generated stubs. --- 22,32 ---- */ package org.graalvm.compiler.hotspot.stubs; import org.graalvm.compiler.options.Option; import org.graalvm.compiler.options.OptionType; ! import org.graalvm.compiler.options.OptionKey; //JaCoCo Exclude /** * Options related to HotSpot Graal-generated stubs.
*** 35,54 **** * <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=477597">Eclipse bug 477597</a>. */ public class StubOptions { // @formatter:off @Option(help = "Trace execution of stub used to handle an exception thrown by a callee.", type = OptionType.Debug) ! static final OptionValue<Boolean> TraceExceptionHandlerStub = new OptionValue<>(false); @Option(help = "Trace execution of the stub that routes an exception to a handler in the calling frame.", type = OptionType.Debug) ! static final OptionValue<Boolean> TraceUnwindStub = new OptionValue<>(false); @Option(help = "Trace execution of slow path stub for array allocation.", type = OptionType.Debug) ! static final OptionValue<Boolean> TraceNewArrayStub = new OptionValue<>(false); @Option(help = "Trace execution of slow path stub for non-array object allocation.", type = OptionType.Debug) ! static final OptionValue<Boolean> TraceNewInstanceStub = new OptionValue<>(false); @Option(help = "Force non-array object allocation to always use the slow path.", type = OptionType.Debug) ! static final OptionValue<Boolean> ForceUseOfNewInstanceStub = new OptionValue<>(false); //@formatter:on } --- 35,54 ---- * <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=477597">Eclipse bug 477597</a>. */ public class StubOptions { // @formatter:off @Option(help = "Trace execution of stub used to handle an exception thrown by a callee.", type = OptionType.Debug) ! static final OptionKey<Boolean> TraceExceptionHandlerStub = new OptionKey<>(false); @Option(help = "Trace execution of the stub that routes an exception to a handler in the calling frame.", type = OptionType.Debug) ! static final OptionKey<Boolean> TraceUnwindStub = new OptionKey<>(false); @Option(help = "Trace execution of slow path stub for array allocation.", type = OptionType.Debug) ! static final OptionKey<Boolean> TraceNewArrayStub = new OptionKey<>(false); @Option(help = "Trace execution of slow path stub for non-array object allocation.", type = OptionType.Debug) ! static final OptionKey<Boolean> TraceNewInstanceStub = new OptionKey<>(false); @Option(help = "Force non-array object allocation to always use the slow path.", type = OptionType.Debug) ! static final OptionKey<Boolean> ForceUseOfNewInstanceStub = new OptionKey<>(false); //@formatter:on }
src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/stubs/StubOptions.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File