Home
last modified time | relevance | path

Searched refs:DstLI (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegisterCoalescer.cpp1702 LiveInterval &DstLI = LIS->getInterval(DstReg); in eliminateUndefCopy() local
1704 LiveRange::Segment *Seg = DstLI.getSegmentContaining(RegIndex); in eliminateUndefCopy()
1706 VNInfo *V = DstLI.getVNInfoAt(Seg->end); in eliminateUndefCopy()
1710 if (((V && V->isPHIDef()) || (!V && !DstLI.liveAt(Idx)))) { in eliminateUndefCopy()
1733 if (VNInfo *PrevVNI = DstLI.getVNInfoAt(Idx)) { in eliminateUndefCopy()
1734 VNInfo *VNI = DstLI.getVNInfoAt(RegIndex); in eliminateUndefCopy()
1735 DstLI.MergeValueNumberInto(VNI, PrevVNI); in eliminateUndefCopy()
1739 for (LiveInterval::SubRange &SR : DstLI.subranges()) { in eliminateUndefCopy()
1747 DstLI.removeEmptySubRanges(); in eliminateUndefCopy()
1749 LIS->removeVRegDefAt(DstLI, RegIndex); in eliminateUndefCopy()
[all …]
H A DLiveDebugVariables.cpp1055 LiveInterval *DstLI = &LIS.getInterval(DstReg); in addDefsFromCopies() local
1056 const VNInfo *DstVNI = DstLI->getVNInfoAt(Idx.getRegSlot()); in addDefsFromCopies()
1058 CopyValues[LocNo].push_back(std::make_pair(DstLI, DstVNI)); in addDefsFromCopies()
1081 LiveInterval *DstLI = LIAndVNI.first; in addDefsFromCopies() local
1083 if (DstLI->getVNInfoAt(KilledAt) != DstVNI) in addDefsFromCopies()
1086 << DstVNI->id << " in " << *DstLI << '\n'); in addDefsFromCopies()
H A DInlineSpiller.cpp527 LiveInterval &DstLI = LIS.getInterval(DstReg); in eliminateRedundantSpills() local
528 VNInfo *DstVNI = DstLI.getVNInfoAt(Idx.getRegSlot()); in eliminateRedundantSpills()
532 WorkList.push_back(std::make_pair(&DstLI, DstVNI)); in eliminateRedundantSpills()