JVM provides several instructions to perform comparisons and logical predicates. These instructions are used for conditional branching and decision-making within Java bytecode.
1.1 Comparison Instructions
Integer Comparison with ZERO:
ifeq: Branch if int is equal to zero
Example: ifeq Label
Before: [... 0]
After: [...] (branch taken if top of stack is 0)
ifne: Branch if int is not equal to zero
Example: ifne Label
Before: [... x]
After: [...] (branch taken if x is not 0)
iflt: Branch if int is less than zero
Example: iflt Label
Before: [... x]
After: [...] (branch taken if x < 0)
ifge: Branch if int is greater than or equal to zero
Example: ifge Label
Before: [... x]
After: [...] (branch taken if x >= 0)
ifgt: Branch if int is greater than zero
Example: ifgt Label
Before: [... x]
After: [...] (branch taken if x > 0)
ifle: Branch if int is less than or equal to zero
Example: ifle Label
Before: [... x]
After: [...] (branch taken if x <= 0)
Integer Comparison with Two Operands:
if_icmpeq: Branch if two ints are equal
Example: if_icmpeq Label
Before: [... x, y]
After: [...] (branch taken if x == y)
if_icmpne: Branch if two ints are not equal
Example: if_icmpne Label
Before: [... x, y]
After: [...] (branch taken if x != y)
if_icmplt: Branch if one int is less than another
Example: if_icmplt Label
Before: [... x, y]
After: [...] (branch taken if x < y)
if_icmpge: Branch if one int is greater than or equal to another
Example: if_icmpge Label
Before: [... x, y]
After: [...] (branch taken if x >= y)
if_icmpgt: Branch if one int is greater than another
Example: if_icmpgt Label
Before: [... x, y]
After: [...] (branch taken if x > y)
if_icmple: Branch if one int is less than or equal to another
Example: if_icmple Label
Before: [... x, y]
After: [...] (branch taken if x <= y)
1.2 Logical Predicate Instructions
Bitwise Logical Operations:
iand: Perform bitwise AND on integers
Example: iand
Before: [... x, y]
After: [... (x & y)]
ior: Perform bitwise OR on integers
Example: ior
Before: [... x, y]
After: [... (x | y)]
ixor: Perform bitwise XOR on integers
Example: ixor
Before: [... x, y]
After: [... (x ^ y)]
These instructions are primarily used for branching in control structures such as loops and conditional statements.
1.3 Example
Let’s compute the sum of the first 1000 integers: 0 + 1 + 2 + … + 999
Here is the pseudo-code we are implementing:
int sum =0;// $1int i =0;// $2while(i <1000){ sum +=1; i +=1;}
%%jvm stack=10locals=10iconst_0istore_1 ;;sum=0iconst_0istore_2 ;; i =0LOOP: ;; WHILEiload_2ldc 1000if_icmpeq END ;;if i ==1000: breakiload_2iload_1iaddistore_1 ;;sum= i +sumiinc 21;; i +=1goto LOOP ;; END WHILEEND:getstatic java/lang/System/out Ljava/io/PrintStream;iload_1invokevirtual java/io/PrintStream/println(I)V