Lines Matching defs:SnipLI
205 bool isSnippet(const LiveInterval &SnipLI);
317 /// It is assumed that SnipLI is a virtual register with the same original as
319 bool InlineSpiller::isSnippet(const LiveInterval &SnipLI) {
333 if (!LIS.intervalIsInOneMBB(SnipLI))
338 unsigned NumValNums = SnipLI.getNumValNums();
339 for (auto *VNI : SnipLI.vnis()) {
351 RI = MRI.reg_bundle_nodbg_begin(SnipLI.reg()),
362 if (SnipLI.reg() == TII.isLoadFromStackSlot(MI, FI) && FI == StackSlot)
366 if (SnipLI.reg() == TII.isStoreToStackSlot(MI, FI) && FI == StackSlot)
369 if (StatepointOpers::isFoldableReg(&MI, SnipLI.reg()))
398 LiveInterval &SnipLI = LIS.getInterval(SnipReg);
399 if (!isSnippet(SnipLI))
405 LLVM_DEBUG(dbgs() << "\talso spill snippet " << SnipLI << '\n');
580 LiveInterval &SnipLI = LIS.getInterval(MI->getOperand(1).getReg());
581 assert(isRegToSpill(SnipLI.reg()) && "Unexpected register in copy");
582 VNInfo *SnipVNI = SnipLI.getVNInfoAt(VNI->def.getRegSlot(true));
584 WorkList.push_back(std::make_pair(&SnipLI, SnipVNI));