Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:Defs

239   /// points, and add defs if possible.
243 /// @param NewDefs Append (Idx, LocNo) of inserted defs here.
609 // Try to add defs of the copied values for each kill point.
639 SmallVector<std::pair<SlotIndex, unsigned>, 16> Defs;
641 // Collect all defs to be extended (Skipping undefs).
644 Defs.push_back(std::make_pair(I.start(), I.value()));
646 // Extend all defs, and possibly add new ones along the way.
647 for (unsigned i = 0; i != Defs.size(); ++i) {
648 SlotIndex Idx = Defs[i].first;
649 unsigned LocNo = Defs[i].second;
668 addDefsFromCopies(LI, LocNo, Kills, Defs, MRI, LIS);