Lines Matching refs:LIP
80 std::pair<SlotIndex, SlotIndex> &LIP = LastInsertPoint[Num]; in computeLastInsertPoint() local
90 if (!LIP.first.isValid()) { in computeLastInsertPoint()
93 LIP.first = MBBEnd; in computeLastInsertPoint()
95 LIP.first = LIS.getInstructionIndex(*FirstTerm); in computeLastInsertPoint()
99 return LIP.first; in computeLastInsertPoint()
101 LIP.second = LIP.first; in computeLastInsertPoint()
106 LIP.second = LIS.getInstructionIndex(*I); in computeLastInsertPoint()
114 if (!LIP.second) in computeLastInsertPoint()
115 return LIP.first; in computeLastInsertPoint()
120 return LIP.first; in computeLastInsertPoint()
125 return LIP.first; 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()