Interface LoadInstruction
- All Superinterfaces:
ClassFileElementPREVIEW
,CodeElementPREVIEW
,InstructionPREVIEW
LoadInstruction
is a preview API of the Java platform.
Preview features may be removed in a future release, or upgraded to permanent features of the Java platform.
Models a local variable load instruction in the
code
array of a
Code
attribute. Corresponding opcodes will have a kind
of
Opcode.Kind.LOAD
PREVIEW. Delivered as a CodeElement
PREVIEW when
traversing the elements of a CodeModel
PREVIEW.- Since:
- 22
-
Method Summary
Modifier and TypeMethodDescriptionstatic LoadInstructionPREVIEW
Returns a local variable load instruction.static LoadInstructionPREVIEW
Returns a local variable load instruction.int
slot()
Returns the local variable slot to load from.typeKind()
Returns the type of the value to be loaded.Methods declared in interface java.lang.classfile.InstructionPREVIEW
opcode, sizeInBytes
-
Method Details
-
slot
int slot()Returns the local variable slot to load from.- Returns:
- the local variable slot to load from
-
typeKind
-
of
Returns a local variable load instruction.- Parameters:
kind
- the type of the value to be loadedslot
- the local variable slot to load from- Returns:
- a local variable load instruction
-
of
Returns a local variable load instruction.- Parameters:
op
- the opcode for the specific type of load instruction, which must be of kindOpcode.Kind.LOAD
PREVIEWslot
- the local variable slot to load from- Returns:
- a local variable load instruction
-
LoadInstruction
when preview features are enabled.