Home
last modified time | relevance | path

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

/freebsd/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()
66 if (const BinaryOperator *B = dyn_cast<BinaryOperator>(StoreE)) { in checkBind()
80 if (const DeclStmt *DS = dyn_cast<DeclStmt>(StoreE)) { in checkBind()
89 if (I->getInit()->IgnoreImpCasts() == StoreE) { in checkBind()
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h661 void evalBind(ExplodedNodeSet &Dst, const Stmt *StoreE, ExplodedNode *Pred,
694 void evalStore(ExplodedNodeSet &Dst, const Expr *AssignE, const Expr *StoreE,
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp3706 void ExprEngine::evalBind(ExplodedNodeSet &Dst, const Stmt *StoreE, in evalBind() argument
3711 PostStmt PS(StoreE, LC); in evalBind()
3718 StoreE, *this, *PP); in evalBind()
3725 const ProgramPoint L = PostStore(StoreE, LC, /*Loc*/nullptr, in evalBind()
3750 const ProgramPoint L = PostStore(StoreE, LC, LocReg, nullptr); in evalBind()
3770 const Expr *StoreE = AssignE ? AssignE : LocationE; in evalStore() local
3783 evalBind(Dst, StoreE, I, location, Val, false); in evalStore()