Lines Matching refs:LVI
171 LiveInterval::const_iterator LVI = CurLI->begin(); in calcLiveBlockInfo() local
179 MachineFunction::iterator MFI = LIS.getMBBFromIndex(LVI->start); in calcLiveBlockInfo()
194 if (LVI->end < Stop) in calcLiveBlockInfo()
206 BI.LiveIn = LVI->start <= Start; in calcLiveBlockInfo()
210 assert(LVI->start == LVI->valno->def && "Dangling Segment start"); in calcLiveBlockInfo()
211 assert(LVI->start == BI.FirstInstr && "First instr should be a def"); in calcLiveBlockInfo()
217 while (LVI->end < Stop) { in calcLiveBlockInfo()
218 SlotIndex LastStop = LVI->end; in calcLiveBlockInfo()
219 if (++LVI == LVE || LVI->start >= Stop) { in calcLiveBlockInfo()
225 if (LastStop < LVI->start) { in calcLiveBlockInfo()
238 BI.FirstInstr = BI.FirstDef = LVI->start; in calcLiveBlockInfo()
242 assert(LVI->start == LVI->valno->def && "Dangling Segment start"); in calcLiveBlockInfo()
244 BI.FirstDef = LVI->start; in calcLiveBlockInfo()
250 if (LVI == LVE) in calcLiveBlockInfo()
255 if (LVI->end == Stop && ++LVI == LVE) in calcLiveBlockInfo()
259 if (LVI->start < Stop) in calcLiveBlockInfo()
262 MFI = LIS.getMBBFromIndex(LVI->start); in calcLiveBlockInfo()
273 LiveInterval::iterator LVI = li->begin(); in countLiveBlocks() local
278 MachineFunction::const_iterator MFI = LIS.getMBBFromIndex(LVI->start); in countLiveBlocks()
282 LVI = li->advanceTo(LVI, Stop); in countLiveBlocks()
283 if (LVI == LVE) in countLiveBlocks()
288 } while (Stop <= LVI->start); in countLiveBlocks()