< prev index next >

src/hotspot/share/interpreter/bytecodeTracer.cpp

Print this page

        

*** 433,449 **** case Bytecodes::_iload: case Bytecodes::_lload: case Bytecodes::_fload: case Bytecodes::_dload: case Bytecodes::_aload: - case Bytecodes::_vload: case Bytecodes::_istore: case Bytecodes::_lstore: case Bytecodes::_fstore: case Bytecodes::_dstore: case Bytecodes::_astore: - case Bytecodes::_vstore: st->print_cr(" #%d", get_index_special()); break; case Bytecodes::_iinc: { int index = get_index_special(); --- 433,447 ----
*** 548,558 **** case Bytecodes::_putstatic: case Bytecodes::_getstatic: case Bytecodes::_putfield: case Bytecodes::_getfield: ! case Bytecodes::_vwithfield: print_field_or_method(get_index_u2_cpcache(), st); break; case Bytecodes::_invokevirtual: case Bytecodes::_invokespecial: --- 546,556 ---- case Bytecodes::_putstatic: case Bytecodes::_getstatic: case Bytecodes::_putfield: case Bytecodes::_getfield: ! case Bytecodes::_withfield: print_field_or_method(get_index_u2_cpcache(), st); break; case Bytecodes::_invokevirtual: case Bytecodes::_invokespecial:
*** 573,585 **** break; case Bytecodes::_new: case Bytecodes::_checkcast: case Bytecodes::_instanceof: ! case Bytecodes::_vbox: ! case Bytecodes::_vunbox: ! case Bytecodes::_vdefault: { int i = get_index_u2(); ConstantPool* constants = method()->constants(); Symbol* name = constants->klass_name_at(i); st->print_cr(" %d <%s>", i, name->as_C_string()); } --- 571,581 ---- break; case Bytecodes::_new: case Bytecodes::_checkcast: case Bytecodes::_instanceof: ! case Bytecodes::_defaultvalue: { int i = get_index_u2(); ConstantPool* constants = method()->constants(); Symbol* name = constants->klass_name_at(i); st->print_cr(" %d <%s>", i, name->as_C_string()); }
< prev index next >