/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | AnalysisManager.h | 108 CFG *getCFG(Decl const *D) { in getCFG() function 109 return AnaCtxMgr.getContext(D)->getCFG(); in getCFG()
|
H A D | ExplodedGraph.h | 157 CFG &getCFG() const { return *getLocationContext()->getCFG(); } in getCFG() function
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | AnalysisDeclContext.cpp | 213 CFG *AnalysisDeclContext::getCFG() { in getCFG() function in AnalysisDeclContext 254 if (CFG *c = getCFG()) { in getCFGStmtMap() 266 if (CFG *c = getCFG()) { in getCFGReachablityAnalysis() 275 getCFG()->dump(getASTContext().getLangOpts(), ShowColors); in dumpCFG() 287 addParentsForSyntheticStmts(getCFG(), *PM); in getParentMap()
|
H A D | PostOrderCFGView.cpp | 34 const CFG *cfg = ctx.getCFG(); in create()
|
H A D | LiveVariables.cpp | 511 const CFG *cfg = getImpl(impl).analysisContext.getCFG(); in runOnAllBlocks() 526 CFG *cfg = AC.getCFG(); in computeLiveness() 630 for (const CFGBlock *B : *analysisContext.getCFG()) { in dumpExprLiveness()
|
H A D | ReachableCode.cpp | 736 CFG *cfg = AC.getCFG(); in FindUnreachableCode()
|
H A D | CalledOnceCheck.cpp | 614 : FunctionCFG(*AC.getCFG()), AC(AC), Handler(Handler), in CalledOnceChecker()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | CoreEngine.cpp | 93 const CFGBlock *Entry = &(L->getCFG()->getEntry()); in ExecuteWorkList() 102 L->getCFG()->getNumBlockIDs()); in ExecuteWorkList() 233 LC->getCFG()->getNumBlockIDs()); in HandleBlockEdge() 256 if (Blk == &(L.getLocationContext()->getCFG()->getExit())) { in HandleBlockEdge() 257 assert(L.getLocationContext()->getCFG()->getExit().empty() && in HandleBlockEdge()
|
H A D | ExprEngineCallAndReturn.cpp | 444 const CFG *Cfg = ADC->getCFG(); in isSmall() 449 const CFG *Cfg = ADC->getCFG(); in isLarge() 454 const CFG *Cfg = ADC->getCFG(); in isHuge() 1055 const CFG *CalleeCFG = CalleeADC->getCFG(); in mayInlineDecl()
|
H A D | BugReporterVisitors.cpp | 502 if (!N->getStackFrame()->getCFG()->isLinear()) { in VisitNode() 1108 if (N->getCFG().size() == 3) in visitNodeInitial() 2007 ControlDeps(&O->getCFG()) {} in TrackControlDependencyCondBRVisitor()
|
H A D | BugReporter.cpp | 2403 CFGBlock &Exit = ProgP.getLocationContext()->getCFG()->getExit(); in getStmt()
|
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/ |
H A D | AnalysisDeclContext.h | 152 CFG *getCFG(); 253 CFG *getCFG() const { return Ctx->getCFG(); } in getCFG() function
|
H A D | ProgramPoint.h | 338 return &getLocationContext()->getCFG()->getExit(); in getBlock() 645 const CFG *CalleeCFG = CalleeCtx->getCFG(); in getEntry()
|
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/ |
H A D | AdornedCFG.h | 49 const CFG &getCFG() const { return *Cfg; } in getCFG() function
|
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/ |
H A D | ThreadSafetyCommon.h | 155 CFGraph = AC.getCFG(); in init() 406 const til::SCFG *getCFG() const { return Scfg; } in getCFG() function 407 til::SCFG *getCFG() { return Scfg; } in getCFG() function
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
H A D | TypeErasedDataflowAnalysis.cpp | 123 ACFG.getCFG().print(OS, LangOptions(), false); in print() 488 const clang::CFG &CFG = ACFG.getCFG(); in runTypeErasedDataflowAnalysis() 559 for (const CFGBlock *Block : ACFG.getCFG()) { in runTypeErasedDataflowAnalysis()
|
H A D | HTMLLogger.cpp | 185 BlockConverged.resize(ACFG.getCFG().getNumBlockIDs()); in beginAnalysis() 423 for (const auto *Block : ACFG->getCFG()) { in writeCode() 484 if (auto SVG = renderSVG(buildCFGDot(ACFG->getCFG()))) in writeCFG()
|
H A D | Logger.cpp | 46 CurrentCFG = &ACFG.getCFG(); in beginAnalysis()
|
H A D | Transfer.cpp | 863 auto ExitBlock = ACFG->getCFG().getExit().getBlockID(); in transferInlineCall()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | AnalyzerStatsChecker.cpp | 70 C = LC->getCFG(); in checkEndAnalysis()
|
H A D | MallocOverflowSecurityChecker.cpp | 297 CFG *cfg = mgr.getCFG(D); in checkASTCodeBody()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | AnalysisBasedWarnings.cpp | 292 CFG *cfg = AC.getCFG(); in checkRecursiveFunction() 387 CFG *BodyCFG = AC.getCFG(); in checkThrowInNonThrowingFunc() 427 CFG *cfg = AC.getCFG(); in CheckFallThrough() 1293 CFG *Cfg = AC.getCFG(); in DiagnoseSwitchLabelsFallthrough() 2639 if (AC.getCFG()) { in IssueWarnings() 2652 if (!cra->isReachable(&AC.getCFG()->getEntry(), block)) { in IssueWarnings() 2724 if (CFG *cfg = AC.getCFG()) { in IssueWarnings() 2748 if (AC.getCFG()) { in IssueWarnings() 2787 AC.getCFG(); in IssueWarnings() 2793 if (CFG *cfg = AC.getCFG()) { in IssueWarnings()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/ |
H A D | AnalysisConsumer.cpp | 673 CFG *DeclCFG = Mgr->getCFG(D); in HandleCode() 714 if (!Mgr->getCFG(D)) in RunPathSensitiveChecks()
|