Lines Matching refs:CurEntry
1752 auto CurEntry = DebugLoc.rbegin(); in buildLocationList() local
1754 dbgs() << CurEntry->getValues().size() << " Values:\n"; in buildLocationList()
1755 for (auto &Value : CurEntry->getValues()) in buildLocationList()
1760 auto PrevEntry = std::next(CurEntry); in buildLocationList()
1761 if (PrevEntry != DebugLoc.rend() && PrevEntry->MergeRanges(*CurEntry)) in buildLocationList()
1785 auto *CurEntry = DebugLoc.begin(); in buildLocationList() local
1786 auto *NextEntry = std::next(CurEntry); in buildLocationList()
1796 if (CurEntry->getEndSym() != RangeMBB->getEndSymbol() || in buildLocationList()
1798 CurEntry->getValues() != NextEntry->getValues()) in buildLocationList()
1801 CurEntry = NextEntry; in buildLocationList()
1802 NextEntry = std::next(CurEntry); in buildLocationList()