< prev index next >

src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/GraalCompilerOptions.java

Print this page

        

*** 45,54 **** @Option(help = "Specifies the action to take when compilation fails with a bailout exception. " + "The accepted values are the same as for CompilationBailoutAction.", type = OptionType.User) public static final EnumOptionKey<ExceptionAction> CompilationFailureAction = new EnumOptionKey<>(ExceptionAction.Diagnose); @Option(help = "The maximum number of compilation failures or bailouts to handle with the action specified " + "by CompilationFailureAction or CompilationBailoutAction before changing to a less verbose action.", type = OptionType.User) ! public static final OptionKey<Integer> MaxCompilationProblemsPerAction = new OptionKey<>(5); @Option(help = "Alias for CompilationFailureAction=ExitVM.", type = OptionType.User) public static final OptionKey<Boolean> ExitVMOnException = new OptionKey<>(false); // @formatter:on } --- 45,54 ---- @Option(help = "Specifies the action to take when compilation fails with a bailout exception. " + "The accepted values are the same as for CompilationBailoutAction.", type = OptionType.User) public static final EnumOptionKey<ExceptionAction> CompilationFailureAction = new EnumOptionKey<>(ExceptionAction.Diagnose); @Option(help = "The maximum number of compilation failures or bailouts to handle with the action specified " + "by CompilationFailureAction or CompilationBailoutAction before changing to a less verbose action.", type = OptionType.User) ! public static final OptionKey<Integer> MaxCompilationProblemsPerAction = new OptionKey<>(2); @Option(help = "Alias for CompilationFailureAction=ExitVM.", type = OptionType.User) public static final OptionKey<Boolean> ExitVMOnException = new OptionKey<>(false); // @formatter:on }
< prev index next >