Lines Matching refs:LIP
67 std::pair<SlotIndex, SlotIndex> &LIP = LastInsertPoint[Num]; in computeLastInsertPoint() local
82 if (!LIP.first.isValid()) { in computeLastInsertPoint()
85 LIP.first = MBBEnd; in computeLastInsertPoint()
87 LIP.first = LIS.getInstructionIndex(*FirstTerm); in computeLastInsertPoint()
96 return LIP.first; in computeLastInsertPoint()
100 LIP.second = LIS.getInstructionIndex(MI); in computeLastInsertPoint()
108 if (!LIP.second) in computeLastInsertPoint()
109 return LIP.first; in computeLastInsertPoint()
114 return LIP.first; in computeLastInsertPoint()
119 return LIP.first; in computeLastInsertPoint()
123 if (SlotIndex::isSameInstr(VNI->def, LIP.second)) in computeLastInsertPoint()
124 if (auto *I = LIS.getInstructionFromIndex(LIP.second)) in computeLastInsertPoint()
126 return LIP.second; in computeLastInsertPoint()
132 if (!SlotIndex::isEarlierInstr(VNI->def, LIP.second) && VNI->def < MBBEnd) in computeLastInsertPoint()
133 return LIP.first; in computeLastInsertPoint()
137 return LIP.second; in computeLastInsertPoint()
143 SlotIndex LIP = getLastInsertPoint(CurLI, MBB); in getLastInsertPointIter() local
144 if (LIP == LIS.getMBBEndIdx(&MBB)) in getLastInsertPointIter()
146 return LIS.getInstructionFromIndex(LIP); in getLastInsertPointIter()