hotspot/src/share/vm/prims/jvmtiClassFileReconstituter.cpp
changeset 14481 0918b0419ce8
parent 14480 06c1743f1285
parent 14391 df0a1573d5bd
child 17294 a1a03f4c1cab
equal deleted inserted replaced
14480:06c1743f1285 14481:0918b0419ce8
   751 
   751 
   752   BytecodeStream bs(mh);
   752   BytecodeStream bs(mh);
   753 
   753 
   754   unsigned char* p = bytecodes;
   754   unsigned char* p = bytecodes;
   755   Bytecodes::Code code;
   755   Bytecodes::Code code;
   756   bool is_rewritten = InstanceKlass::cast(mh->method_holder())->is_rewritten();
   756   bool is_rewritten = mh->method_holder()->is_rewritten();
   757 
   757 
   758   while ((code = bs.next()) >= 0) {
   758   while ((code = bs.next()) >= 0) {
   759     assert(Bytecodes::is_java_code(code), "sanity check");
   759     assert(Bytecodes::is_java_code(code), "sanity check");
   760     assert(code != Bytecodes::_breakpoint, "sanity check");
   760     assert(code != Bytecodes::_breakpoint, "sanity check");
   761 
   761