src/share/vm/runtime/vframe.hpp

changeset 1366
72088be4b386
parent 1338
15bbd3f505c0
child 1907
c18cbe5936b8
     1.1 --- a/src/share/vm/runtime/vframe.hpp	Wed Aug 19 19:05:18 2009 -0700
     1.2 +++ b/src/share/vm/runtime/vframe.hpp	Thu Aug 20 12:42:57 2009 -0700
     1.3 @@ -402,12 +402,7 @@
     1.4    DebugInfoReadStream buffer(nm(), decode_offset);
     1.5    _sender_decode_offset = buffer.read_int();
     1.6    _method               = methodOop(buffer.read_oop());
     1.7 -  // Deoptimization needs reexecute bit to determine whether to reexecute the bytecode
     1.8 -  // only at the time when it "unpack_frames", and the reexecute bit info could always
     1.9 -  // be obtained from the scopeDesc in the compiledVFrame. As a result, we don't keep
    1.10 -  // the reexecute bit here.
    1.11 -  bool dummy_reexecute;
    1.12 -  _bci                  = buffer.read_bci_and_reexecute(dummy_reexecute);
    1.13 +  _bci                  = buffer.read_bci();
    1.14  
    1.15    assert(_method->is_method(), "checking type of decoded method");
    1.16  }

mercurial