7012081: JSR 292: SA-JDI can't read MH/MT/Indy ConstantPool entries

Reviewed-by: kvn, twisti, jrose
This commit is contained in:
Tom Rodriguez 2011-07-21 08:38:25 -07:00
parent aa89b8c08d
commit aa16309657
16 changed files with 364 additions and 279 deletions

View file

@ -1556,9 +1556,7 @@ void GenerateOopMap::interp1(BytecodeStream *itr) {
case Bytecodes::_jsr: do_jsr(itr->dest()); break;
case Bytecodes::_jsr_w: do_jsr(itr->dest_w()); break;
case Bytecodes::_getstatic: do_field(true, true,
itr->get_index_u2_cpcache(),
itr->bci()); break;
case Bytecodes::_getstatic: do_field(true, true, itr->get_index_u2_cpcache(), itr->bci()); break;
case Bytecodes::_putstatic: do_field(false, true, itr->get_index_u2_cpcache(), itr->bci()); break;
case Bytecodes::_getfield: do_field(true, false, itr->get_index_u2_cpcache(), itr->bci()); break;
case Bytecodes::_putfield: do_field(false, false, itr->get_index_u2_cpcache(), itr->bci()); break;