Home
last modified time | relevance | path

Searched refs:PostStmt (Results 1 – 25 of 30) sorted by relevance

12

/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DAnalysisOrderChecker.cpp32 check::PreStmt<CastExpr>, check::PostStmt<CastExpr>,
34 check::PostStmt<ArraySubscriptExpr>, check::PreStmt<CXXNewExpr>,
35 check::PostStmt<CXXNewExpr>, check::PreStmt<CXXDeleteExpr>,
36 check::PostStmt<CXXDeleteExpr>, check::PreStmt<CXXConstructExpr>,
37 check::PostStmt<CXXConstructExpr>, check::PreStmt<OffsetOfExpr>,
38 check::PostStmt<OffsetOfExpr>, check::PreCall, check::PostCall,
H A DUndefBranchChecker.cpp97 if (std::optional<PostStmt> PS = P.getAs<PostStmt>()) in checkBranchCondition()
H A DPointerArithChecker.cpp47 check::PostStmt<CastExpr>, check::PostStmt<CXXNewExpr>,
48 check::PostStmt<CallExpr>, check::DeadSymbols> {
H A DTaintTesterChecker.cpp25 class TaintTesterChecker : public Checker<check::PostStmt<Expr>> {
H A DBasicObjCFoundationChecks.cpp99 check::PostStmt<ObjCDictionaryLiteral>,
100 check::PostStmt<ObjCArrayLiteral> > {
809 : public Checker<check::PostStmt<ObjCForCollectionStmt>,
1143 check::PostStmt<ObjCArrayLiteral>,
1144 check::PostStmt<ObjCDictionaryLiteral>,
1145 check::PostStmt<ObjCBoxedExpr> > {
H A DTestAfterDivZeroChecker.cpp104 if (std::optional<PostStmt> P = Succ->getLocationAs<PostStmt>()) in REGISTER_SET_WITH_PROGRAMSTATE()
H A DUndefCapturedBlockVarChecker.cpp29 : public Checker< check::PostStmt<BlockExpr> > {
H A DCheckerDocumentation.cpp37 check::PostStmt<DeclStmt>,
H A DObjCContainersChecker.cpp31 check::PostStmt<CallExpr>,
H A DUndefResultChecker.cpp29 : public Checker< check::PostStmt<BinaryOperator> > {
H A DDynamicTypeChecker.cpp32 class DynamicTypeChecker : public Checker<check::PostStmt<ImplicitCastExpr>> {
H A DIteratorModeling.cpp87 : public Checker<check::PostCall, check::PostStmt<UnaryOperator>,
88 check::PostStmt<BinaryOperator>,
89 check::PostStmt<MaterializeTemporaryExpr>,
H A DObjCSelfInitChecker.cpp58 check::PostStmt<ObjCIvarRefExpr>,
H A DDynamicTypePropagation.cpp55 check::PostStmt<CastExpr>,
56 check::PostStmt<CXXNewExpr>,
H A DMacOSKeychainAPIChecker.cpp31 check::PostStmt<CallExpr>,
H A DNullabilityChecker.cpp82 check::PostCall, check::PostStmt<ExplicitCastExpr>,
/openbsd-src/gnu/llvm/clang/include/clang/Analysis/
H A DProgramPoint.h309 class PostStmt : public StmtPoint {
311 PostStmt() = default;
312 PostStmt(const Stmt *S, const void *data, Kind k, const LocationContext *L,
317 explicit PostStmt(const Stmt *S, Kind k, const LocationContext *L,
321 explicit PostStmt(const Stmt *S, const LocationContext *L,
357 class PostCondition : public PostStmt {
361 : PostStmt(S, PostConditionKind, L, tag) {} in PostStmt() function
414 class PostLoad : public PostStmt {
418 : PostStmt(S, PostLoadKind, L, tag) {} in PostStmt() function
429 class PostStore : public PostStmt {
[all …]
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountChecker.h243 check::PostStmt<BlockExpr>,
244 check::PostStmt<CastExpr>,
245 check::PostStmt<ObjCArrayLiteral>,
246 check::PostStmt<ObjCDictionaryLiteral>,
247 check::PostStmt<ObjCBoxedExpr>,
248 check::PostStmt<ObjCIvarRefExpr>,
/openbsd-src/gnu/llvm/clang/lib/Analysis/
H A DProgramPoint.cpp31 return PostStmt(S, LC, tag); in getProgramPoint()
218 else if (getAs<PostStmt>()) in printJson()
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DExplodedGraph.cpp106 if (!progPoint.getAs<PostStmt>() || progPoint.getAs<PostStore>()) in shouldCollect()
122 const Expr *Ex = dyn_cast<Expr>(progPoint.castAs<PostStmt>().getStmt()); in shouldCollect()
H A DBugReporterVisitors.cpp298 !N->getLocationAs<PostStmt>()) in wasRegionOfInterestModifiedAt()
302 if (auto PS = N->getLocationAs<PostStmt>()) in wasRegionOfInterestModifiedAt()
1243 std::optional<PostStmt> P = N->getLocationAs<PostStmt>(); in isInitializationOfVar()
1318 cast<DeclStmt>(SI.StoreSite->getLocationAs<PostStmt>()->getStmt()); in showBRDiagnostics()
1542 if (std::optional<PostStmt> P = Succ->getLocationAs<PostStmt>()) { in VisitNode()
1752 if (std::optional<PostStmt> PS = StoreSite->getLocationAs<PostStmt>()) { in VisitNode()
2443 while (ExprNode && ExprNode->getLocation().getAs<PostStmt>()) in handle()
2786 if (std::optional<PostStmt> PS = ProgPoint.getAs<PostStmt>()) { in VisitNodeImpl()
H A DCoreEngine.cpp214 assert(Loc.getAs<PostStmt>() || in dispatchWorkItem()
575 PostStmt Loc(CS.getStmt(), N->getLocationContext()); in enqueueStmtNode()
H A DCallEvent.cpp293 return PostStmt(E, getLocationContext(), Tag); in getProgramPoint()
H A DExprEngineCallAndReturn.cpp356 PostStmt Loc(LastSt, calleeCtx, &retValBind); in processCallExit()
/openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/
H A DChecker.h101 class PostStmt {

12