Lines Matching defs:Match
518 auto Match = llvm::find_if(
520 if (Match != Succ->Preds.end()) {
521 assert(Match->isArtificial());
522 Succ->removePred(*Match);
592 SchedGroup *Match = llvm::find_if(SyncPipeline, [CandSGID](SchedGroup &SG) {
595 assert(Match);
598 if (Match->isFull()) {
655 SchedGroup *Match;
658 Match = &SG;
661 if (Match->isFull())
664 if (!Match->allowedByRules(CurrSU.first, SyncPipeline))
668 << (int)Match->getMask() << "and ID " << CandSGID
670 Match->add(*CurrSU.first);
690 Match->pop();
737 SchedGroup *Match = llvm::find_if(SyncPipeline, [CandSGID](SchedGroup &SG) {
740 assert(Match);
743 << (int)Match->getMask() << "\n");
745 if (Match->isFull()) {
749 if (!Match->allowedByRules(CurrSU.first, SyncPipeline)) {
756 BestGroup = Match;