Lines Matching refs:MaxRefs
1443 std::vector<RegisterRef> MaxRefs; in buildPhis() local
1445 MaxRefs.push_back(MaxCoverIn(I, AllRefs)); in buildPhis()
1452 llvm::sort(MaxRefs); in buildPhis()
1454 auto NewEnd = std::unique(MaxRefs.begin(), MaxRefs.end()); in buildPhis()
1455 MaxRefs.erase(NewEnd, MaxRefs.end()); in buildPhis()
1457 auto Aliased = [this,&MaxRefs](RegisterRef RR, in buildPhis()
1460 if (PRI.alias(RR, MaxRefs[I])) in buildPhis()
1471 while (!MaxRefs.empty()) { in buildPhis()
1477 for (unsigned i = 1; i != MaxRefs.size(); ++i) in buildPhis()
1478 if (Aliased(MaxRefs[i], ClosureIdx)) in buildPhis()
1487 RegisterRef RR = MaxRefs[ClosureIdx[X]]; in buildPhis()
1495 RegisterRef RR = MaxRefs[ClosureIdx[X]]; in buildPhis()
1502 auto Begin = MaxRefs.begin(); in buildPhis()
1504 MaxRefs.erase(Begin + ClosureIdx[i-1]); in buildPhis()