Lines Matching refs:LVI
172 LiveInterval::const_iterator LVI = CurLI->begin(); in calcLiveBlockInfo() local
181 LIS.getMBBFromIndex(LVI->start)->getIterator(); in calcLiveBlockInfo()
196 if (LVI->end < Stop) in calcLiveBlockInfo()
208 BI.LiveIn = LVI->start <= Start; in calcLiveBlockInfo()
212 assert(LVI->start == LVI->valno->def && "Dangling Segment start"); in calcLiveBlockInfo()
213 assert(LVI->start == BI.FirstInstr && "First instr should be a def"); in calcLiveBlockInfo()
219 while (LVI->end < Stop) { in calcLiveBlockInfo()
220 SlotIndex LastStop = LVI->end; in calcLiveBlockInfo()
221 if (++LVI == LVE || LVI->start >= Stop) { in calcLiveBlockInfo()
227 if (LastStop < LVI->start) { in calcLiveBlockInfo()
240 BI.FirstInstr = BI.FirstDef = LVI->start; in calcLiveBlockInfo()
244 assert(LVI->start == LVI->valno->def && "Dangling Segment start"); in calcLiveBlockInfo()
246 BI.FirstDef = LVI->start; in calcLiveBlockInfo()
252 if (LVI == LVE) in calcLiveBlockInfo()
257 if (LVI->end == Stop && ++LVI == LVE) in calcLiveBlockInfo()
261 if (LVI->start < Stop) in calcLiveBlockInfo()
264 MFI = LIS.getMBBFromIndex(LVI->start)->getIterator(); in calcLiveBlockInfo()
275 LiveInterval::iterator LVI = li->begin(); in countLiveBlocks() local
281 LIS.getMBBFromIndex(LVI->start)->getIterator(); in countLiveBlocks()
285 LVI = li->advanceTo(LVI, Stop); in countLiveBlocks()
286 if (LVI == LVE) in countLiveBlocks()
291 } while (Stop <= LVI->start); in countLiveBlocks()