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

/openjdk9/hotspot/src/share/vm/code/
H A DscopeDesc.hpp73 bool should_reexecute() const { return _reexecute; }
98 bool _reexecute; member in class:ScopeDesc
H A DscopeDesc.cpp37 _reexecute = reexecute;
47 _reexecute = reexecute;
58 _reexecute = false; //reexecute only applies to the first scope
/openjdk9/hotspot/src/share/vm/runtime/
H A DvframeArray.hpp56 bool _reexecute; // whether we should reexecute this bytecode member in class:vframeArrayElement
72 bool should_reexecute(void) const { return _reexecute; }
H A DvframeArray.cpp65 _reexecute = vf->should_reexecute();
/openjdk9/hotspot/src/share/vm/opto/
H A Dcallnode.hpp213 ReexecuteState _reexecute; // Whether this bytecode need to be re-executed member in class:JVMState
253 bool should_reexecute() const { return _reexecute==Reexecute_True; }
254 bool is_reexecute_undefined() const { return _reexecute==Reexecute_Undefined; }
298 // _reexecute is initialized to "undefined" for a new bci
299 void set_bci(int bci) {if(_bci != bci)_reexecute=Reexecute_Undefined; _bci = bci; }
300 void set_should_reexecute(bool reexec) {_reexecute = reexec ? Reexecute_True : Reexecute_False;}
H A Dcallnode.cpp260 _reexecute = Reexecute_Undefined;
275 _reexecute = Reexecute_Undefined;
308 if (p->_reexecute != q->_reexecute) return false;
538 if(_reexecute == Reexecute_True)
589 n->_reexecute = _reexecute;
H A DgraphKit.hpp954 // Helper class to preserve the original _reexecute bit and _sp and restore
960 JVMState::ReexecuteState _reexecute; member in class:PreserveReexecuteState
H A DgraphKit.cpp691 _reexecute = kit->jvms()->_reexecute;
695 _kit->jvms()->_reexecute = _reexecute;

Completed in 221 milliseconds