Top


定義場所(file name)

hotspot/src/share/vm/interpreter/interpreterRuntime.cpp

名前(function name)

IRT_ENTRY(void, InterpreterRuntime::newarray(JavaThread* thread, BasicType type, jint size))

本体部(body)

  {- -------------------------------------------
  (1) oopFactory::new_typeArray() でメモリの確保を行う.
        (確保した結果は, JavaThread::set_vm_result() で JavaThread 内に格納してリターン)
      ---------------------------------------- -}

      oop obj = oopFactory::new_typeArray(type, size, CHECK);
      thread->set_vm_result(obj);
    IRT_END

This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.