< prev index next >

src/hotspot/share/ci/ciStreams.cpp

Print this page

        

*** 168,181 **** case Bytecodes::_checkcast: case Bytecodes::_instanceof: case Bytecodes::_anewarray: case Bytecodes::_multianewarray: case Bytecodes::_new: ! case Bytecodes::_vdefault: case Bytecodes::_newarray: - case Bytecodes::_vunbox: - case Bytecodes::_vbox: return get_index_u2(); default: ShouldNotReachHere(); return 0; } --- 168,179 ---- case Bytecodes::_checkcast: case Bytecodes::_instanceof: case Bytecodes::_anewarray: case Bytecodes::_multianewarray: case Bytecodes::_new: ! case Bytecodes::_defaultvalue: case Bytecodes::_newarray: return get_index_u2(); default: ShouldNotReachHere(); return 0; }
*** 269,279 **** int ciBytecodeStream::get_field_index() { assert(cur_bc() == Bytecodes::_getfield || cur_bc() == Bytecodes::_putfield || cur_bc() == Bytecodes::_getstatic || cur_bc() == Bytecodes::_putstatic || ! cur_bc() == Bytecodes::_vwithfield, "wrong bc"); return get_index_u2_cpcache(); } // ------------------------------------------------------------------ --- 267,277 ---- int ciBytecodeStream::get_field_index() { assert(cur_bc() == Bytecodes::_getfield || cur_bc() == Bytecodes::_putfield || cur_bc() == Bytecodes::_getstatic || cur_bc() == Bytecodes::_putstatic || ! cur_bc() == Bytecodes::_withfield, "wrong bc"); return get_index_u2_cpcache(); } // ------------------------------------------------------------------
< prev index next >