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()
563 ConnectedSet.clear(); in updatePostorderSequenceForEdgeInsertion()
564 ComputeTargetConnectedSet(ConnectedSet); in updatePostorderSequenceForEdgeInsertion()
570 [&ConnectedSet](SCCT *C) { return ConnectedSet.count(C); }); in updatePostorderSequenceForEdgeInsertion()
621 auto ComputeSourceConnectedSet = [&](SmallPtrSetImpl<SCC *> &ConnectedSet) { in switchInternalEdgeToCall() argument
627 ConnectedSet.insert(&SourceSCC); in switchInternalEdgeToCall()
631 if (ConnectedSet.count(G->lookupSCC(E.getNode()))) in switchInternalEdgeToCall()
640 ConnectedSet.insert(C); in switchInternalEdgeToCall()
647 auto ComputeTargetConnectedSet = [&](SmallPtrSetImpl<SCC *> &ConnectedSet) { in switchInternalEdgeToCall() argument
653 ConnectedSet.insert(&TargetSCC); in switchInternalEdgeToCall()
670 if (ConnectedSet.insert(&EdgeC).second) in switchInternalEdgeToCall()