Lines Matching refs:CurEntry
1758 auto CurEntry = DebugLoc.rbegin(); in buildLocationList() local
1760 dbgs() << CurEntry->getValues().size() << " Values:\n"; in buildLocationList()
1761 for (auto &Value : CurEntry->getValues()) in buildLocationList()
1766 auto PrevEntry = std::next(CurEntry); in buildLocationList()
1767 if (PrevEntry != DebugLoc.rend() && PrevEntry->MergeRanges(*CurEntry)) in buildLocationList()
1791 auto *CurEntry = DebugLoc.begin(); in buildLocationList() local
1792 auto *NextEntry = std::next(CurEntry); in buildLocationList()
1802 if (CurEntry->getEndSym() != RangeMBB->getEndSymbol() || in buildLocationList()
1804 CurEntry->getValues() != NextEntry->getValues()) in buildLocationList()
1807 CurEntry = NextEntry; in buildLocationList()
1808 NextEntry = std::next(CurEntry); in buildLocationList()