diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-09-11 04:13:42 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-09-11 04:13:42 +0000 |
commit | 66847a2826c97b8e09aec304a0a7b4fe1dc35969 (patch) | |
tree | f4910d73e871736b40d97210223ce21988e3928e | |
parent | cce6ebc4edde2a9468daabc2b5d18bd2e9b6219e (diff) |
Start to add a new transfer function that inlines callee. To be continued.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@81501 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Analysis/PathSensitive/GRTransferFuncs.h | 2 | ||||
-rw-r--r-- | include/clang/Frontend/Analyses.def | 4 | ||||
-rw-r--r-- | lib/Analysis/CallInliner.cpp | 41 | ||||
-rw-r--r-- | lib/Frontend/AnalysisConsumer.cpp | 22 |
4 files changed, 69 insertions, 0 deletions
diff --git a/include/clang/Analysis/PathSensitive/GRTransferFuncs.h b/include/clang/Analysis/PathSensitive/GRTransferFuncs.h index a3bb8bad84..5f7b2cb0e3 100644 --- a/include/clang/Analysis/PathSensitive/GRTransferFuncs.h +++ b/include/clang/Analysis/PathSensitive/GRTransferFuncs.h @@ -81,6 +81,8 @@ public: } }; +GRTransferFuncs *CreateCallInliner(ASTContext &ctx); + } // end clang namespace #endif diff --git a/include/clang/Frontend/Analyses.def b/include/clang/Frontend/Analyses.def index 173ed135fc..d5e408020a 100644 --- a/include/clang/Frontend/Analyses.def +++ b/include/clang/Frontend/Analyses.def @@ -48,6 +48,10 @@ ANALYSIS(WarnObjCUnusedIvars, "warn-objc-unused-ivars", ANALYSIS(CheckerCFRef, "checker-cfref", "Run the [Core] Foundation reference count checker", Code) +ANALYSIS(InlineCall, "inline-call", + "Experimental transfer function inling callees when its definition" + " is available.", TranslationUnit) + #ifndef ANALYSIS_STORE #define ANALYSIS_STORE(NAME, CMDFLAG, DESC, CREATFN) #endif diff --git a/lib/Analysis/CallInliner.cpp b/lib/Analysis/CallInliner.cpp new file mode 100644 index 0000000000..344d14d4bb --- /dev/null +++ b/lib/Analysis/CallInliner.cpp @@ -0,0 +1,41 @@ +//===--- CallInliner.cpp - Transfer function that inlines callee ----------===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// This file implements the callee inlining transfer function. +// +//===----------------------------------------------------------------------===// + +#include "clang/Analysis/PathSensitive/GRTransferFuncs.h" + +using namespace clang; + +namespace { + +class VISIBILITY_HIDDEN CallInliner : public GRTransferFuncs { + ASTContext &Ctx; +public: + CallInliner(ASTContext &ctx) : Ctx(ctx) {} + + void EvalCall(ExplodedNodeSet& Dst, GRExprEngine& Engine, + GRStmtNodeBuilder& Builder, CallExpr* CE, SVal L, + ExplodedNode* Pred); + +}; + +} + +void CallInliner::EvalCall(ExplodedNodeSet& Dst, GRExprEngine& Engine, + GRStmtNodeBuilder& Builder, CallExpr* CE, SVal L, + ExplodedNode* Pred) { + assert(0 && "TO BE IMPLEMENTED"); +} + +GRTransferFuncs *clang::CreateCallInliner(ASTContext &ctx) { + return new CallInliner(ctx); +} diff --git a/lib/Frontend/AnalysisConsumer.cpp b/lib/Frontend/AnalysisConsumer.cpp index 67328da661..034ff93f41 100644 --- a/lib/Frontend/AnalysisConsumer.cpp +++ b/lib/Frontend/AnalysisConsumer.cpp @@ -412,6 +412,28 @@ static void ActionWarnObjCMethSigs(AnalysisManager& mgr, Decl *D) { CheckObjCInstMethSignature(cast<ObjCImplementationDecl>(D), BR); } +static void ActionInlineCall(AnalysisManager &mgr, Decl *D) { + if (!D) + return; + + llvm::OwningPtr<GRTransferFuncs> TF(CreateCallInliner(mgr.getASTContext())); + + // Construct the analysis engine. + GRExprEngine Eng(mgr); + + Eng.setTransferFunctions(TF.get()); + + Eng.RegisterInternalChecks(); + RegisterAppleChecks(Eng, *D); + + // Execute the worklist algorithm. + Eng.ExecuteWorkList(mgr.getStackFrame(D)); + + // Visualize the exploded graph. + if (mgr.shouldVisualizeGraphviz()) + Eng.ViewGraph(mgr.shouldTrimGraph()); +} + //===----------------------------------------------------------------------===// // AnalysisConsumer creation. //===----------------------------------------------------------------------===// |