clang 22.0.0git
|
#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/JsonSupport.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/SmallPtrSet.h"
#include "llvm/ADT/iterator_range.h"
#include "llvm/Support/Allocator.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 *, std::unique_ptr<ManagedAnalysis>> |
using | DeclVec = BumpVector<const VarDecl *> |
Functions | |
static bool | isSelfDecl (const VarDecl *VD) |
Returns true if. | |
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. | |
static void | printLocation (raw_ostream &Out, const SourceManager &SM, SourceLocation Loc) |
static DeclVec * | LazyInitializeReferencedDecls (const BlockDecl *BD, void *&Vec, llvm::BumpPtrAllocator &A) |
using DeclVec = BumpVector<const VarDecl *> |
Definition at line 635 of file AnalysisDeclContext.cpp.
using ManagedAnalysisMap = llvm::DenseMap<const void *, std::unique_ptr<ManagedAnalysis>> |
Definition at line 51 of file AnalysisDeclContext.cpp.
Add each synthetic statement in the CFG to the parent map, using the source statement's parent.
Definition at line 200 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 142 of file AnalysisDeclContext.cpp.
References clang::NamedDecl::getName().
Referenced by clang::AnalysisDeclContext::getSelfDecl().
|
static |
Definition at line 637 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 486 of file AnalysisDeclContext.cpp.
References clang::SourceLocation::isFileID(), clang::SourceLocation::print(), and SM.
Referenced by clang::LocationContext::dumpStack().