All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.oracle.svm.truffle.TruffleFeature_OptionDescriptors Maven / Gradle / Ivy
// CheckStyle: stop header check
// CheckStyle: stop line length check
// GENERATED CONTENT - DO NOT EDIT
// Source: TruffleFeature.java
package com.oracle.svm.truffle;
import java.util.*;
import jdk.graal.compiler.options.*;
import jdk.graal.compiler.options.OptionType;
import jdk.graal.compiler.options.OptionStability;
public class TruffleFeature_OptionDescriptors implements OptionDescriptors {
@Override
public OptionDescriptor get(String value) {
switch (value) {
// CheckStyle: stop line length check
case "PrintStaticTruffleBoundaries": {
return OptionDescriptor.create(
/*name*/ "PrintStaticTruffleBoundaries",
/*optionType*/ OptionType.Debug,
/*optionValueType*/ Boolean.class,
/*help*/ "Print truffle boundaries found during the analysis",
/*declaringClass*/ TruffleFeature.Options.class,
/*fieldName*/ "PrintStaticTruffleBoundaries",
/*option*/ TruffleFeature.Options.PrintStaticTruffleBoundaries,
/*stability*/ OptionStability.EXPERIMENTAL,
/*deprecated*/ false,
/*deprecationMessage*/ "");
}
case "TruffleCheckBlackListedMethods": {
return OptionDescriptor.create(
/*name*/ "TruffleCheckBlackListedMethods",
/*optionType*/ OptionType.Debug,
/*optionValueType*/ Boolean.class,
/*help*/ "Fail if a method known as not suitable for partial evaluation is reachable for runtime compilation",
/*declaringClass*/ TruffleFeature.Options.class,
/*fieldName*/ "TruffleCheckBlackListedMethods",
/*option*/ TruffleFeature.Options.TruffleCheckBlackListedMethods,
/*stability*/ OptionStability.EXPERIMENTAL,
/*deprecated*/ true,
/*deprecationMessage*/ "");
}
case "TruffleCheckBlockListMethods": {
return OptionDescriptor.create(
/*name*/ "TruffleCheckBlockListMethods",
/*optionType*/ OptionType.Debug,
/*optionValueType*/ Boolean.class,
/*help*/ "Fail if a method known as not suitable for partial evaluation is reachable for runtime compilation",
/*declaringClass*/ TruffleFeature.Options.class,
/*fieldName*/ "TruffleCheckBlockListMethods",
/*option*/ TruffleFeature.Options.TruffleCheckBlockListMethods,
/*stability*/ OptionStability.EXPERIMENTAL,
/*deprecated*/ false,
/*deprecationMessage*/ "");
}
case "TruffleCheckFrameImplementation": {
return OptionDescriptor.create(
/*name*/ "TruffleCheckFrameImplementation",
/*optionType*/ OptionType.Debug,
/*optionValueType*/ Boolean.class,
/*help*/ "Enforce that the Truffle runtime provides the only implementation of Frame",
/*declaringClass*/ TruffleFeature.Options.class,
/*fieldName*/ "TruffleCheckFrameImplementation",
/*option*/ TruffleFeature.Options.TruffleCheckFrameImplementation,
/*stability*/ OptionStability.EXPERIMENTAL,
/*deprecated*/ false,
/*deprecationMessage*/ "");
}
case "TruffleCheckNeverPartOfCompilation": {
return OptionDescriptor.create(
/*name*/ "TruffleCheckNeverPartOfCompilation",
/*optionType*/ OptionType.Debug,
/*optionValueType*/ Boolean.class,
/*help*/ "Check that CompilerAsserts.neverPartOfCompilation is not reachable for runtime compilation",
/*declaringClass*/ TruffleFeature.Options.class,
/*fieldName*/ "TruffleCheckNeverPartOfCompilation",
/*option*/ TruffleFeature.Options.TruffleCheckNeverPartOfCompilation,
/*stability*/ OptionStability.EXPERIMENTAL,
/*deprecated*/ false,
/*deprecationMessage*/ "");
}
case "TruffleInlineDuringParsing": {
return OptionDescriptor.create(
/*name*/ "TruffleInlineDuringParsing",
/*optionType*/ OptionType.Debug,
/*optionValueType*/ Boolean.class,
/*help*/ "No longer has any effect",
/*declaringClass*/ TruffleFeature.Options.class,
/*fieldName*/ "TruffleInlineDuringParsing",
/*option*/ TruffleFeature.Options.TruffleInlineDuringParsing,
/*stability*/ OptionStability.EXPERIMENTAL,
/*deprecated*/ true,
/*deprecationMessage*/ "");
}
// CheckStyle: resume line length check
}
return null;
}
@Override
public Iterator iterator() {
return new Iterator<>() {
int i = 0;
@Override
public boolean hasNext() {
return i < 6;
}
@Override
public OptionDescriptor next() {
switch (i++) {
case 0: return get("PrintStaticTruffleBoundaries");
case 1: return get("TruffleCheckBlackListedMethods");
case 2: return get("TruffleCheckBlockListMethods");
case 3: return get("TruffleCheckFrameImplementation");
case 4: return get("TruffleCheckNeverPartOfCompilation");
case 5: return get("TruffleInlineDuringParsing");
}
throw new NoSuchElementException();
}
};
}
}