jdk.graal.compiler.lir.profiling.MoveProfilingPhase_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: MoveProfilingPhase.java
package jdk.graal.compiler.lir.profiling;
import java.util.*;
import jdk.graal.compiler.options.*;
import jdk.graal.compiler.options.OptionType;
import jdk.graal.compiler.options.OptionStability;
public class MoveProfilingPhase_OptionDescriptors implements OptionDescriptors {
@Override
public OptionDescriptor get(String value) {
switch (value) {
// CheckStyle: stop line length check
case "LIRDynMoveProfileMethod": {
return OptionDescriptor.create(
/*name*/ "LIRDynMoveProfileMethod",
/*optionType*/ OptionType.Debug,
/*optionValueType*/ Boolean.class,
/*help*/ "Enable dynamic move profiling per method.",
/*declaringClass*/ MoveProfilingPhase.Options.class,
/*fieldName*/ "LIRDynMoveProfileMethod",
/*option*/ MoveProfilingPhase.Options.LIRDynMoveProfileMethod,
/*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("LIRDynMoveProfileMethod");
}
throw new NoSuchElementException();
}
};
}
}