hotspot/src/cpu/x86/vm/nativeInst_x86.hpp
inline NativeJump* nativeJump_at(address address) {
{- -------------------------------------------
(1) address 引数の値をそのままリターンするだけ.
(正確には NativeJump::instruction_offset を引いているが, これは 0 なので実質何もしていない.
というか, オペコード(instruction)が先頭にあるのはほぼ自明なので,
引く意味はあまりない気もするが...(まぁ一応 prefix があるけど...) #TODO)
---------------------------------------- -}
NativeJump* jump = (NativeJump*)(address - NativeJump::instruction_offset);
#ifdef ASSERT
jump->verify();
#endif
return jump;
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.