Home
last modified time | relevance | path

Searched refs:StoreE (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DUndefinedAssignmentChecker.cpp36 const Stmt *StoreE, in checkBind() argument
65 while (StoreE) { in checkBind()
66 if (const UnaryOperator *U = dyn_cast<UnaryOperator>(StoreE)) { in checkBind()
74 if (const BinaryOperator *B = dyn_cast<BinaryOperator>(StoreE)) { in checkBind()
88 if (const DeclStmt *DS = dyn_cast<DeclStmt>(StoreE)) { in checkBind()
97 if (I->getInit()->IgnoreImpCasts() == StoreE) { in checkBind()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h602 void evalBind(ExplodedNodeSet &Dst, const Stmt *StoreE, ExplodedNode *Pred,
644 void evalStore(ExplodedNodeSet &Dst, const Expr *AssignE, const Expr *StoreE,
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp2708 void ExprEngine::evalBind(ExplodedNodeSet &Dst, const Stmt *StoreE, in evalBind() argument
2713 PostStmt PS(StoreE, LC); in evalBind()
2720 StoreE, *this, *PP); in evalBind()
2727 const ProgramPoint L = PostStore(StoreE, LC, /*Loc*/nullptr, in evalBind()
2752 const ProgramPoint L = PostStore(StoreE, LC, LocReg, nullptr); in evalBind()
2772 const Expr *StoreE = AssignE ? AssignE : LocationE; in evalStore() local
2785 evalBind(Dst, StoreE, I, location, Val, false); in evalStore()