Home
last modified time | relevance | path

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

/src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DUndefinedAssignmentChecker.cpp35 const Stmt *StoreE, in checkBind() argument
58 while (StoreE) { in checkBind()
59 if (const UnaryOperator *U = dyn_cast<UnaryOperator>(StoreE)) { in checkBind()
67 if (const BinaryOperator *B = dyn_cast<BinaryOperator>(StoreE)) { in checkBind()
81 if (const DeclStmt *DS = dyn_cast<DeclStmt>(StoreE)) { in checkBind()
90 if (I->getInit()->IgnoreImpCasts() == StoreE) { in checkBind()
/src/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h648 void evalBind(ExplodedNodeSet &Dst, const Stmt *StoreE, ExplodedNode *Pred,
681 void evalStore(ExplodedNodeSet &Dst, const Expr *AssignE, const Expr *StoreE,
/src/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp3581 void ExprEngine::evalBind(ExplodedNodeSet &Dst, const Stmt *StoreE, in evalBind() argument
3586 PostStmt PS(StoreE, LC); in evalBind()
3593 StoreE, *this, *PP); in evalBind()
3600 const ProgramPoint L = PostStore(StoreE, LC, /*Loc*/nullptr, in evalBind()
3625 const ProgramPoint L = PostStore(StoreE, LC, LocReg, nullptr); in evalBind()
3645 const Expr *StoreE = AssignE ? AssignE : LocationE; in evalStore() local
3658 evalBind(Dst, StoreE, I, location, Val, false); in evalStore()