Lines Matching refs:LVI
177 LiveInterval::const_iterator LVI = CurLI->begin(); in calcLiveBlockInfo() local
185 MachineFunction::iterator MFI = LIS.getMBBFromIndex(LVI->start); in calcLiveBlockInfo()
200 if (LVI->end < Stop) in calcLiveBlockInfo()
212 BI.LiveIn = LVI->start <= Start; in calcLiveBlockInfo()
216 assert(LVI->start == LVI->valno->def && "Dangling Segment start"); in calcLiveBlockInfo()
217 assert(LVI->start == BI.FirstInstr && "First instr should be a def"); in calcLiveBlockInfo()
223 while (LVI->end < Stop) { in calcLiveBlockInfo()
224 SlotIndex LastStop = LVI->end; in calcLiveBlockInfo()
225 if (++LVI == LVE || LVI->start >= Stop) { in calcLiveBlockInfo()
231 if (LastStop < LVI->start) { in calcLiveBlockInfo()
244 BI.FirstInstr = BI.FirstDef = LVI->start; in calcLiveBlockInfo()
248 assert(LVI->start == LVI->valno->def && "Dangling Segment start"); in calcLiveBlockInfo()
250 BI.FirstDef = LVI->start; in calcLiveBlockInfo()
256 if (LVI == LVE) in calcLiveBlockInfo()
261 if (LVI->end == Stop && ++LVI == LVE) in calcLiveBlockInfo()
265 if (LVI->start < Stop) in calcLiveBlockInfo()
268 MFI = LIS.getMBBFromIndex(LVI->start); in calcLiveBlockInfo()
279 LiveInterval::iterator LVI = li->begin(); in countLiveBlocks() local
284 MachineFunction::const_iterator MFI = LIS.getMBBFromIndex(LVI->start); in countLiveBlocks()
288 LVI = li->advanceTo(LVI, Stop); in countLiveBlocks()
289 if (LVI == LVE) in countLiveBlocks()
294 } while (Stop <= LVI->start); in countLiveBlocks()