if_icmpgt : jump if one integer is greater than another : index : visitJumpInsn()
iload_1 ; push the integer value of local variable 1 onto the stack bipush 2 ; push the integer 2 onto the stack if_icmpgt Label ; if the value of local variable 1 is greater than 2, jump to Label return ; return if local variable 1 <= 2 Label: ; execution continues here if local variable 1 is geater than 2...
Before | After |
value1 | ... |
value2 | ... |
... |
Type | Description |
u1 | if_icmpgt opcode = 0xA3 (163) |
s2 | branchoffset |