Home
last modified time | relevance | path

Searched refs:CastE (Results 1 – 5 of 5) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngineC.cpp273 state = state->BindExpr(CastE, LCtx, V); in handleLValueBitCast()
277 Bldr.generateNode(CastE, Pred, state); in handleLValueBitCast()
293 evalLoad(Dst, CastE, CastE, subExprNode, state, state->getSVal(Ex, LCtx)); in VisitCast()
299 QualType T = CastE->getType(); in VisitCast()
310 switch (CastE->getCastKind()) { in VisitCast()
339 Bldr.generateNode(CastE, Pred, state); in VisitCast()
416 Bldr.generateNode(CastE, Pred, state); in VisitCast()
434 if (CastE->isGLValue()) in VisitCast()
475 if (CastE->isGLValue()) in VisitCast()
512 CastE->path(), *PTMSV, CastE->getCastKind())); in VisitCast()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCXXDeleteChecker.cpp191 const auto *CastE = dyn_cast<CastExpr>(S); in VisitNode() local
192 if (!CastE) in VisitNode()
196 QualType SourceType = CastE->getSubExpr()->getType()->getPointeeType(); in VisitNode()
197 QualType TargetType = CastE->getType()->getPointeeType(); in VisitNode()
203 const MemRegion *M = N->getSVal(CastE).getAsRegion(); in VisitNode()
H A DDynamicTypePropagation.cpp62 const ObjCObjectPointerType *getBetterObjCType(const Expr *CastE,
103 void checkPostStmt(const CastExpr *CastE, CheckerContext &C) const;
434 DynamicTypePropagation::getBetterObjCType(const Expr *CastE, in getBetterObjCType() argument
436 const MemRegion *ToR = C.getSVal(CastE).getAsRegion(); in getBetterObjCType()
441 CastE->getType()->getAs<ObjCObjectPointerType>(); in getBetterObjCType()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmtAsm.cpp52 if (auto *CastE = dyn_cast<CastExpr>(Child)) in removeLValueToRValueCast() local
53 if (CastE->getCastKind() == CK_LValueToRValue) { in removeLValueToRValueCast()
54 ExprUnderCast = CastE->getSubExpr(); in removeLValueToRValueCast()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h483 void VisitCast(const CastExpr *CastE, const Expr *Ex, ExplodedNode *Pred,
601 QualType ExTy, const CastExpr *CastE,