Lines Matching refs:LVI
212 LiveInterval::const_iterator LVI = CurLI->begin(); in calcLiveBlockInfo() local
221 LIS.getMBBFromIndex(LVI->start)->getIterator(); in calcLiveBlockInfo()
236 if (LVI->end < Stop) in calcLiveBlockInfo()
248 BI.LiveIn = LVI->start <= Start; in calcLiveBlockInfo()
252 assert(LVI->start == LVI->valno->def && "Dangling Segment start"); in calcLiveBlockInfo()
253 assert(LVI->start == BI.FirstInstr && "First instr should be a def"); in calcLiveBlockInfo()
259 while (LVI->end < Stop) { in calcLiveBlockInfo()
260 SlotIndex LastStop = LVI->end; in calcLiveBlockInfo()
261 if (++LVI == LVE || LVI->start >= Stop) { in calcLiveBlockInfo()
267 if (LastStop < LVI->start) { in calcLiveBlockInfo()
280 BI.FirstInstr = BI.FirstDef = LVI->start; in calcLiveBlockInfo()
284 assert(LVI->start == LVI->valno->def && "Dangling Segment start"); in calcLiveBlockInfo()
286 BI.FirstDef = LVI->start; in calcLiveBlockInfo()
292 if (LVI == LVE) in calcLiveBlockInfo()
297 if (LVI->end == Stop && ++LVI == LVE) in calcLiveBlockInfo()
301 if (LVI->start < Stop) in calcLiveBlockInfo()
304 MFI = LIS.getMBBFromIndex(LVI->start)->getIterator(); in calcLiveBlockInfo()
315 LiveInterval::iterator LVI = li->begin(); in countLiveBlocks() local
321 LIS.getMBBFromIndex(LVI->start)->getIterator(); in countLiveBlocks()
325 LVI = li->advanceTo(LVI, Stop); in countLiveBlocks()
326 if (LVI == LVE) in countLiveBlocks()
331 } while (Stop <= LVI->start); in countLiveBlocks()