hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core/src/org/graalvm/compiler/core/GraalCompilerOptions.java
changeset 46371 0337d0617e7b
parent 46344 694c102fd8ed
child 46680 2894e4262fd6
equal deleted inserted replaced
46366:b9a1aa504eb5 46371:0337d0617e7b
    44     public static final OptionKey<Boolean> ExitVMOnBailout = new OptionKey<>(false);
    44     public static final OptionKey<Boolean> ExitVMOnBailout = new OptionKey<>(false);
    45     @Option(help = "", type = OptionType.Debug)
    45     @Option(help = "", type = OptionType.Debug)
    46     public static final OptionKey<Boolean> ExitVMOnException = new OptionKey<>(false);
    46     public static final OptionKey<Boolean> ExitVMOnException = new OptionKey<>(false);
    47     @Option(help = "", type = OptionType.Debug)
    47     @Option(help = "", type = OptionType.Debug)
    48     public static final OptionKey<Boolean> PrintStackTraceOnException = new OptionKey<>(false);
    48     public static final OptionKey<Boolean> PrintStackTraceOnException = new OptionKey<>(false);
       
    49     @Option(help = "Pattern (see MethodFilter for format) for method that will trigger an exception when compiled. " +
       
    50                    "This option exists to test handling compilation crashes gracefully.", type = OptionType.Debug)
       
    51     public static final OptionKey<String> CrashAt = new OptionKey<>(null);
    49     // @formatter:on
    52     // @formatter:on
    50 
       
    51 }
    53 }