src/share/vm/runtime/vframe_hp.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File 6833129 Cdiff src/share/vm/runtime/vframe_hp.cpp

src/share/vm/runtime/vframe_hp.cpp

Print this page

        

*** 274,283 **** --- 274,292 ---- return 0; } return scope()->bci(); } + bool compiledVFrame::should_reexecute() const { + if (scope() == NULL) { + // native nmethods have no scope the method/bci is implied + nmethod* nm = code(); + assert(nm->is_native_method(), "must be native"); + return false; + } + return scope()->should_reexecute(); + } vframe* compiledVFrame::sender() const { const frame f = fr(); if (scope() == NULL) { // native nmethods have no scope the method/bci is implied
src/share/vm/runtime/vframe_hp.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File