27 Ağustos 2023 Pazar

Byte-code/Bytecode - Integer Instructions

Giriş
iX Talimatları Integer ile çalışıldığını gösterir

Operand stack
Matematiksel işlemler ve metod çağrılarında kullanılır

Örnek
Elimizde şöyle bir kod olsun
int a = 1;
a++;
int b = a * a;
int c = b - a;
System.out.println(c);
Bytecode çıktısı şöyle
0: iconst_1
1: istore_1
2: iinc          1, 1
5: iload_1
6: iload_1
7: imul
8: istore_2
9: iload_2
10: iload_1
11: isub
12: istore_3
13: getstatic     #2                  // Field java/lang/System.out:Ljava/io/PrintStream;
16: iload_3
17: invokevirtual #3                  // Method java/io/PrintStream.println:(I)V
20: return


iconst_X Instruction
Açıklaması şöyle
... the instruction iconst_1 is used to load a constant integer value of 1 onto the operand stack.
Örnek
iconst_1
Şu koda denk gelir
int a = 1;
iinc_X Instruction
Açıklaması şöyle
iinc instructs to increment an integer value. 
Örnek
iinc 1, 1
Şu koda denk gelir
a++;
Açıklaması şöyle
 The values 1, 1 specify the index of the variable to be incremented and the value by which it should be incremented, respectively.
iload_X Instruction - load an int value from a local variable #index
Bu instruction integer içindir. Farklı tipler için floaddload gibi instrunction'lar da var.

Toplama gibi bir işlem yapmak için değişkendeki değerin stack'a yazılması gerekir. iload_X bu işi yapar. Daha sonra iadd ile toplama yapılır. Ve istore_X ile sonuç değişkene yazılır. Şu kodda bu işlemleri görebiliriz
int a = ...;
int b = ...;
int c = a + b;
//Toplama işlemi şöyledir
iload_1
iload_2
iadd
istore_3
imul Instruction
Çarpma yapar

ireturn Instruction
Elimizde şöyle bir kod olsun
public static int sum(final int a, final int b) {
  return a + b;
}
Şu işlemleri görebiliriz
iload_0
iload_1
iadd
ireturn
isub Instruction
Çıkartma yapar. Açıklaması şöyle
This operation takes two integer values from the operand stack. It subtracts the integer value loaded last from the integer value loaded first. The resulting integer is loaded onto the operand stack.

istore_X Instruction
Açıklaması şöyle
Instructs to store the integer value that is currently at the top of the operand stack as a variable. It removes the top integer value from the operand stack and saves it in the local variable array at specified index
Örnek
istore_1
Şu koda denk gelir
a++;

Hiç yorum yok:

Yorum Gönder