hotspot/src/share/vm/oops/methodOop.cpp
Bytecodes::Code methodOopDesc::orig_bytecode_at(int bci) const {
{- -------------------------------------------
(1)
---------------------------------------- -}
BreakpointInfo* bp = instanceKlass::cast(method_holder())->breakpoints();
for (; bp != NULL; bp = bp->next()) {
if (bp->match(this, bci)) {
return bp->orig_bytecode();
}
}
ShouldNotReachHere();
return Bytecodes::_shouldnotreachhere;
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.