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