Lines Matching refs:CurEntry
1795 auto CurEntry = DebugLoc.rbegin(); in buildLocationList() local
1797 dbgs() << CurEntry->getValues().size() << " Values:\n"; in buildLocationList()
1798 for (auto &Value : CurEntry->getValues()) in buildLocationList()
1803 auto PrevEntry = std::next(CurEntry); in buildLocationList()
1804 if (PrevEntry != DebugLoc.rend() && PrevEntry->MergeRanges(*CurEntry)) in buildLocationList()
1828 auto *CurEntry = DebugLoc.begin(); in buildLocationList() local
1829 auto *NextEntry = std::next(CurEntry); in buildLocationList()
1839 if (CurEntry->getEndSym() != RangeMBB->getEndSymbol() || in buildLocationList()
1841 CurEntry->getValues() != NextEntry->getValues()) in buildLocationList()
1844 CurEntry = NextEntry; in buildLocationList()
1845 NextEntry = std::next(CurEntry); in buildLocationList()