ClassFileElement, CodeElement, Instructionpublic sealed interface LoadInstruction extends Instruction
code array of a Code attribute. Corresponding opcodes have a kind of Opcode.Kind.LOAD. Delivered as a CodeElement when traversing the elements of a CodeModel. A local variable load instruction is composite:
LoadInstruction(
TypeKind typeKind,
int slot
)
TypeKind is computational, and slot is within [0, 65535].| Modifier and Type | Method | Description |
|---|---|---|
static LoadInstruction |
of |
Returns a local variable load instruction. |
static LoadInstruction |
of |
Returns a local variable load instruction. |
int |
slot() |
Returns the local variable slot to load from. |
TypeKind |
typeKind() |
Returns the computational type of the value to be loaded. |
opcode, sizeInBytes
int slot()
[0, 65535].TypeKind typeKind()
static LoadInstruction of(TypeKind kind, int slot)
kind is converted to its computational type. slot must be within [0, 65535].kind - the type of the value to be loadedslot - the local variable slot to load fromIllegalArgumentException - if kind is void or slot is out of rangestatic LoadInstruction of(Opcode op, int slot)
The range of slot is restricted by the op and its size:
op has size 1, slot must be exactly the slot value implied by the opcode. op has size 2, slot must be within [0, 255]. op has size 4, slot must be within [0, 65535]. op argument allows creating wide or regular load instructions when the slot can be encoded with more optimized load instructions.op - the opcode for the specific type of load instruction, which must be of kind Opcode.Kind.LOAD
slot - the local variable slot to load fromIllegalArgumentException - if the opcode kind is not Opcode.Kind.LOAD or slot is out of range
© 1993, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/25/docs/api/java.base/java/lang/classfile/instruction/LoadInstruction.html