Enum Class InstructionFlag
- All Implemented Interfaces:
Serializable,Comparable<InstructionFlag>,Constable
Created by covers1624 on 22/2/21.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionTheInstructionperforms unconditional control flow, so that its endpoint is unreachable.TheInstructionmay exit with a branch or leave.TheInstructionmay throw an exception. -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final @Nullable EnumBitSet<InstructionFlag> Absolute value specifying the current flags are invalid and must be re validated.static final EnumBitSet<InstructionFlag> No flags exist. -
Method Summary
Modifier and TypeMethodDescriptiontoSet()static InstructionFlagReturns the enum constant of this class with the specified name.static InstructionFlag[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
MAY_THROW
TheInstructionmay throw an exception. -
MAY_BRANCH
TheInstructionmay exit with a branch or leave. -
END_POINT_UNREACHABLE
TheInstructionperforms unconditional control flow, so that its endpoint is unreachable.If
END_POINT_UNREACHABLEis set, eitherMAY_THROWorMAY_BRANCHshould also be set (unless the instruction represents an infinite loop).
-
-
Field Details
-
INVALID_FLAGS
Absolute value specifying the current flags are invalid and must be re validated. -
NONE
No flags exist.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
toSet
-