Lines Matching defs:LII
1618 LiveInterval::iterator LII = LR.find(EndIdx);
1620 if (LII != LR.end() && LII->start < EndIdx) {
1621 lastUseIdx = LII->end;
1622 } else if (LII == LR.begin()) {
1626 --LII;
1636 bool isStartValid = getInstructionFromIndex(LII->start);
1637 bool isEndValid = getInstructionFromIndex(LII->end);
1652 if (LII->end.isDead()) {
1653 LII = LR.removeSegment(LII, true);
1654 if (LII != LR.begin())
1655 --LII;
1657 LII->start = instrIdx.getRegSlot();
1658 LII->valno->def = instrIdx.getRegSlot();
1671 LII = LR.addSegment(S);
1672 } else if (LII->start != instrIdx.getRegSlot()) {
1675 LII = LR.addSegment(S);
1686 if (!isEndValid && !LII->end.isBlock())
1687 LII->end = instrIdx.getRegSlot();
1694 bool isStartValid = getInstructionFromIndex(LII->start);
1695 if (!isStartValid && LII->end.isDead())
1696 LR.removeSegment(*LII, true);