Home | History | Annotate | Download | only in CodeGen

Lines Matching full:liveins

337       LiveIns.begin(), LiveIns.end(),
339 if (I == LiveIns.end())
344 LiveIns.erase(I);
349 LiveIns.begin(), LiveIns.end(),
355 std::sort(LiveIns.begin(), LiveIns.end(),
359 // Liveins are sorted by physreg now we can merge their lanemasks.
360 LiveInVector::const_iterator I = LiveIns.begin();
362 LiveInVector::iterator Out = LiveIns.begin();
363 for (; I != LiveIns.end(); ++Out, I = J) {
366 for (J = std::next(I); J != LiveIns.end() && J->PhysReg == PhysReg; ++J)
371 LiveIns.erase(Out, LiveIns.end());
860 for (const auto &LI : Succ->liveins())