Home
last modified time | relevance | path

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

/external/clang/examples/wpa/
Dclang-wpa.cpp162 AnalysisManager AMgr(TU->getASTContext(), PP.getDiagnostics(), in main() local
174 TransferFuncs* TF = MakeCFRefCountTF(AMgr.getASTContext(), /*GC*/false, in main()
175 AMgr.getLangOptions()); in main()
176 ExprEngine Eng(AMgr, TF); in main()
178 Eng.ExecuteWorkList(AMgr.getStackFrame(FD, TU), AMgr.getMaxNodes()); in main()
/external/clang/lib/StaticAnalyzer/Core/
DCXXExprEngine.cpp135 if (!(CD->doesThisDeclarationHaveABody() && AMgr.shouldInlineCall())) in VisitCXXConstructExpr()
168 if (AMgr.shouldInlineCall()) { in VisitCXXConstructExpr()
177 AMgr.getStackFrame(CD, Pred->getLocationContext(), in VisitCXXConstructExpr()
249 if (!(DD->doesThisDeclarationHaveABody() && AMgr.shouldInlineCall())) in VisitCXXDestructor()
252 const StackFrameContext *SFC = AMgr.getStackFrame(DD, in VisitCXXDestructor()
DCoreEngine.cpp791 AnalysisManager AMgr(TU->getASTContext(), TU->getDiagnostic(), in generateNode() local
809 llvm::OwningPtr<TransferFuncs> TF(MakeCFRefCountTF(AMgr.getASTContext(), in generateNode()
811 AMgr.getLangOptions())); in generateNode()
813 ExprEngine NewEng(AMgr, TF.take()); in generateNode()
816 AnalysisContext *NewAnaCtx = AMgr.getAnalysisContext(CalleeCtx->getDecl(), in generateNode()
819 const StackFrameContext *NewLocCtx = AMgr.getStackFrame(NewAnaCtx, in generateNode()
829 NewEng.ExecuteWorkListWithInitialState(NewLocCtx, AMgr.getMaxNodes(), in generateNode()
DExprEngine.cpp66 : AMgr(mgr), in ExprEngine()
252 if (AMgr.shouldPurgeDead()) { in ProcessStmt()
605 if (AMgr.shouldEagerlyAssume() && in Visit()
788 if (AMgr.shouldEagerlyAssume()&&(U->getOpcode() == UO_LNot)) { in Visit()
813 block->getBlockID()) >= AMgr.getMaxVisit()) { in processCFGBlockEntrance()
1648 AMgr.getStackFrame(AMgr.getAnalysisContext(FD), in InlineCall()
1660 if (AMgr.hasIndexer()) { in InlineCall()
1661 AnalysisContext *C = AMgr.getAnalysisContextInAnotherTU(FD); in InlineCall()
1665 AMgr.getStackFrame(C, Pred->getLocationContext(), in InlineCall()
2344 if (AMgr.getLangOptions().CPlusPlus && VD->getType()->isRecordType() && in VisitDeclStmt()
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DExprEngine.h40 AnalysisManager &AMgr; variable
103 ASTContext& getContext() const { return AMgr.getASTContext(); } in getContext()
105 virtual AnalysisManager &getAnalysisManager() { return AMgr; } in getAnalysisManager()
108 return *AMgr.getCheckerManager(); in getCheckerManager()