hotspot/src/share/vm/oops/methodOop.cpp
void methodOopDesc::clear_breakpoint(int bci) {
{- -------------------------------------------
(1) (assert)
---------------------------------------- -}
assert(bci >= 0, "");
{- -------------------------------------------
(1) clear_matches() 関数を呼び出し, bci 引数に該当する箇所をブレークポイントから元に戻す.
---------------------------------------- -}
clear_matches(this, bci);
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.