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.h491 computeOverflowForSignedAdd(const WithCache<const Value *> &LHS, in computeOverflowForSignedAdd() function
494 return llvm::computeOverflowForSignedAdd(LHS, RHS, in computeOverflowForSignedAdd()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DValueTracking.h642 LLVM_ABI OverflowResult computeOverflowForSignedAdd(
646 LLVM_ABI 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.cpp2664 if (computeOverflowForSignedAdd(InvariantOp, InvariantRHS, SQ) != in hoistSub()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineInternal.h316 return computeOverflowForSignedAdd(LHS, RHS, &CxtI) == in willNotOverflowSignedAdd()
H A DInstCombineCompares.cpp6471 return computeOverflowForSignedAdd(LHS, RHS, CxtI); in computeOverflow()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h2104 LLVM_ABI OverflowKind computeOverflowForSignedAdd(SDValue N0,
2114 return IsSigned ? computeOverflowForSignedAdd(N0, N1)
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DValueTracking.cpp7151 computeOverflowForSignedAdd(const WithCache<const Value *> &LHS, in computeOverflowForSignedAdd() function
7792 OverflowResult llvm::computeOverflowForSignedAdd(const AddOperator *Add, in computeOverflowForSignedAdd() function in llvm
7794 return ::computeOverflowForSignedAdd(Add->getOperand(0), Add->getOperand(1), in computeOverflowForSignedAdd()
7799 llvm::computeOverflowForSignedAdd(const WithCache<const Value *> &LHS, in computeOverflowForSignedAdd() function in llvm
7802 return ::computeOverflowForSignedAdd(LHS, RHS, nullptr, SQ); in computeOverflowForSignedAdd()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp4506 SelectionDAG::computeOverflowForSignedAdd(SDValue N0, SDValue N1) const { in computeOverflowForSignedAdd() function in SelectionDAG