1 /*
   2  * Copyright (c) 2015, 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 = "file:doc-files/CompilationBailoutActionHelp.txt", type = OptionType.User)
  48     public static final EnumOptionKey<ExceptionAction> CompilationBailoutAction = new EnumOptionKey<>(ExceptionAction.Silent);
  49     @Option(help = "Specifies the action to take when compilation fails with a bailout exception. " +
  50                    "The accepted values are the same as for CompilationBailoutAction.", type = OptionType.User)
  51      public static final EnumOptionKey<ExceptionAction> CompilationFailureAction = new EnumOptionKey<>(ExceptionAction.Diagnose);
  52     @Option(help = "The maximum number of compilation failures or bailouts to handle with the action specified " +
  53                    "by CompilationFailureAction or CompilationBailoutAction 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 }