Lines Matching refs:ConnectedSet
455 SmallPtrSet<SCCT *, 4> ConnectedSet; in updatePostorderSequenceForEdgeInsertion() local
458 ComputeSourceConnectedSet(ConnectedSet); in updatePostorderSequenceForEdgeInsertion()
465 [&ConnectedSet](SCCT *C) { return !ConnectedSet.count(C); }); in updatePostorderSequenceForEdgeInsertion()
471 if (!ConnectedSet.count(&TargetSCC)) { in updatePostorderSequenceForEdgeInsertion()
493 ConnectedSet.clear(); in updatePostorderSequenceForEdgeInsertion()
494 ComputeTargetConnectedSet(ConnectedSet); in updatePostorderSequenceForEdgeInsertion()
500 [&ConnectedSet](SCCT *C) { return ConnectedSet.count(C); }); in updatePostorderSequenceForEdgeInsertion()
553 auto ComputeSourceConnectedSet = [&](SmallPtrSetImpl<SCC *> &ConnectedSet) { in switchInternalEdgeToCall() argument
559 ConnectedSet.insert(&SourceSCC); in switchInternalEdgeToCall()
563 if (ConnectedSet.count(G->lookupSCC(E.getNode()))) in switchInternalEdgeToCall()
572 ConnectedSet.insert(C); in switchInternalEdgeToCall()
579 auto ComputeTargetConnectedSet = [&](SmallPtrSetImpl<SCC *> &ConnectedSet) { in switchInternalEdgeToCall() argument
585 ConnectedSet.insert(&TargetSCC); in switchInternalEdgeToCall()
602 if (ConnectedSet.insert(&EdgeC).second) in switchInternalEdgeToCall()