Lines Matching refs:ConnectedSet
517 SmallPtrSet<SCCT *, 4> ConnectedSet; in updatePostorderSequenceForEdgeInsertion() local
520 ComputeSourceConnectedSet(ConnectedSet); in updatePostorderSequenceForEdgeInsertion()
527 [&ConnectedSet](SCCT *C) { return !ConnectedSet.count(C); }); in updatePostorderSequenceForEdgeInsertion()
533 if (!ConnectedSet.count(&TargetSCC)) { in updatePostorderSequenceForEdgeInsertion()
554 ConnectedSet.clear(); in updatePostorderSequenceForEdgeInsertion()
555 ComputeTargetConnectedSet(ConnectedSet); in updatePostorderSequenceForEdgeInsertion()
561 [&ConnectedSet](SCCT *C) { return ConnectedSet.count(C); }); in updatePostorderSequenceForEdgeInsertion()
611 auto ComputeSourceConnectedSet = [&](SmallPtrSetImpl<SCC *> &ConnectedSet) { in switchInternalEdgeToCall() argument
617 ConnectedSet.insert(&SourceSCC); in switchInternalEdgeToCall()
621 if (ConnectedSet.count(G->lookupSCC(E.getNode()))) in switchInternalEdgeToCall()
630 ConnectedSet.insert(C); in switchInternalEdgeToCall()
637 auto ComputeTargetConnectedSet = [&](SmallPtrSetImpl<SCC *> &ConnectedSet) { in switchInternalEdgeToCall() argument
643 ConnectedSet.insert(&TargetSCC); in switchInternalEdgeToCall()
660 if (ConnectedSet.insert(&EdgeC).second) in switchInternalEdgeToCall()