Searched refs:usub_ov (Results 1 – 12 of 12) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | KnownBits.cpp | 649 (void)LHS.getMinValue().usub_ov(RHS.getMaxValue(), Of); in computeForSatAddSub() 653 (void)LHS.getMaxValue().usub_ov(RHS.getMinValue(), Of); in computeForSatAddSub()
|
H A D | APFixedPoint.cpp | 226 : ThisVal.usub_ov(OtherVal, Overflowed); in sub()
|
H A D | APInt.cpp | 1918 APInt APInt::usub_ov(const APInt &RHS, bool &Overflow) const { in usub_ov() function in APInt 2027 APInt Res = usub_ov(RHS, Overflow); in usub_sat()
|
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | InterpBuiltin.cpp | 727 : LHS.usub_ov(RHS, Overflow); in interp__builtin_overflowop() 810 LHS.usub_ov(RHS, FirstOverflowed).usub_ov(CarryIn, SecondOverflowed); in interp__builtin_carryop()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | APInt.h | 993 APInt usub_ov(const APInt &RHS, bool &Overflow) const;
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | ConstantFolding.cpp | 2865 Res = C0->usub_ov(*C1, Overflow); in ConstantFoldIntrinsicCall2()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineCompares.cpp | 63 Result = In1.usub_ov(In2, Overflow); in subWithOverflow() 3070 Cmp.isSigned() ? C.ssub_ov(*C2, Overflow) : C.usub_ov(*C2, Overflow); in foldICmpAddConstant()
|
H A D | InstCombineCalls.cpp | 1112 IsSigned ? C1->ssub_ov(*C0, Overflow) : C1->usub_ov(*C0, Overflow); in moveAddAfterMinMax()
|
H A D | InstCombineAndOrXor.cpp | 3925 : C2->usub_ov(*C1, Overflow)) in visitOr()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ExprConstant.cpp | 13037 LHS.usub_ov(RHS, FirstOverflowed).usub_ov(CarryIn, SecondOverflowed); in VisitBuiltinCallExpr() 13129 : LHS.usub_ov(RHS, DidOverflow); in VisitBuiltinCallExpr()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGExprScalar.cpp | 79 : LHSAP.usub_ov(RHSAP, Overflow); in mayHaveIntegerOverflow()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64ISelLowering.cpp | 5376 IsSigned ? Y.ssub_ov(X, Overflow) : Y.usub_ov(X, Overflow); in optimizeIncrementingWhile()
|