< prev index next >

src/hotspot/share/classfile/verifier.cpp

Print this page
rev 50967 : 8206977: Minor improvements of runtime code.

*** 717,727 **** LogTarget(Info, verification) lt; if (lt.is_enabled()) { ResourceMark rm(THREAD); LogStream ls(lt); current_frame.print_on(&ls); ! lt.print("offset = %d, opcode = %s", bci, Bytecodes::name(opcode)); } // Make sure wide instruction is in correct format if (bcs.is_wide()) { if (opcode != Bytecodes::_iinc && opcode != Bytecodes::_iload && --- 717,728 ---- LogTarget(Info, verification) lt; if (lt.is_enabled()) { ResourceMark rm(THREAD); LogStream ls(lt); current_frame.print_on(&ls); ! lt.print("offset = %d, opcode = %s", bci, ! opcode == Bytecodes::_illegal ? "illegal" : Bytecodes::name(opcode)); } // Make sure wide instruction is in correct format if (bcs.is_wide()) { if (opcode != Bytecodes::_iinc && opcode != Bytecodes::_iload &&
< prev index next >