Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/InstCombine/
H A DInstCombiner.h522 computeOverflowForSignedAdd(const WithCache<const Value *> &LHS, in computeOverflowForSignedAdd() function
525 return llvm::computeOverflowForSignedAdd(LHS, RHS, in computeOverflowForSignedAdd()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DValueTracking.h841 OverflowResult computeOverflowForSignedAdd(const WithCache<const Value *> &LHS,
845 OverflowResult computeOverflowForSignedAdd(const AddOperator *Add,
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DNaryReassociate.cpp377 computeOverflowForSignedAdd(AO, SQ) != OverflowResult::NeverOverflows) in tryReassociateGEPAtIndex()
H A DLICM.cpp2609 if (computeOverflowForSignedAdd(InvariantOp, InvariantRHS, SQ) != in hoistSub()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineInternal.h310 return computeOverflowForSignedAdd(LHS, RHS, &CxtI) == in willNotOverflowSignedAdd()
H A DInstCombineCompares.cpp5737 return computeOverflowForSignedAdd(LHS, RHS, CxtI); in computeOverflow()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h1987 OverflowKind computeOverflowForSignedAdd(SDValue N0, SDValue N1) const;
1995 return IsSigned ? computeOverflowForSignedAdd(N0, N1)
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DValueTracking.cpp6359 computeOverflowForSignedAdd(const WithCache<const Value *> &LHS, in computeOverflowForSignedAdd() function
6995 OverflowResult llvm::computeOverflowForSignedAdd(const AddOperator *Add, in computeOverflowForSignedAdd() function in llvm
6997 return ::computeOverflowForSignedAdd(Add->getOperand(0), Add->getOperand(1), in computeOverflowForSignedAdd()
7002 llvm::computeOverflowForSignedAdd(const WithCache<const Value *> &LHS, in computeOverflowForSignedAdd() function in llvm
7005 return ::computeOverflowForSignedAdd(LHS, RHS, nullptr, SQ); in computeOverflowForSignedAdd()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp4059 SelectionDAG::computeOverflowForSignedAdd(SDValue N0, SDValue N1) const { in computeOverflowForSignedAdd() function in SelectionDAG