Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Kills

223   /// End points where VNI is no longer live are added to Kills.
228 /// @param Kills Append end points of VNI's live range to Kills.
233 SmallVectorImpl<SlotIndex> *Kills,
242 /// @param Kills Points where the range of LocNo could be extended.
245 const SmallVectorImpl<SlotIndex> &Kills,
503 SmallVectorImpl<SlotIndex> *Kills,
519 if (Kills)
520 Kills->push_back(Start);
541 else if (!ToEnd && Kills)
542 Kills->push_back(Stop);
564 const SmallVectorImpl<SlotIndex> &Kills,
567 if (Kills.empty())
610 for (unsigned i = 0, e = Kills.size(); i != e; ++i) {
611 SlotIndex Idx = Kills[i];
665 SmallVector<SlotIndex, 16> Kills;
666 extendDef(Idx, LocNo, LI, VNI, &Kills, LIS, MDT, UVS);
668 addDefsFromCopies(LI, LocNo, Kills, Defs, MRI, LIS);