Home
last modified time | relevance | path

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

/freebsd-14.2/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()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h656 void evalBind(ExplodedNodeSet &Dst, const Stmt *StoreE, ExplodedNode *Pred,
689 void evalStore(ExplodedNodeSet &Dst, const Expr *AssignE, const Expr *StoreE,
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp3569 void ExprEngine::evalBind(ExplodedNodeSet &Dst, const Stmt *StoreE, in evalBind() argument
3574 PostStmt PS(StoreE, LC); in evalBind()
3581 StoreE, *this, *PP); in evalBind()
3588 const ProgramPoint L = PostStore(StoreE, LC, /*Loc*/nullptr, in evalBind()
3613 const ProgramPoint L = PostStore(StoreE, LC, LocReg, nullptr); in evalBind()
3633 const Expr *StoreE = AssignE ? AssignE : LocationE; in evalStore() local
3646 evalBind(Dst, StoreE, I, location, Val, false); in evalStore()