src/share/vm/runtime/vframeArray.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File
*** old/src/share/vm/runtime/vframeArray.hpp	Tue Jul 21 15:54:33 2009
--- new/src/share/vm/runtime/vframeArray.hpp	Tue Jul 21 15:54:32 2009

*** 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 _reexecute; // whether sould we reexecute this bytecode 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 should_reexecute(void) const { return _reexecute; } 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