Lines Matching refs:LVI
192 LiveInterval::const_iterator LVI = CurLI->begin(); in calcLiveBlockInfo() local
201 LIS.getMBBFromIndex(LVI->start)->getIterator(); in calcLiveBlockInfo()
216 if (LVI->end < Stop) in calcLiveBlockInfo()
228 BI.LiveIn = LVI->start <= Start; in calcLiveBlockInfo()
232 assert(LVI->start == LVI->valno->def && "Dangling Segment start"); in calcLiveBlockInfo()
233 assert(LVI->start == BI.FirstInstr && "First instr should be a def"); in calcLiveBlockInfo()
239 while (LVI->end < Stop) { in calcLiveBlockInfo()
240 SlotIndex LastStop = LVI->end; in calcLiveBlockInfo()
241 if (++LVI == LVE || LVI->start >= Stop) { in calcLiveBlockInfo()
247 if (LastStop < LVI->start) { in calcLiveBlockInfo()
260 BI.FirstInstr = BI.FirstDef = LVI->start; in calcLiveBlockInfo()
264 assert(LVI->start == LVI->valno->def && "Dangling Segment start"); in calcLiveBlockInfo()
266 BI.FirstDef = LVI->start; in calcLiveBlockInfo()
272 if (LVI == LVE) in calcLiveBlockInfo()
277 if (LVI->end == Stop && ++LVI == LVE) in calcLiveBlockInfo()
281 if (LVI->start < Stop) in calcLiveBlockInfo()
284 MFI = LIS.getMBBFromIndex(LVI->start)->getIterator(); in calcLiveBlockInfo()
295 LiveInterval::iterator LVI = li->begin(); in countLiveBlocks() local
301 LIS.getMBBFromIndex(LVI->start)->getIterator(); in countLiveBlocks()
305 LVI = li->advanceTo(LVI, Stop); in countLiveBlocks()
306 if (LVI == LVE) in countLiveBlocks()
311 } while (Stop <= LVI->start); in countLiveBlocks()