hotspot/src/share/vm/prims/jvmtiThreadState.cpp
void JvmtiThreadState::enter_interp_only_mode() {
{- -------------------------------------------
(1) (assert)
---------------------------------------- -}
assert(_thread->get_interp_only_mode() == 0, "entering interp only when mode not zero");
{- -------------------------------------------
(1) コンストラクタ引数で指定された JavaThread の _interp_only_mode フィールドの値をインクリメントするだけ.
---------------------------------------- -}
_thread->increment_interp_only_mode();
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.