Home
last modified time | relevance | path

Searched refs:SCCI (Results 1 – 5 of 5) sorted by relevance

/external/llvm-project/llvm/tools/opt/
DPrintSCC.cpp76 for (scc_iterator<Function*> SCCI = scc_begin(&F); !SCCI.isAtEnd(); ++SCCI) { in runOnFunction() local
77 const std::vector<BasicBlock *> &nextSCC = *SCCI; in runOnFunction()
83 if (nextSCC.size() == 1 && SCCI.hasCycle()) in runOnFunction()
97 for (scc_iterator<CallGraph*> SCCI = scc_begin(&CG); !SCCI.isAtEnd(); in runOnModule() local
98 ++SCCI) { in runOnModule()
99 const std::vector<CallGraphNode*> &nextSCC = *SCCI; in runOnModule()
105 if (nextSCC.size() == 1 && SCCI.hasCycle()) in runOnModule()
/external/llvm/tools/opt/
DPrintSCC.cpp77 for (scc_iterator<Function*> SCCI = scc_begin(&F); !SCCI.isAtEnd(); ++SCCI) { in runOnFunction() local
78 const std::vector<BasicBlock *> &nextSCC = *SCCI; in runOnFunction()
83 if (nextSCC.size() == 1 && SCCI.hasLoop()) in runOnFunction()
97 for (scc_iterator<CallGraph*> SCCI = scc_begin(&CG); !SCCI.isAtEnd(); in runOnModule() local
98 ++SCCI) { in runOnModule()
99 const std::vector<CallGraphNode*> &nextSCC = *SCCI; in runOnModule()
105 if (nextSCC.size() == 1 && SCCI.hasLoop()) in runOnModule()
/external/llvm-project/clang-tools-extra/clang-tidy/misc/
DNoRecursionCheck.cpp264 for (llvm::scc_iterator<CallGraph *> SCCI = llvm::scc_begin(&CG), in check() local
266 SCCI != SCCE; ++SCCI) { in check()
267 if (!SCCI.hasCycle()) // We only care about cycles, not standalone nodes. in check()
269 handleSCC(*SCCI); in check()
/external/llvm-project/llvm/lib/Transforms/Scalar/
DStructurizeCFG.cpp386 for (auto SCCI = in INITIALIZE_PASS_DEPENDENCY() local
389 !SCCI.isAtEnd(); ++SCCI) { in INITIALIZE_PASS_DEPENDENCY()
390 auto &SCC = *SCCI; in INITIALIZE_PASS_DEPENDENCY()
/external/llvm-project/llvm/lib/Transforms/IPO/
DAttributorAttributes.cpp2258 for (scc_iterator<Function *> SCCI = scc_begin(&F); !SCCI.isAtEnd(); ++SCCI) in mayContainUnboundedCycle() local
2259 if (SCCI.hasCycle()) in mayContainUnboundedCycle()