Home
last modified time | relevance | path

Searched refs:CFGElement (Results 1 – 19 of 19) sorted by relevance

/external/clang/include/clang/Analysis/
DCFG.h53 class CFGElement {
75 CFGElement(Kind kind, const void *Ptr1, const void *Ptr2 = nullptr)
81 CFGElement() {} in CFGElement() function
90 CFGElement& e = t; in castAs()
102 CFGElement& e = t; in getAs()
115 class CFGStmt : public CFGElement {
117 CFGStmt(Stmt *S) : CFGElement(Statement, S) {} in CFGStmt()
124 friend class CFGElement;
126 static bool isKind(const CFGElement &E) { in isKind()
133 class CFGInitializer : public CFGElement {
[all …]
DProgramPoint.h205 Optional<CFGElement> getFirstElement() const { in getFirstElement()
207 return B->empty() ? Optional<CFGElement>() : B->front(); in getFirstElement()
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DSubEngine.h23 class CFGElement; variable
56 virtual void processCFGElement(const CFGElement E, ExplodedNode* Pred,
DExprEngine.h194 void processCFGElement(const CFGElement E, ExplodedNode *Pred,
620 Optional<CFGElement> findElementDirectlyInitializedByCurrentConstructor();
/external/clang/lib/StaticAnalyzer/Core/
DExprEngineCXX.cpp161 static bool canHaveDirectConstructor(CFGElement Elem){ in canHaveDirectConstructor()
170 if (Elem.getKind() == CFGElement::Initializer) { in canHaveDirectConstructor()
177 Optional<CFGElement>
188 CFGElement Next = (*B)[NextStmtIdx]; in findElementDirectlyInitializedByCurrentConstructor()
217 CFGElement Previous = (*B)[PreviousStmtIdx]; in findDirectConstructorForCurrentCFGElement()
DPathDiagnostic.cpp546 CFGElement Source = Block[SFC->getIndex()]; in getLocationForCaller()
549 case CFGElement::Statement: in getLocationForCaller()
552 case CFGElement::Initializer: { in getLocationForCaller()
557 case CFGElement::AutomaticObjectDtor: { in getLocationForCaller()
562 case CFGElement::DeleteDtor: { in getLocationForCaller()
566 case CFGElement::BaseDtor: in getLocationForCaller()
567 case CFGElement::MemberDtor: { in getLocationForCaller()
573 case CFGElement::TemporaryDtor: in getLocationForCaller()
574 case CFGElement::NewAllocator: in getLocationForCaller()
DExprEngine.cpp288 void ExprEngine::processCFGElement(const CFGElement E, ExplodedNode *Pred, in processCFGElement()
295 case CFGElement::Statement: in processCFGElement()
298 case CFGElement::Initializer: in processCFGElement()
301 case CFGElement::NewAllocator: in processCFGElement()
305 case CFGElement::AutomaticObjectDtor: in processCFGElement()
306 case CFGElement::DeleteDtor: in processCFGElement()
307 case CFGElement::BaseDtor: in processCFGElement()
308 case CFGElement::MemberDtor: in processCFGElement()
309 case CFGElement::TemporaryDtor: in processCFGElement()
547 case CFGElement::AutomaticObjectDtor: in ProcessImplicitDtor()
[all …]
DCoreEngine.cpp335 if (Optional<CFGElement> E = L.getFirstElement()) { in HandleBlockEntrance()
552 if ((*Block)[Idx].getKind() == CFGElement::NewAllocator) { in enqueueStmtNode()
DCallEvent.cpp1017 CFGElement E = (*B)[CalleeCtx->getIndex()]; in getCaller()
DExprEngineC.cpp691 for (CFGElement CE : llvm::reverse(*SrcBlock)) { in VisitGuardedExpr()
DBugReporter.cpp1545 Optional<CFGElement> First = BE->getFirstElement(); in GenerateExtensivePathDiagnostic()
/external/clang/lib/Analysis/
DCFGStmtMap.cpp52 const CFGElement &CE = *I; in Accumulate()
DCFG.cpp3865 case CFGElement::Statement: in getDestructorDecl()
3866 case CFGElement::Initializer: in getDestructorDecl()
3867 case CFGElement::NewAllocator: in getDestructorDecl()
3870 case CFGElement::AutomaticObjectDtor: { in getDestructorDecl()
3882 case CFGElement::DeleteDtor: { in getDestructorDecl()
3890 case CFGElement::TemporaryDtor: { in getDestructorDecl()
3896 case CFGElement::BaseDtor: in getDestructorDecl()
3897 case CFGElement::MemberDtor: in getDestructorDecl()
4188 const CFGElement &E) { in print_elem()
DConsumed.cpp1380 case CFGElement::Statement: in run()
1384 case CFGElement::TemporaryDtor: { in run()
1395 case CFGElement::AutomaticObjectDtor: { in run()
DThreadSafety.cpp739 case CFGElement::Statement: { in traverseCFG()
2074 CFGElement Last = B->back(); in neverReturns()
2299 case CFGElement::Statement: { in runAnalysis()
2305 case CFGElement::AutomaticObjectDtor: { in runAnalysis()
DLiveVariables.cpp454 const CFGElement &elem = *it; in runOnBlock()
/external/clang/lib/StaticAnalyzer/Checkers/
DAnalyzerStatsChecker.cpp125 const CFGElement &CE = Exit->front(); in checkEndAnalysis()
/external/clang/include/clang/Analysis/Analyses/
DThreadSafetyCommon.h189 case CFGElement::Statement: { in walk()
193 case CFGElement::AutomaticObjectDtor: { in walk()
/external/clang/lib/Sema/
DAnalysisBasedWarnings.cpp171 if (B.getKind() != CFGElement::Statement) in hasRecursiveCallInPath()