hotspot/src/share/vm/oops/methodOop.cpp
bool methodOopDesc::has_native_function() const {
{- -------------------------------------------
(1) native_function フィールドに入っている値が NULL, もしくは
native_method_throw_unsatisfied_link_error_entry() のアドレスである場合は, false をリターン.
それ以外の値が入っていれば, true をリターン.
---------------------------------------- -}
address func = native_function();
return (func != NULL && func != SharedRuntime::native_method_throw_unsatisfied_link_error_entry());
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.