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

src/share/vm/runtime/vframeArray.hpp

Print this page

        

*** 40,49 **** --- 40,50 ---- class vframeArrayElement : public _ValueObj { private: frame _frame; // the interpreter frame we will unpack into int _bci; // raw bci for this vframe + bool _restart; // whether sould we restart methodOop _method; // the method for this vframe MonitorChunk* _monitors; // active monitors for this vframe StackValueCollection* _locals; StackValueCollection* _expressions;
*** 52,61 **** --- 53,63 ---- frame* iframe(void) { return &_frame; } int bci(void) const; int raw_bci(void) const { return _bci; } + bool is_restart(void) const { return _restart; } methodOop method(void) const { return _method; } MonitorChunk* monitors(void) const { return _monitors; }
src/share/vm/runtime/vframeArray.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File