Home | History | Annotate | Download | only in Frontend

Lines Matching defs:Mgr

175   std::unique_ptr<AnalysisManager> Mgr;
247 SourceManager &SM = Mgr->getASTContext().getSourceManager();
289 Mgr.reset(new AnalysisManager(*Ctx,
340 checkerMgr->runCheckersOnASTDecl(D, *Mgr, *RecVisitorBR);
353 assert(RecVisitorMode == AM_Syntax || Mgr->shouldInlineCall() == false);
361 assert(RecVisitorMode == AM_Syntax || Mgr->shouldInlineCall() == false);
369 assert(RecVisitorMode == AM_Syntax || Mgr->shouldInlineCall() == false);
492 (Mgr->options.InliningMode == All ? nullptr : &VisitedCallees));
512 // Introduce a scope to destroy BR before Mgr.
513 BugReporter BR(*Mgr);
515 checkerMgr->runCheckersOnASTDecl(TU, *Mgr, BR);
521 if (!Mgr->shouldInlineCall())
536 if (Mgr->shouldInlineCall())
540 checkerMgr->runCheckersOnEndOfTranslationUnit(TU, *Mgr, BR);
549 Mgr.reset(nullptr);
606 CFG *DeclCFG = Mgr->getCFG(D);
613 Mgr->ClearContexts();
614 BugReporter BR(*Mgr);
617 checkerMgr->runCheckersOnASTBody(D, *Mgr, BR);
634 if (!Mgr->getCFG(D))
638 if (!Mgr->getAnalysisDeclContext(D)->getAnalysis<RelaxedLiveVariables>())
641 ExprEngine Eng(*Mgr, ObjCGCEnabled, VisitedCallees, &FunctionSummaries,IMode);
645 if (Mgr->options.visualizeExplodedGraphWithUbiGraph) {
651 Eng.ExecuteWorkList(Mgr->getAnalysisDeclContextManager().getStackFrame(D),
652 Mgr->options.getMaxNodesPerTopLevelFunction());
659 if (Mgr->options.visualizeExplodedGraphWithGraphViz)
660 Eng.ViewGraph(Mgr->options.TrimGraph);
670 switch (Mgr->getLangOpts().getGC()) {