Home
last modified time | relevance | path

Searched refs:bindLoc (Results 1 – 9 of 9) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCXXSelfAssignmentChecker.cpp54 ProgramStateRef SelfAssignState = State->bindLoc(Param, ThisVal, LCtx); in checkBeginFunction()
64 ProgramStateRef NonSelfAssignState = State->bindLoc(Param, ParamVal, LCtx); in checkBeginFunction()
H A DErrnoModeling.cpp228 State = State->bindLoc(loc::MemRegionVal{ErrnoR}, Value, LCtx); in setErrnoValue()
237 State = State->bindLoc( in setErrnoValue()
H A DCStringChecker.cpp2316 State->bindLoc(*SearchStrLoc, in evalStrsep()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramState.h284 [[nodiscard]] ProgramStateRef bindLoc(Loc location, SVal V,
288 [[nodiscard]] ProgramStateRef bindLoc(SVal location, SVal V,
749 inline ProgramStateRef ProgramState::bindLoc(SVal LV, SVal V, const LocationContext *LCtx) const { in bindLoc() function
751 return bindLoc(*L, V, LCtx); in bindLoc()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngineObjC.cpp76 nextState = nextState->bindLoc(elementV, V, LCtx); in populateObjCForDestinationSet()
H A DExprEngineCXX.cpp1161 state = state->bindLoc(state->getLValue(VD, LCtx), V, LCtx); in VisitCXXCatchStmt()
1238 State = State->bindLoc(FieldLoc, InitVal, LocCtxt); in VisitLambdaExpr()
H A DExprEngine.cpp441 State = State->bindLoc(BaseReg.castAs<Loc>(), InitVal, LC, false); in createTemporaryRegionIfNeeded()
453 State->bindLoc(Reg.castAs<Loc>(), InitValWithAdjustments, LC, false); in createTemporaryRegionIfNeeded()
455 State = State->bindLoc(BaseReg.castAs<Loc>(), InitVal, LC, false); in createTemporaryRegionIfNeeded()
3506 (State->bindLoc(loc::MemRegionVal(MR), LocAndVal.second, LCtx))) in processPointerEscapedOnBind()
3604 state = state->bindLoc(location.castAs<Loc>(), in evalBind()
3791 state = state->bindLoc(*LV, UnknownVal(), Pred->getLocationContext()); in VisitGCCAsmStmt()
H A DExprEngineC.cpp239 State = State->bindLoc(loc::MemRegionVal(capturedR), originalV, LCtx); in VisitBlockExpr()
554 State = State->bindLoc(CLLoc, V, LCtx); in VisitCompoundLiteralExpr()
H A DProgramState.cpp114 ProgramStateRef ProgramState::bindLoc(Loc LV, in bindLoc() function in ProgramState