Searched refs:_reexecute (Results 1 - 8 of 8) sorted by relevance

/openjdk7/hotspot/src/share/vm/code/
H A DscopeDesc.hpp73 bool should_reexecute() const { return _reexecute; }
99 bool _reexecute; member in class:ScopeDesc
H A DscopeDesc.cpp38 _reexecute = reexecute;
47 _reexecute = reexecute;
57 _reexecute = false; //reexecute only applies to the first scope
/openjdk7/hotspot/src/share/vm/runtime/
H A DvframeArray.hpp56 bool _reexecute; // whether sould we reexecute this bytecode member in class:vframeArrayElement
69 bool should_reexecute(void) const { return _reexecute; }
H A DvframeArray.cpp65 _reexecute = vf->should_reexecute();
/openjdk7/hotspot/src/share/vm/opto/
H A Dcallnode.hpp208 ReexecuteState _reexecute; // Whether this bytecode need to be re-executed member in class:JVMState
249 bool should_reexecute() const { return _reexecute==Reexecute_True; }
250 bool is_reexecute_undefined() const { return _reexecute==Reexecute_Undefined; }
294 // _reexecute is initialized to "undefined" for a new bci
295 void set_bci(int bci) {if(_bci != bci)_reexecute=Reexecute_Undefined; _bci = bci; }
296 void set_should_reexecute(bool reexec) {_reexecute = reexec ? Reexecute_True : Reexecute_False;}
H A Dcallnode.cpp238 _reexecute = Reexecute_Undefined;
253 _reexecute = Reexecute_Undefined;
286 if (p->_reexecute != q->_reexecute) return false;
511 if(_reexecute == Reexecute_True)
560 n->_reexecute = _reexecute;
H A DgraphKit.cpp682 _reexecute = kit->jvms()->_reexecute;
686 _kit->jvms()->_reexecute = _reexecute;
H A DgraphKit.hpp870 // Helper class to preserve the original _reexecute bit and _sp and restore
876 JVMState::ReexecuteState _reexecute; member in class:PreserveReexecuteState

Completed in 64 milliseconds