i2b - Convert int to byte | ||||||||||
|
i2c - Convert int to char | ||||||||||
|
i2d - Convert int to double | ||||||||||
|
i2f - Convert int to float | ||||||||||
|
i2l - Convert int to long | ||||||||||
|
i2s - Convert int to short | ||||||||||
|
iadd - Add ints | ||||||||||
|
iaload - Load int from array | ||||||||||||
|
iand - Perform boolean AND on ints | ||||||||||
|
iastore - Store into int array | ||||||||||||
|
iconst_0 - Push int constant 0 | ||||||||||
|
iconst_1 - Push int constant 1 | ||||||||||
|
iconst_2 - Push int constant 2 | ||||||||||
|
iconst_3 - Push int constant 3 | ||||||||||
|
iconst_4 - Push int constant 4 | ||||||||||
|
iconst_5 - Push int constant 5 | ||||||||||
|
iconst_m1 - Push int constant -1 | ||||||||||
|
idiv - Divide ints | ||||||||||
|
ifeq - Goto if equal to 0 | ||||||||||
|
ifge - Goto if greater than or equal to 0 | ||||||||||
|
ifgt - Branch if greater than 0 | ||||||||||
|
ifle - Branch if less than or equal to 0 | ||||||||||
|
iflt - Branch if less than 0 | ||||||||||
|
ifne - Branch if not equal to 0 | ||||||||||
|
ifnonnull - Branch if not null | ||||||||||
|
ifnull - Branch if null | ||||||||||
|
if_acmpeq - Branch if object references are equal | ||||||||||
|
if_acmpne - Branch if object references not equal | ||||||||||
|
if_icmpeq - Branch if ints equal | ||||||||||
|
if_icmpge - Branch if int greater than or equal to other int | ||||||||||
|
if_icmpgt - Branch if int greater than other int | ||||||||||
|
if_icmple - Branch if int less than or equal to other int | ||||||||||
|
if_icmplt - Branch if int less than other int | ||||||||||
|
if_icmpne - Branch if ints not equal | ||||||||||
|
iinc - Increment int local variable by constant. | ||||||||||
|
iload - Load int from local variable | ||||||||||
|
iload_0 - Load int from local variable 0 | ||||||||||
|
iload_1 - Load int from local variable 1 | ||||||||||
|
iload_2 - Load int from local variable 2 | ||||||||||
|
iload_3 - Load int from local variable 3 | ||||||||||
|
imul - Multiply ints | ||||||||||
|
ineg - Negate int | ||||||||||
|
instanceof - Determine if an object is of given type | ||||||||||
|
invokeinterface - Invoke interface method | ||||||||||
|
invokenonvirtual - | ||||||||||
|
invokestatic - Invoke a class (static) method | ||||||||||
|
invokevirtual - Invoke instance method,dispatch based on an objectís class at run-time | ||||||||||
|
ior - Perform boolean OR on ints | ||||||||||
|
irem - Calculate remainder of division of ints | ||||||||||
|
ireturn - Return int from method | ||||||||||
|
ishl - Perform left shift on int | ||||||||||
|
ishr - Perform arithmetic right shift on int | ||||||||||
|
istore - Store int into local variable | ||||||||||
|
istore_0 - Store int into local variable 0 | ||||||||||
|
istore_1 - Store int into local variable 1 | ||||||||||
|
istore_2 - Store int into local variable 2 | ||||||||||
|
istore_3 - Store int into local variable 3 | ||||||||||
|
isub - Subtract ints | ||||||||||
|
iushr - Perform logical right shift on int | ||||||||||
|
ixor - Perform boolean XOR on ints | ||||||||||
|