Lines Matching refs:SnipLI
154 bool isSnippet(const LiveInterval &SnipLI);
222 bool InlineSpiller::isSnippet(const LiveInterval &SnipLI) { in isSnippet() argument
232 if (SnipLI.getNumValNums() > 2 || !LIS.intervalIsInOneMBB(SnipLI)) in isSnippet()
239 RI = MRI.reg_nodbg_begin(SnipLI.reg); in isSnippet()
248 if (SnipLI.reg == TII.isLoadFromStackSlot(MI, FI) && FI == StackSlot) in isSnippet()
252 if (SnipLI.reg == TII.isStoreToStackSlot(MI, FI) && FI == StackSlot) in isSnippet()
282 LiveInterval &SnipLI = LIS.getInterval(SnipReg); in collectRegsToSpill() local
283 if (!isSnippet(SnipLI)) in collectRegsToSpill()
289 DEBUG(dbgs() << "\talso spill snippet " << SnipLI << '\n'); in collectRegsToSpill()
824 LiveInterval &SnipLI = LIS.getInterval(MI->getOperand(1).getReg()); in markValueUsed() local
825 assert(isRegToSpill(SnipLI.reg) && "Unexpected register in copy"); in markValueUsed()
826 VNInfo *SnipVNI = SnipLI.getVNInfoAt(VNI->def.getRegSlot(true)); in markValueUsed()
828 WorkList.push_back(std::make_pair(&SnipLI, SnipVNI)); in markValueUsed()