私はJavaで非常にばかげたテストクラスを書きました:
public class Vector3 {
public double x,y,z ;
public Vector3(double x, double y, double z) {
this.x=x ; this.y=y ; this.z=z ;
}
public Vector3 subst(Vector3 v) {
return new Vector3(x-v.x,y-v.y,z-v.z) ;
}
}
次に、Java Hotspot JIT (クライアント VM ビルド 23.7-b01) によって生成されたコードを見たいと思いました。「-XX:+PrintAssembly」オプションとhttp://classparser.blogspot.dk/2010/03/hsdis-i386dll.htmlの hsdis-i386.dll を使用しました
生成されたコードの興味深い部分を次に示します (新しいオブジェクトの初期化をスキップしました。編集: subst メソッドのコード)。明らかに、ebx は「this」ポインターであり、edx は引数へのポインターです。
lds edi,(bad)
sti
adc BYTE PTR [ebx+8],al ;*getfield x
mov edx,DWORD PTR [esp+56]
lds edi,(bad) ; implicit exception: dispatches to 0x02611f2d
sti
adc BYTE PTR [edx+8],cl ;*getfield x
lds edi,(bad)
sti
adc BYTE PTR [ebx+16],dl ;*getfield y
lds edi,(bad)
sti
adc BYTE PTR [edx+16],bl ;*getfield y
lds edi,(bad)
sti
adc BYTE PTR [ebx+24],ah ;*getfield z
lds edi,(bad)
sti
adc BYTE PTR [edx+24],ch ;*getfield z
lds edi,(bad)
sti
pop esp
rol ebp,0xfb
adc DWORD PTR [eax+8],eax ;*putfield x
lds ebp,(bad)
jmp 0x02611f66
rol ebp,cl
sti
adc DWORD PTR [eax+16],edx ;*putfield y
lds ebx,(bad)
fistp DWORD PTR [ebp-59]
sti
adc DWORD PTR [eax+24],esp ;*putfield z
正直なところ、私は x86 アセンブリにあまり詳しくありませんが、そのコードは理解できますか? 「adc BYTE PTR [edx+8],cl」のような奇妙な命令は何をしているのですか? 私はいくつかのFPU命令を期待していたでしょう。