Top


定義場所(file name)

hotspot/src/cpu/x86/vm/nativeInst_x86.hpp

名前(function name)

inline NativeInstruction* nativeInstruction_at(address address) {

本体部(body)

  {- -------------------------------------------
  (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.