Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:Kills

219   /// End points where VNI is no longer live are added to Kills.
224 /// @param Kills Append end points of VNI's live range to Kills.
229 SmallVectorImpl<SlotIndex> *Kills,
238 /// @param Kills Points where the range of LocNo could be extended.
241 const SmallVectorImpl<SlotIndex> &Kills,
496 SmallVectorImpl<SlotIndex> *Kills,
512 if (Kills)
513 Kills->push_back(Start);
534 else if (!ToEnd && Kills)
535 Kills->push_back(Stop);
557 const SmallVectorImpl<SlotIndex> &Kills,
560 if (Kills.empty())
605 for (unsigned i = 0, e = Kills.size(); i != e; ++i) {
606 SlotIndex Idx = Kills[i];
660 SmallVector<SlotIndex, 16> Kills;
661 extendDef(Idx, LocNo, LI, VNI, &Kills, LIS, MDT, UVS);
663 addDefsFromCopies(LI, LocNo, Kills, Defs, MRI, LIS);