==== 7.5.49 iload_ ==== Load int from local variable Format iload_ Forms iload_0 = 32 (0x20) iload_1 = 33 (0x21) iload_2 = 34 (0x22) iload_3 = 35 (0x23) Stack ... -> ..., value1.word1, value1.word2 Description Both and + 1 must be a valid indices into the local variables of the current frame ([[3.5_Frames| Section 3.5, Frames]]). The local variables at and + 1 together must contain an int. The value of the local variables at and + 1 is pushed onto the operand stack. Notes Each of the iload_ instructions is the same as iload with an index of , except that the operand is implicit. If a virtual machine does not support the int data type, the iload_ instruction will not be available.