Lines Matching refs:ConnectedSet
525 SmallPtrSet<SCCT *, 4> ConnectedSet; in updatePostorderSequenceForEdgeInsertion() local
528 ComputeSourceConnectedSet(ConnectedSet); in updatePostorderSequenceForEdgeInsertion()
535 [&ConnectedSet](SCCT *C) { return !ConnectedSet.count(C); }); in updatePostorderSequenceForEdgeInsertion()
541 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()
619 auto ComputeSourceConnectedSet = [&](SmallPtrSetImpl<SCC *> &ConnectedSet) { in switchInternalEdgeToCall() argument
625 ConnectedSet.insert(&SourceSCC); in switchInternalEdgeToCall()
629 if (ConnectedSet.count(G->lookupSCC(E.getNode()))) in switchInternalEdgeToCall()
638 ConnectedSet.insert(C); in switchInternalEdgeToCall()
645 auto ComputeTargetConnectedSet = [&](SmallPtrSetImpl<SCC *> &ConnectedSet) { in switchInternalEdgeToCall() argument
651 ConnectedSet.insert(&TargetSCC); in switchInternalEdgeToCall()
668 if (ConnectedSet.insert(&EdgeC).second) in switchInternalEdgeToCall()