hotspot/src/share/vm/interpreter/interpreterRuntime.cpp
IRT_ENTRY(void, InterpreterRuntime::newarray(JavaThread* thread, BasicType type, jint size))
{- -------------------------------------------
(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.