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(*I); 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()
125 if (!SlotIndex::isEarlierInstr(VNI->def, LIP.second) && VNI->def < MBBEnd) in computeLastInsertPoint()
126 return LIP.first; in computeLastInsertPoint()
130 return LIP.second; in computeLastInsertPoint()
136 SlotIndex LIP = getLastInsertPoint(CurLI, MBB); in getLastInsertPointIter() local
137 if (LIP == LIS.getMBBEndIdx(&MBB)) in getLastInsertPointIter()
139 return LIS.getInstructionFromIndex(LIP); in getLastInsertPointIter()