Lines Matching refs:LIP
66 std::pair<SlotIndex, SlotIndex> &LIP = LastInsertPoint[Num]; in computeLastInsertPoint() local
81 if (!LIP.first.isValid()) { in computeLastInsertPoint()
84 LIP.first = MBBEnd; in computeLastInsertPoint()
86 LIP.first = LIS.getInstructionIndex(*FirstTerm); in computeLastInsertPoint()
95 return LIP.first; in computeLastInsertPoint()
99 LIP.second = LIS.getInstructionIndex(MI); in computeLastInsertPoint()
107 if (!LIP.second) in computeLastInsertPoint()
108 return LIP.first; in computeLastInsertPoint()
113 return LIP.first; in computeLastInsertPoint()
118 return LIP.first; in computeLastInsertPoint()
122 if (SlotIndex::isSameInstr(VNI->def, LIP.second)) in computeLastInsertPoint()
123 if (auto *I = LIS.getInstructionFromIndex(LIP.second)) in computeLastInsertPoint()
125 return LIP.second; in computeLastInsertPoint()
131 if (!SlotIndex::isEarlierInstr(VNI->def, LIP.second) && VNI->def < MBBEnd) in computeLastInsertPoint()
132 return LIP.first; in computeLastInsertPoint()
136 return LIP.second; in computeLastInsertPoint()
142 SlotIndex LIP = getLastInsertPoint(CurLI, MBB); in getLastInsertPointIter() local
143 if (LIP == LIS.getMBBEndIdx(&MBB)) in getLastInsertPointIter()
145 return LIS.getInstructionFromIndex(LIP); in getLastInsertPointIter()