Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:SnipLI

155   bool isSnippet(const LiveInterval &SnipLI);
222 /// It is assumed that SnipLI is a virtual register with the same original as
224 bool InlineSpiller::isSnippet(const LiveInterval &SnipLI) {
234 if (SnipLI.getNumValNums() > 2 || !LIS.intervalIsInOneMBB(SnipLI))
241 RI = MRI.reg_nodbg_begin(SnipLI.reg);
250 if (SnipLI.reg == TII.isLoadFromStackSlot(MI, FI) && FI == StackSlot)
254 if (SnipLI.reg == TII.isStoreToStackSlot(MI, FI) && FI == StackSlot)
284 LiveInterval &SnipLI = LIS.getInterval(SnipReg);
285 if (!isSnippet(SnipLI))
291 DEBUG(dbgs() << "\talso spill snippet " << SnipLI << '\n');
825 LiveInterval &SnipLI = LIS.getInterval(MI->getOperand(1).getReg());
826 assert(isRegToSpill(SnipLI.reg) && "Unexpected register in copy");
827 VNInfo *SnipVNI = SnipLI.getVNInfoAt(VNI->def.getUseIndex());
829 WorkList.push_back(std::make_pair(&SnipLI, SnipVNI));