hotspot/src/cpu/x86/vm/nativeInst_x86.hpp
inline NativeInstruction* nativeInstruction_at(address address) {
{- -------------------------------------------
(1) address 引数の値をそのままリターンするだけ.
---------------------------------------- -}
NativeInstruction* inst = (NativeInstruction*)address;
#ifdef ASSERT
//inst->verify();
#endif
return inst;
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.