Lines Matching refs:MaxRefs
1429 std::vector<RegisterRef> MaxRefs; in buildPhis() local
1431 MaxRefs.push_back(MaxCoverIn(I, AllRefs)); in buildPhis()
1438 llvm::sort(MaxRefs); in buildPhis()
1440 auto NewEnd = std::unique(MaxRefs.begin(), MaxRefs.end()); in buildPhis()
1441 MaxRefs.erase(NewEnd, MaxRefs.end()); in buildPhis()
1443 auto Aliased = [this,&MaxRefs](RegisterRef RR, in buildPhis()
1446 if (PRI.alias(RR, MaxRefs[I])) in buildPhis()
1457 while (!MaxRefs.empty()) { in buildPhis()
1463 for (unsigned i = 1; i != MaxRefs.size(); ++i) in buildPhis()
1464 if (Aliased(MaxRefs[i], ClosureIdx)) in buildPhis()
1473 RegisterRef RR = MaxRefs[ClosureIdx[X]]; in buildPhis()
1481 RegisterRef RR = MaxRefs[ClosureIdx[X]]; in buildPhis()
1488 auto Begin = MaxRefs.begin(); in buildPhis()
1490 MaxRefs.erase(Begin + Idx); in buildPhis()