Searched refs:thisbc (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecode.cpp40 Bytecodes::Code thisbc = Bytecodes::cast(byte_at(0)); local
41 if (thisbc == Bytecodes::_breakpoint) return; // let the assertion fail silently
43 assert(thisbc == Bytecodes::_wide, "expected a wide instruction");
44 thisbc = Bytecodes::cast(byte_at(1));
45 if (thisbc == Bytecodes::_breakpoint) return;
48 int testflags = Bytecodes::flags(thisbc, is_wide) & Bytecodes::_all_fmt_bits;
51 (int)testbc, (int)thisbc, (is_wide?"/wide":""), testflags, thisflags);

Completed in 172 milliseconds