Lines Matching defs:LII
1582 LiveInterval::iterator LII = LR.find(EndIdx);
1584 if (LII != LR.end() && LII->start < EndIdx) {
1585 lastUseIdx = LII->end;
1586 } else if (LII == LR.begin()) {
1590 --LII;
1600 bool isStartValid = getInstructionFromIndex(LII->start);
1601 bool isEndValid = getInstructionFromIndex(LII->end);
1616 if (LII->end.isDead()) {
1617 LII = LR.removeSegment(LII, true);
1618 if (LII != LR.begin())
1619 --LII;
1621 LII->start = instrIdx.getRegSlot();
1622 LII->valno->def = instrIdx.getRegSlot();
1635 LII = LR.addSegment(S);
1636 } else if (LII->start != instrIdx.getRegSlot()) {
1639 LII = LR.addSegment(S);
1650 if (!isEndValid && !LII->end.isBlock())
1651 LII->end = instrIdx.getRegSlot();
1658 bool isStartValid = getInstructionFromIndex(LII->start);
1659 if (!isStartValid && LII->end.isDead())
1660 LR.removeSegment(*LII, true);