Searched defs:_reexecute (Results 1 - 4 of 4) 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
/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; }
/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 DgraphKit.hpp870 // Helper class to preserve the original _reexecute bit and _sp and restore
876 JVMState::ReexecuteState _reexecute; member in class:PreserveReexecuteState

Completed in 38 milliseconds