lload_<n>

Operation
Load long from local variable

lload_<n>

Forms
lload_0 = 30 (0x1e) lload_1 = 31 (0x1f) lload_2 = 32 (0x20) lload_3 = 33 (0x21)

Stack
... ..., value.word1, value.word2

Description
Both <n> and <n> + 1 must be valid indices into the local variables of the current frame (§3.6). The local variables at <n> and <n> + 1 together must contain a long. The value of the local variables at <n> and <n> + 1 is pushed onto the operand stack.

Notes
Each of the lload_<n> instructions is the same as lload with an index of <n>, except that the operand <n> is implicit.