iload = 21 |
vindex |
Stack: ... => ..., valueThe
value
of the local variable at vindex in the current Java frame is pushed onto the operand stack.
iload_<n> |
Stack: ... => ..., valueForms:
iload_0
= 26, iload_1
= 27, iload_2
= 28, iload_3
= 29
The value
of the local variable at <n> in the current Java frame is pushed onto the operand stack.
This instruction is the same as iload
with a vindex of <n>, except that the operand <n> is implicit.
lload = 22 |
vindex |
Stack: ... => ..., valueThe-word1
, value-word2
value
of the local variables at vindex and vindex+1 in the current Java frame is pushed onto the operand stack.
lload_<n> |
Stack: ... => ..., valueForms:-word1
, value-word2
lload_0
= 30, lload_1
= 31, lload_2
= 32, lload_3
= 33
The value
of the local variables at <n> and <n>+1 in the current Java frame is pushed onto the operand stack.
This instruction is the same as lload
with a vindex of <n>, except that the operand <n> is implicit.
fload = 23 |
vindex |
Stack: ... => ..., valueThe value of the local variable at vindex in the current Java frame is pushed onto the operand stack.
fload_<n> |
Stack: ... => ..., valueForms:
fload_0
= 34, fload_1
= 35, fload_2
= 36, fload_3
= 37The value of the local variable at <n>in the current Java frame is pushed onto the operand stack.
This instruction is the same as fload
with a vindex of <n>, except that the operand <n> is implicit.
dload = 24 |
vindex |
Stack: ... => ..., valueThe-word1
, value-word2
value
of the local variables at vindex and vindex+1 in the current Java frame is pushed onto the operand stack.
dload_<n> |
Stack: ... => ..., valueForms:-word1
, value-word2
dload_0
= 38, dload_1
= 39, dload_2
= 40, dload_3
= 41
The value
of the local variables at <n> and <n>+1 in the current Java frame is pushed onto the operand stack.
This instruction is the same as dload
with a vindex of <n>, except that the operand <n> is implicit.
aload = 25 |
vindex |
Stack: ... => ..., valueThe value of the local variable at vindex in the current Java frame is pushed onto the operand stack.
aload_<n> |
Stack: ... => ..., valueForms:
aload_0
= 42, aload_1
= 43, aload_2
= 44, aload_3
= 45The value of the local variable at <n>in the current Java frame is pushed onto the operand stack.
This instruction is the same as aload
with a vindex of <n>, except that the operand <n> is implicit.