Home
last modified time | relevance | path

Searched refs:evalBinOp (Results 1 – 22 of 22) sorted by relevance

/openbsd/src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
DDynamicExtent.cpp54 SVB.evalBinOp(State, BO_Div, Size, ElementSize, SVB.getArrayIndexType()); in getDynamicElementCount()
77 return SvalBuilder.evalBinOp(State, BinaryOperator::Opcode::BO_Sub, in getDynamicExtentWithOffset()
DExprEngineC.cpp100 SVal Result = evalBinOp(state, Op, LeftV, RightV, B->getType()); in VisitBinaryOperator()
158 SVal Result = svalBuilder.evalCast(evalBinOp(state, Op, V, RightV, CTy), in VisitBinaryOperator()
734 X = evalBinOp(N->getState(), BO_NE, in VisitLogicalExpr()
1049 Result = evalBinOp(state, BO_EQ, *LV, X, U->getType()); in VisitUnaryOperator()
1055 Result = evalBinOp(state, BO_EQ, V.castAs<NonLoc>(), X, U->getType()); in VisitUnaryOperator()
1130 Result = evalBinOp(state, Op, V2, RHS, U->getType()); in VisitIncrementDecrementOperator()
DCheckerContext.cpp138 SVal Eval = Bldr.evalBinOp(State, ComparisonOp, LHSVal, RHSVal, in evalComparison()
DSimpleSValBuilder.cpp1294 S, SVB.evalBinOp(State, S->getOpcode(), LHS, RHS, S->getType())); in simplifySValOnce()
1308 S, SVB.evalBinOp(State, S->getOpcode(), LHS, RHS, S->getType())); in simplifySValOnce()
1331 S, SVB.evalBinOp(State, S->getOpcode(), LHS, RHS, S->getType())); in simplifySValOnce()
DSValBuilder.cpp486 SVal SValBuilder::evalBinOp(ProgramStateRef state, BinaryOperator::Opcode op, in evalBinOp() function in SValBuilder
542 return evalBinOp(state, BO_EQ, lhs, rhs, getConditionType()); in evalEQ()
DExprEngineCallAndReturn.cpp815 svalBuilder.evalBinOp(State, BO_Mul, ElementCount, ElementSize, in bindReturnValue()
DExprEngine.cpp269 SVal Constraint_untested = evalBinOp(state, BO_GT, V, in getInitialState()
/openbsd/src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
DSTLAlgorithmModeling.cpp130 SVal GreaterOrEqual = SVB.evalBinOp(StateFound, BO_GE, in Find()
152 SVal Less = SVB.evalBinOp(StateFound, BO_LT, in Find()
DIterator.cpp251 Pos->setTo(SVB.evalBinOp(State, BinOp, in advancePosition()
309 SVB.evalBinOp(State, Opc, NL1, NL2, SVB.getConditionType()); in compare()
DContainerModeling.cpp437 SVB.evalBinOp(State, BO_Add, in handlePushBack()
466 SVB.evalBinOp(State, BO_Sub, in handlePopBack()
511 SVB.evalBinOp(State, BO_Sub, in handlePushFront()
548 SVB.evalBinOp(State, BO_Add, in handlePopFront()
673 SVB.evalBinOp(State, BO_Add, in handleEraseAfter()
DVLASizeChecker.cpp195 SVal LessThanZeroVal = SVB.evalBinOp(State, BO_LT, SizeD, Zero, SizeTy); in checkVLAIndexSize()
DCheckPlacementNew.cpp85 return SvalBuilder.evalBinOp( in getExtentSizeOfNewTarget()
DErrnoModeling.cpp299 SVB.evalBinOp(State, BO_NE, ErrnoSym, ZeroVal, SVB.getConditionType()) in setErrnoForStdFailure()
DCStringChecker.cpp1193 SVal NewStrLenGESize = svalBuilder.evalBinOp( in memsetAux()
1278 SVal lastElement = C.getSValBuilder().evalBinOp( in evalCopyCommon()
1741 svalBuilder.evalBinOp(state, BO_Sub, freeSpace, in evalStrcpyCommon()
1815 SVal retSize = svalBuilder.evalBinOp( in evalStrcpyCommon()
2151 svalBuilder.evalBinOp(state, op, resultVal, zeroVal, in evalStrcmpCommon()
DIteratorModeling.cpp799 SVB.evalBinOp(State, BO_EQ, nonloc::SymbolVal(Sym1), in relateSymbols()
DSmartPtrModeling.cpp498 auto RetVal = Bldr.evalBinOp(State, BOK, FirstPtrVal, SecondPtrVal, in handleComparisionOp()
DStdLibraryFunctionsChecker.cpp353 SizeV = SvalBuilder.evalBinOp(State, BO_Mul, SizeV, SizeMulV, in apply()
362 SVal Feasible = SvalBuilder.evalBinOp(State, Op, SizeV, BufDynSize, in apply()
964 if (auto CompV = SVB.evalBinOp(State, Op, V, OtherV, CondT) in apply()
DBasicObjCFoundationChecks.cpp930 SvalBuilder.evalBinOp(State, BO_GT, in assumeCollectionNonEmpty()
DStreamChecker.cpp899 auto Cond = SVB.evalBinOp(State, BO_GE, RetVal, in evalFtell()
DMallocChecker.cpp1207 SVal TotalSize = SB.evalBinOp(State, BO_Mul, BlocksVal, BlockBytesVal, in evalMulForBufferSize()
/openbsd/src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DExprEngine.h616 SVal evalBinOp(ProgramStateRef ST, BinaryOperator::Opcode Op, in evalBinOp() function
618 return svalBuilder.evalBinOp(ST, Op, LHS, RHS, T); in evalBinOp()
DSValBuilder.h125 SVal evalBinOp(ProgramStateRef state, BinaryOperator::Opcode op,