Lines Matching refs:ConnectedSet
524 SmallPtrSet<SCCT *, 4> ConnectedSet; in updatePostorderSequenceForEdgeInsertion() local
527 ComputeSourceConnectedSet(ConnectedSet); in updatePostorderSequenceForEdgeInsertion()
534 [&ConnectedSet](SCCT *C) { return !ConnectedSet.count(C); }); in updatePostorderSequenceForEdgeInsertion()
540 if (!ConnectedSet.count(&TargetSCC)) { in updatePostorderSequenceForEdgeInsertion()
562 ConnectedSet.clear(); in updatePostorderSequenceForEdgeInsertion()
563 ComputeTargetConnectedSet(ConnectedSet); in updatePostorderSequenceForEdgeInsertion()
569 [&ConnectedSet](SCCT *C) { return ConnectedSet.count(C); }); in updatePostorderSequenceForEdgeInsertion()
620 auto ComputeSourceConnectedSet = [&](SmallPtrSetImpl<SCC *> &ConnectedSet) { in switchInternalEdgeToCall() argument
626 ConnectedSet.insert(&SourceSCC); in switchInternalEdgeToCall()
630 if (ConnectedSet.count(G->lookupSCC(E.getNode()))) in switchInternalEdgeToCall()
639 ConnectedSet.insert(C); in switchInternalEdgeToCall()
646 auto ComputeTargetConnectedSet = [&](SmallPtrSetImpl<SCC *> &ConnectedSet) { in switchInternalEdgeToCall() argument
652 ConnectedSet.insert(&TargetSCC); in switchInternalEdgeToCall()
669 if (ConnectedSet.insert(&EdgeC).second) in switchInternalEdgeToCall()