--- old/src/hotspot/share/interpreter/bytecodeStream.hpp 2019-04-19 18:21:43.000000000 -0700 +++ new/src/hotspot/share/interpreter/bytecodeStream.hpp 2019-04-19 18:21:42.000000000 -0700 @@ -170,6 +170,10 @@ // Construction BytecodeStream(const methodHandle& method) : BaseBytecodeStream(method) { } + BytecodeStream(const methodHandle& method, int bci) : BaseBytecodeStream(method) { + set_start(bci); + } + // Iteration Bytecodes::Code next() { Bytecodes::Code raw_code, code;