1 /*
2  * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * This code is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License version 2 only, as
7  * published by the Free Software Foundation.
8  *
9  * This code is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12  * version 2 for more details (a copy is included in the LICENSE file that
13  * accompanied this code).
14  *
15  * You should have received a copy of the GNU General Public License version
16  * 2 along with this work; if not, write to the Free Software Foundation,
17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18  *
19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20  * or visit www.oracle.com if you need additional information or have any
21  * questions.
22  */
23 
24 
25 package org.graalvm.compiler.core;
26 
27 import org.graalvm.compiler.core.CompilationWrapper.ExceptionAction;
28 import org.graalvm.compiler.options.EnumOptionKey;
29 import org.graalvm.compiler.options.Option;
30 import org.graalvm.compiler.options.OptionKey;
31 import org.graalvm.compiler.options.OptionStability;
32 import org.graalvm.compiler.options.OptionType;
33 
34 /**
35  * Options related to {@link GraalCompiler}.
36  */
37 public class GraalCompilerOptions {
38 
39     // @formatter:off
40     @Option(help = "Print an informational line to the console for each completed compilation.", type = OptionType.Debug, stability = OptionStability.STABLE)
41     public static final OptionKey<Boolean> PrintCompilation = new OptionKey<>(false);
42     @Option(help = "Pattern for method(s) that will trigger an exception when compiled. " +
43                    "This option exists to test handling compilation crashes gracefully. " +
44                    "See the MethodFilter option for the pattern syntax. A ':Bailout' " +
45                    "suffix will raise a bailout exception and a ':PermanentBailout' " +
46                    "suffix will raise a permanent bailout exception.", type = OptionType.Debug)
47     public static final OptionKey<String> CrashAt = new OptionKey<>(null);
48     @Option(help = "Treat compilation bailouts like compilation failures.", type = OptionType.User, stability = OptionStability.STABLE)
49     public static final OptionKey<Boolean> CompilationBailoutAsFailure = new OptionKey<>(false);
50     @Option(help = "file:doc-files/CompilationFailureActionHelp.txt", type = OptionType.User, stability = OptionStability.STABLE)
51     public static final EnumOptionKey<ExceptionAction> CompilationFailureAction = new EnumOptionKey<>(ExceptionAction.Silent);
52     @Option(help = "The maximum number of compilation failures to handle with the action specified " +
53                    "by CompilationFailureAction before changing to a less verbose action. " +
54                    "This does not apply to the ExitVM action.", type = OptionType.User)
55     public static final OptionKey<Integer> MaxCompilationProblemsPerAction = new OptionKey<>(2);
56     @Option(help = "Alias for CompilationFailureAction=ExitVM.", type = OptionType.User)
57     public static final OptionKey<Boolean> ExitVMOnException = new OptionKey<>(false);
58     // @formatter:on
59 }
60