Enum Class InstructionModel.ImmediateKind
java.lang.Object
java.lang.Enum<InstructionModel.ImmediateKind>
com.oracle.truffle.dsl.processor.bytecode.model.InstructionModel.ImmediateKind
- All Implemented Interfaces:
Serializable,Comparable<InstructionModel.ImmediateKind>,Constable
- Enclosing class:
InstructionModel
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionLocal index into the locals table.Relative local offset into the frame.Index into BytecodeRootNodes.nodes. -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptiontoType(ProcessorContext context) Returns the enum constant of this class with the specified name.static InstructionModel.ImmediateKind[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LOCAL_OFFSET
Relative local offset into the frame. Without boxing elimination or block scoping localOffset == localIndex. -
LOCAL_INDEX
Local index into the locals table. Without boxing elimination or block scoping localOffset == localIndex. -
LOCAL_ROOT
Index into BytecodeRootNodes.nodes. Necessary for boxing elimination. -
SHORT
-
BYTECODE_INDEX
-
STACK_POINTER
-
CONSTANT
-
NODE_PROFILE
-
TAG_NODE
-
BRANCH_PROFILE
-
-
Field Details
-
shortName
-
width
-
-
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
-
toType
-