Lines Matching refs:lrItr
640 LoopRangeMap::iterator lrItr = loopRangeMap.find(&loop); in getLoopRanges() local
641 if (lrItr == loopRangeMap.end()) { in getLoopRanges()
671 return lrItr->second; in getLoopRanges()
678 LoopRanges::iterator lrItr = loopRanges.begin(), in getLoopSubRange() local
680 while (lrItr != lrEnd && lr.start >= lrItr->second) { in getLoopSubRange()
681 ++lrItr; in getLoopSubRange()
684 if (lrItr == lrEnd) { in getLoopSubRange()
689 SlotIndex srStart(lr.start < lrItr->first ? lrItr->first : lr.start); in getLoopSubRange()
690 SlotIndex srEnd(lr.end > lrItr->second ? lrItr->second : lr.end); in getLoopSubRange()
698 for (LoopRanges::iterator lrItr = loopRanges.begin(), lrEnd = loopRanges.end(); in dumpLoopRanges() local
699 lrItr != lrEnd; ++lrItr) { in dumpLoopRanges()
700 dbgs() << "[" << lrItr->first << ", " << lrItr->second << ") "; in dumpLoopRanges()