1 /*
   2  * Copyright (c) 2015, 2018, 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.OptionType;
  32 
  33 /**
  34  * Options related to {@link GraalCompiler}.
  35  */
  36 public class GraalCompilerOptions {
  37 
  38     // @formatter:off
  39     @Option(help = "Print an informational line to the console for each completed compilation.", type = OptionType.Debug)
  40     public static final OptionKey<Boolean> PrintCompilation = new OptionKey<>(false);
  41     @Option(help = "Pattern for method(s) that will trigger an exception when compiled. " +
  42                    "This option exists to test handling compilation crashes gracefully. " +
  43                    "See the MethodFilter option for the pattern syntax. A ':Bailout' " +
  44                    "suffix will raise a bailout exception and a ':PermanentBailout' " +
  45                    "suffix will raise a permanent bailout exception.", type = OptionType.Debug)
  46     public static final OptionKey<String> CrashAt = new OptionKey<>(null);
  47     @Option(help = "Treat compilation bailouts like compilation failures.", type = OptionType.User)
  48     public static final OptionKey<Boolean> CompilationBailoutAsFailure = new OptionKey<>(false);
  49     @Option(help = "file:doc-files/CompilationFailureActionHelp.txt", type = OptionType.User)
  50     public static final EnumOptionKey<ExceptionAction> CompilationFailureAction = new EnumOptionKey<>(ExceptionAction.Silent);
  51     @Option(help = "The maximum number of compilation failures to handle with the action specified " +
  52                    "by CompilationFailureAction before changing to a less verbose action. " +
  53                    "This does not apply to the ExitVM action.", type = OptionType.User)
  54     public static final OptionKey<Integer> MaxCompilationProblemsPerAction = new OptionKey<>(2);
  55     @Option(help = "Alias for CompilationFailureAction=ExitVM.", type = OptionType.User)
  56     public static final OptionKey<Boolean> ExitVMOnException = new OptionKey<>(false);
  57     // @formatter:on
  58 }