Searched refs:_curnt (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A Dloopnode.hpp1109 IdealLoopTree* _curnt; member in class:LoopTreeIterator
1112 LoopTreeIterator(IdealLoopTree* root) : _root(root), _curnt(root) {}
1114 bool done() { return _curnt == NULL; } // Finished iterating?
1118 IdealLoopTree* current() { return _curnt; } // Return current value of iterator.
H A Dloopnode.cpp3746 if (_curnt->_child != NULL) {
3747 _curnt = _curnt->_child;
3748 } else if (_curnt->_next != NULL) {
3749 _curnt = _curnt->_next;
3751 while (_curnt != _root && _curnt->_next == NULL) {
3752 _curnt = _curnt
[all...]

Completed in 3138 milliseconds