Home
last modified time | relevance | path

Searched refs:ConnectedSet (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/Analysis/
DLazyCallGraph.cpp341 SmallPtrSet<SCC *, 4> ConnectedSet; in switchInternalEdgeToCall() local
344 ConnectedSet.insert(&SourceSCC); in switchInternalEdgeToCall()
349 if (ConnectedSet.count(G->lookupSCC(*E.getNode()))) in switchInternalEdgeToCall()
359 ConnectedSet.insert(C); in switchInternalEdgeToCall()
366 [&ConnectedSet](SCC *C) { return !ConnectedSet.count(C); }); in switchInternalEdgeToCall()
372 if (!ConnectedSet.count(&TargetSCC)) { in switchInternalEdgeToCall()
401 ConnectedSet.clear(); in switchInternalEdgeToCall()
402 ConnectedSet.insert(&TargetSCC); in switchInternalEdgeToCall()
420 if (ConnectedSet.insert(&EdgeC).second) in switchInternalEdgeToCall()
429 [&ConnectedSet](SCC *C) { return ConnectedSet.count(C); }); in switchInternalEdgeToCall()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DLazyCallGraph.cpp455 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()
[all …]