jdk.graal.compiler.phases.common.CanonicalizerPhase_OptionDescriptors Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compiler Show documentation
Show all versions of compiler Show documentation
The GraalVM compiler and the Graal-truffle optimizer.
// CheckStyle: stop header check
// CheckStyle: stop line length check
// GENERATED CONTENT - DO NOT EDIT
// Source: CanonicalizerPhase.java
package jdk.graal.compiler.phases.common;
import java.util.*;
import jdk.graal.compiler.options.*;
import jdk.graal.compiler.options.OptionType;
import jdk.graal.compiler.options.OptionStability;
public class CanonicalizerPhase_OptionDescriptors implements OptionDescriptors {
@Override
public OptionDescriptor get(String value) {
switch (value) {
// CheckStyle: stop line length check
case "CanonicalizerVerifyGVNAllowed": {
return OptionDescriptor.create(
/*name*/ "CanonicalizerVerifyGVNAllowed",
/*optionType*/ OptionType.Debug,
/*optionValueType*/ Boolean.class,
/*help*/ "Verify if the current graph state allows GVN to be performed.",
/*declaringClass*/ CanonicalizerPhase.Options.class,
/*fieldName*/ "CanonicalizerVerifyGVNAllowed",
/*option*/ CanonicalizerPhase.Options.CanonicalizerVerifyGVNAllowed,
/*stability*/ OptionStability.EXPERIMENTAL,
/*deprecated*/ false,
/*deprecationMessage*/ "");
}
// CheckStyle: resume line length check
}
return null;
}
@Override
public Iterator iterator() {
return new Iterator<>() {
int i = 0;
@Override
public boolean hasNext() {
return i < 1;
}
@Override
public OptionDescriptor next() {
switch (i++) {
case 0: return get("CanonicalizerVerifyGVNAllowed");
}
throw new NoSuchElementException();
}
};
}
}