clang
8.0.0
|
#include "clang/Analysis/AnalysisDeclContext.h"
#include "clang/AST/ASTContext.h"
#include "clang/AST/Decl.h"
#include "clang/AST/DeclBase.h"
#include "clang/AST/DeclCXX.h"
#include "clang/AST/DeclObjC.h"
#include "clang/AST/DeclTemplate.h"
#include "clang/AST/Expr.h"
#include "clang/AST/LambdaCapture.h"
#include "clang/AST/ParentMap.h"
#include "clang/AST/PrettyPrinter.h"
#include "clang/AST/Stmt.h"
#include "clang/AST/StmtCXX.h"
#include "clang/AST/StmtVisitor.h"
#include "clang/Analysis/Analyses/CFGReachabilityAnalysis.h"
#include "clang/Analysis/BodyFarm.h"
#include "clang/Analysis/CFG.h"
#include "clang/Analysis/CFGStmtMap.h"
#include "clang/Analysis/Support/BumpVector.h"
#include "clang/Basic/LLVM.h"
#include "clang/Basic/SourceLocation.h"
#include "clang/Basic/SourceManager.h"
#include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/FoldingSet.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/SmallPtrSet.h"
#include "llvm/ADT/iterator_range.h"
#include "llvm/Support/Allocator.h"
#include "llvm/Support/Casting.h"
#include "llvm/Support/Compiler.h"
#include "llvm/Support/ErrorHandling.h"
#include "llvm/Support/SaveAndRestore.h"
#include "llvm/Support/raw_ostream.h"
#include <cassert>
#include <memory>
Go to the source code of this file.
Typedefs | |
using | ManagedAnalysisMap = llvm::DenseMap< const void *, ManagedAnalysis * > |
using | DeclVec = BumpVector< const VarDecl * > |
Functions | |
static bool | isSelfDecl (const VarDecl *VD) |
Returns true if. More... | |
static void | addParentsForSyntheticStmts (const CFG *TheCFG, ParentMap &PM) |
Add each synthetic statement in the CFG to the parent map, using the source statement's parent. More... | |
static void | printLocation (raw_ostream &OS, const SourceManager &SM, SourceLocation SLoc) |
static DeclVec * | LazyInitializeReferencedDecls (const BlockDecl *BD, void *&Vec, llvm::BumpPtrAllocator &A) |
using DeclVec = BumpVector<const VarDecl *> |
Definition at line 572 of file AnalysisDeclContext.cpp.
using ManagedAnalysisMap = llvm::DenseMap<const void *, ManagedAnalysis *> |
Definition at line 53 of file AnalysisDeclContext.cpp.
Add each synthetic statement in the CFG to the parent map, using the source statement's parent.
Definition at line 201 of file AnalysisDeclContext.cpp.
References clang::ParentMap::getParent(), clang::ParentMap::setParent(), clang::CFG::synthetic_stmt_begin(), and clang::CFG::synthetic_stmt_end().
Referenced by clang::AnalysisDeclContext::getCFG(), clang::AnalysisDeclContext::getParentMap(), and clang::AnalysisDeclContext::getUnoptimizedCFG().
Returns true if.
VD | is an Objective-C implicit 'self' parameter. |
Definition at line 143 of file AnalysisDeclContext.cpp.
References clang::NamedDecl::getName().
Referenced by clang::AnalysisDeclContext::getSelfDecl().
|
static |
Definition at line 574 of file AnalysisDeclContext.cpp.
References clang::BlockDecl::captures(), clang::BlockDecl::getBody(), and clang::BumpVector< T >::push_back().
Referenced by clang::AnalysisDeclContext::getReferencedBlockVars().
|
static |
Definition at line 466 of file AnalysisDeclContext.cpp.
References clang::SourceManager::getExpansionLineNumber(), clang::SourceLocation::isFileID(), clang::SourceManager::isInMainFile(), and clang::SourceLocation::print().