Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/InstCombine/
H A DInstCombiner.h485 computeOverflowForSignedAdd(const WithCache<const Value *> &LHS, in computeOverflowForSignedAdd() function
488 return llvm::computeOverflowForSignedAdd(LHS, RHS, in computeOverflowForSignedAdd()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DValueTracking.h917 OverflowResult computeOverflowForSignedAdd(const WithCache<const Value *> &LHS,
921 OverflowResult computeOverflowForSignedAdd(const AddOperator *Add,
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DNaryReassociate.cpp377 computeOverflowForSignedAdd(AO, SQ) != OverflowResult::NeverOverflows) in tryReassociateGEPAtIndex()
H A DLICM.cpp2624 if (computeOverflowForSignedAdd(InvariantOp, InvariantRHS, SQ) != in hoistSub()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineInternal.h315 return computeOverflowForSignedAdd(LHS, RHS, &CxtI) == in willNotOverflowSignedAdd()
H A DInstCombineCompares.cpp6066 return computeOverflowForSignedAdd(LHS, RHS, CxtI); in computeOverflow()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h1968 OverflowKind computeOverflowForSignedAdd(SDValue N0, SDValue N1) const;
1976 return IsSigned ? computeOverflowForSignedAdd(N0, N1)
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DValueTracking.cpp7036 computeOverflowForSignedAdd(const WithCache<const Value *> &LHS, in computeOverflowForSignedAdd() function
7679 OverflowResult llvm::computeOverflowForSignedAdd(const AddOperator *Add, in computeOverflowForSignedAdd() function in llvm
7681 return ::computeOverflowForSignedAdd(Add->getOperand(0), Add->getOperand(1), in computeOverflowForSignedAdd()
7686 llvm::computeOverflowForSignedAdd(const WithCache<const Value *> &LHS, in computeOverflowForSignedAdd() function in llvm
7689 return ::computeOverflowForSignedAdd(LHS, RHS, nullptr, SQ); in computeOverflowForSignedAdd()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp4235 SelectionDAG::computeOverflowForSignedAdd(SDValue N0, SDValue N1) const { in computeOverflowForSignedAdd() function in SelectionDAG