Home
last modified time | relevance | path

Searched refs:MergedSCCs (Results 1 – 4 of 4) sorted by relevance

/external/llvm/lib/Analysis/
DLazyCallGraph.cpp838 SmallVector<SCC *, 16> MergedSCCs; in insertIncomingRefEdge() local
873 if (MergedSCCs.empty()) in insertIncomingRefEdge()
874 MergedSCCs = std::move(C->SCCs); in insertIncomingRefEdge()
876 MergedSCCs.append(C->SCCs.begin(), C->SCCs.end()); in insertIncomingRefEdge()
884 MergedSCCs.append(SCCs.begin(), SCCs.end()); in insertIncomingRefEdge()
885 SCCs = std::move(MergedSCCs); in insertIncomingRefEdge()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DLazyCallGraph.cpp1042 SmallVector<SCC *, 16> MergedSCCs; in insertIncomingRefEdge() local
1061 if (MergedSCCs.empty()) in insertIncomingRefEdge()
1062 MergedSCCs = std::move(RC->SCCs); in insertIncomingRefEdge()
1064 MergedSCCs.append(RC->SCCs.begin(), RC->SCCs.end()); in insertIncomingRefEdge()
1072 MergedSCCs.append(SCCs.begin(), SCCs.end()); in insertIncomingRefEdge()
1073 SCCs = std::move(MergedSCCs); in insertIncomingRefEdge()
DCGSCCPassManager.cpp611 N, *CallTarget, [&](ArrayRef<SCC *> MergedSCCs) { in updateCGAndAnalysisManagerForFunctionPass() argument
612 for (SCC *MergedC : MergedSCCs) { in updateCGAndAnalysisManagerForFunctionPass()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
DLazyCallGraph.h698 function_ref<void(ArrayRef<SCC *> MergedSCCs)> MergeCB = {});